few more warnings, added package-infos

Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
diff --git a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeArrayInfo.java b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeArrayInfo.java
index 147bd1e..b227bf5 100644
--- a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeArrayInfo.java
+++ b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeArrayInfo.java
@@ -28,9 +28,6 @@
     @Override
     Class getType();
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     RuntimeNonElement getItemType();
 }
diff --git a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeElementInfo.java b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeElementInfo.java
index 55735cb..fbbb0fd 100644
--- a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeElementInfo.java
+++ b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeElementInfo.java
@@ -31,9 +31,6 @@
     @Override
     Class<? extends JAXBElement> getType();
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     RuntimeNonElement getContentType();
 }
diff --git a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeElementPropertyInfo.java b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeElementPropertyInfo.java
index 3c9b30f..9a282ff 100644
--- a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeElementPropertyInfo.java
+++ b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeElementPropertyInfo.java
@@ -20,7 +20,6 @@
  * @author Kohsuke Kawaguchi
  */
 public interface RuntimeElementPropertyInfo extends ElementPropertyInfo<Type,Class>, RuntimePropertyInfo {
-    /** {@inheritDoc} */
     @Override
     Collection<? extends RuntimeTypeInfo> ref();
 
diff --git a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeLeafInfo.java b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeLeafInfo.java
index d1d9b25..5290c78 100644
--- a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeLeafInfo.java
+++ b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimeLeafInfo.java
@@ -21,7 +21,7 @@
  */
 public interface RuntimeLeafInfo extends LeafInfo<Type,Class>, RuntimeNonElement {
     /**
-     * {@inheritDoc}
+     *
      *
      * @return
      *      always non-null.
diff --git a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimePropertyInfo.java b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimePropertyInfo.java
index 8b0731a..875fbca 100644
--- a/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimePropertyInfo.java
+++ b/jaxb-ri/runtime/impl/src/main/java/org/glassfish/jaxb/runtime/v2/model/runtime/RuntimePropertyInfo.java
@@ -24,7 +24,6 @@
  */
 public interface RuntimePropertyInfo extends PropertyInfo<Type,Class> {
 
-    /** {@inheritDoc} */
     @Override
     Collection<? extends RuntimeTypeInfo> ref();
 
diff --git a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/BadCommandLineException.java b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/BadCommandLineException.java
index 8de6ba2..efe83ed 100644
--- a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/BadCommandLineException.java
+++ b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/BadCommandLineException.java
@@ -17,6 +17,8 @@
  */
 public class BadCommandLineException extends Exception {
 
+    private static final long serialVersionUID = -689101368298669934L;
+
     public BadCommandLineException(String msg) {
         super(msg);
     }
diff --git a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/TxwOptions.java b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/TxwOptions.java
index ea74a1a..c6594e0 100644
--- a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/TxwOptions.java
+++ b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/TxwOptions.java
@@ -84,6 +84,11 @@
         COMPACT
     }
 
+    /**
+     * Default constructor.
+     */
+    public TxwOptions() {}
+
     void parseArguments(String[] args) throws BadCommandLineException {
         String src = null;
         for (int i = 0; i < args.length; i++) {
diff --git a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/relaxng/package-info.java b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/relaxng/package-info.java
new file mode 100644
index 0000000..d223710
--- /dev/null
+++ b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/relaxng/package-info.java
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2005, 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * Reads RELAX NG grammar from RNGOM and builds the model for TXW.
+ */
+package com.sun.tools.txw2.builder.relaxng;
\ No newline at end of file
diff --git a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/relaxng/package.html b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/relaxng/package.html
deleted file mode 100644
index d31e89b..0000000
--- a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/relaxng/package.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html><body>
-<!--
-
-    Copyright (c) 2005, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-  Reads RELAX NG grammar from RNGOM and builds the model for TXW.
-</body></html>
diff --git a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/xsd/package-info.java b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/xsd/package-info.java
new file mode 100644
index 0000000..a204d13
--- /dev/null
+++ b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/xsd/package-info.java
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2005, 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * Reads XML Schema grammar from XSOM and builds the model for TXW.
+ */
+package com.sun.tools.txw2.builder.xsd;
\ No newline at end of file
diff --git a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/xsd/package.html b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/xsd/package.html
deleted file mode 100644
index 8cf46fa..0000000
--- a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/builder/xsd/package.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html><body>
-<!--
-
-    Copyright (c) 2005, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-  Reads XML Schema grammar from XSOM and builds the model for TXW.
-</body></html>
diff --git a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/model/NodeSet.java b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/model/NodeSet.java
index c22da1c..a43d956 100644
--- a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/model/NodeSet.java
+++ b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/model/NodeSet.java
@@ -32,6 +32,7 @@
  */
 public class NodeSet extends LinkedHashSet<WriterNode> {
 
+    private static final long serialVersionUID = 4733209772279560500L;
     /*package*/ final TxwOptions opts;
     /*package*/ final JCodeModel codeModel;
 
diff --git a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/model/prop/Prop.java b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/model/prop/Prop.java
index dfbf56b..38e8b82 100644
--- a/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/model/prop/Prop.java
+++ b/jaxb-ri/txw/compiler/src/main/java/com/sun/tools/txw2/model/prop/Prop.java
@@ -22,4 +22,9 @@
  * @author Kohsuke Kawaguchi
  */
 public abstract class Prop {
+    /**
+     * Default constructor.
+     */
+    protected Prop() {
+    }
 }
diff --git a/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/annotation/package-info.java b/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/annotation/package-info.java
new file mode 100644
index 0000000..25dce21
--- /dev/null
+++ b/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/annotation/package-info.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * Defines a set of annotations that can be used on TypedXmlWriter interfaces.
+ * <h2>Package-level Annotation</h2>
+ * <p>
+ * {@link com.sun.xml.txw2.annotation.XmlNamespace} can be used on a package to designate the namespace URI for the
+ * whole package.
+ * <h2>Interface Annotation</h2>
+ * <p>
+ * {@link com.sun.xml.txw2.annotation.XmlElement} can be used on TypedXmlWriter-derived interfaces to associate
+ * a tag name to that interface.
+ * <h2>Method Annotations</h2>
+ * <p>
+ * {@link com.sun.xml.txw2.annotation.XmlElement}, {@link com.sun.xml.txw2.annotation.XmlAttribute}, or {@link com.sun.xml.txw2.annotation.XmlValue} can be used on a method
+ * declared on a TypedXmLWriter-derived interface. Those annotations are mutually-exclusive.
+ * See their javadoc for details. If none of the above three annotations are specified,
+ * {@link com.sun.xml.txw2.annotation.XmlElement} is assumed.
+ */
+package com.sun.xml.txw2.annotation;
\ No newline at end of file
diff --git a/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/annotation/package.html b/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/annotation/package.html
deleted file mode 100644
index 13e7f72..0000000
--- a/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/annotation/package.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<html>
-<!--
-
-    Copyright (c) 2005, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-<body>
-  <p>
-    Defines a set of annotations that can be used on TypedXmlWriter interfaces.
-
-  <h2>Package-level Annotation</h2>
-  <p>
-    {@link XmlNamespace} can be used on a package to designate the namespace URI for the
-    whole package.
-
-  <h2>Interface Annotation</h2>
-  <p>
-    {@link XmlElement} can be used on TypedXmlWriter-derived interfaces to associate
-    a tag name to that interface.
-
-  <h2>Method Annotations</h2>
-  <p>
-    {@link XmlElement}, {@link XmlAttribute}, or {@link XmlValue} can be used on a method
-    declared on a TypedXmLWriter-derived interface. Those annotations are mutually-exclusive.
-    See their javadoc for details. If none of the above three annotations are specified,
-    {@link XmlElement} is assumed.
-
-</body>
-</html>
diff --git a/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/output/package-info.java b/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/output/package-info.java
new file mode 100644
index 0000000..9a43211
--- /dev/null
+++ b/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/output/package-info.java
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * Defines XmlSerializer and its built-in implementations.
+ */
+package com.sun.xml.txw2.output;
\ No newline at end of file
diff --git a/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/output/package.html b/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/output/package.html
deleted file mode 100644
index a5b336c..0000000
--- a/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/output/package.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-<!--
-
-    Copyright (c) 2005, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-<body>
-  <p>
-    Defines XmlSerializer and its built-in implementations.
-
-</body>
-</html>
diff --git a/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/package-info.java b/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/package-info.java
new file mode 100644
index 0000000..a07a709
--- /dev/null
+++ b/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/package-info.java
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * TXW runtime.
+ */
+package com.sun.xml.txw2;
\ No newline at end of file
diff --git a/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/package.html b/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/package.html
deleted file mode 100644
index cc8a282..0000000
--- a/jaxb-ri/txw/runtime/src/main/java/com/sun/xml/txw2/package.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-<!--
-
-    Copyright (c) 2005, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-<body>
-  <p>
-    TXW runtime.
-
-</body>
-</html>
diff --git a/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/ModelLoader.java b/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/ModelLoader.java
index 1fe9851..a957c06 100644
--- a/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/ModelLoader.java
+++ b/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/ModelLoader.java
@@ -345,6 +345,9 @@
                 }
             }
 
+            if (wsdlDom == null) {
+                throw new SAXException("Cannot find schema for: " + grammar.getSystemId());
+            }
             NodeList schemas = wsdlDom.getElementsByTagNameNS(XMLConstants.W3C_XML_SCHEMA_NS_URI,"schema");
             for( int i=0; i<schemas.getLength(); i++ )
                 scanner.scan( (Element)schemas.item(i), xsomParser.getParserHandler() );
diff --git a/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/generator/bean/field/AbstractField.java b/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/generator/bean/field/AbstractField.java
index 294f491..702e604 100644
--- a/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/generator/bean/field/AbstractField.java
+++ b/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/generator/bean/field/AbstractField.java
@@ -416,8 +416,8 @@
         if(prop.getAdapter()!=null)
             return prop.getAdapter().customType.toType(outline.parent(),aspect);
 
+        @SuppressWarnings("serial")
         final class TypeList extends ArrayList<JType> {
-            private static final long serialVersionUID = -2528889889198580251L;
 
             void add(CTypeInfo t ) {
                 add( t.getType().toType(outline.parent(),aspect) );
diff --git a/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/impl/package-info.java b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/impl/package-info.java
new file mode 100644
index 0000000..66d9d1d
--- /dev/null
+++ b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/impl/package-info.java
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * Implementation of the <code>com.sun.xml.xsom</code> package.
+ */
+package com.sun.xml.xsom.impl;
\ No newline at end of file
diff --git a/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/impl/parser/package-info.java b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/impl/parser/package-info.java
new file mode 100644
index 0000000..776faf0
--- /dev/null
+++ b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/impl/parser/package-info.java
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * Parser that reads XML Schema documents and builds an <code>XSSchemaSet</code> object.
+ */
+package com.sun.xml.xsom.impl.parser;
\ No newline at end of file
diff --git a/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/package-info.java b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/package-info.java
new file mode 100644
index 0000000..cdb23e4
--- /dev/null
+++ b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/package-info.java
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * Interfaces that the client should use to access schema information.
+ */
+package com.sun.xml.xsom;
\ No newline at end of file
diff --git a/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/parser/package-info.java b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/parser/package-info.java
new file mode 100644
index 0000000..4c4de83
--- /dev/null
+++ b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/parser/package-info.java
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * Classes to parse XML Schema documents into objects of <code>com.sun.xml.xsom</code> package.
+ */
+package com.sun.xml.xsom.parser;
\ No newline at end of file
diff --git a/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/visitor/package-info.java b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/visitor/package-info.java
new file mode 100644
index 0000000..3cf9c41
--- /dev/null
+++ b/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/visitor/package-info.java
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Distribution License v. 1.0, which is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * Visitor pattern support for the <code>com.sun.xml.xsom</code> interfaces.
+ */
+package com.sun.xml.xsom.visitor;
\ No newline at end of file
diff --git a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/impl/package.html b/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/impl/package.html
deleted file mode 100644
index 183c9c1..0000000
--- a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/impl/package.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html><body>
-<!--
-
-    Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-Implementation of the <code>com.sun.xml.xsom</code> package.
-</body></html>
diff --git a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/impl/parser/package.html b/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/impl/parser/package.html
deleted file mode 100644
index b7e019e..0000000
--- a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/impl/parser/package.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html><body>
-<!--
-
-    Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-Parser that reads XML Schema documents and builds an <code>XSSchemaSet</code> object.
-</body></html>
diff --git a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/package.html b/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/package.html
deleted file mode 100644
index 5d1544e..0000000
--- a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/package.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html><body>
-<!--
-
-    Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-Interfaces that the client should use to access schema information.
-</body></html>
diff --git a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/parser/package.html b/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/parser/package.html
deleted file mode 100644
index dda0613..0000000
--- a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/parser/package.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html><body>
-<!--
-
-    Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-Classes to parse XML Schema documents into objects of <code>com.sun.xml.xsom</code> package.
-</body></html>
diff --git a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/visitor/package.html b/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/visitor/package.html
deleted file mode 100644
index 60ef17c..0000000
--- a/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/visitor/package.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html><body>
-<!--
-
-    Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
-
-    This program and the accompanying materials are made available under the
-    terms of the Eclipse Distribution License v. 1.0, which is available at
-    http://www.eclipse.org/org/documents/edl-v10.php.
-
-    SPDX-License-Identifier: BSD-3-Clause
-
--->
-
-Visitor pattern support for the <code>com.sun.xml.xsom</code> interfaces.
-</body></html>