View Javadoc
1   /*
2    * An XML document type.
3    * Localname: metaschema-bindings
4    * Namespace: https://csrc.nist.gov/ns/metaschema-binding/1.0
5    * Java type: gov.nist.secauto.metaschema.databind.codegen.xmlbeans.MetaschemaBindingsDocument
6    *
7    * Automatically generated - do not modify.
8    */
9   package gov.nist.secauto.metaschema.databind.codegen.xmlbeans;
10  
11  import org.apache.xmlbeans.impl.schema.ElementFactory;
12  import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
13  import org.apache.xmlbeans.impl.schema.DocumentFactory;
14  import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
15  
16  
17  /**
18   * A document containing one metaschema-bindings(@https://csrc.nist.gov/ns/metaschema-binding/1.0) element.
19   *
20   * This is a complex type.
21   */
22  public interface MetaschemaBindingsDocument extends org.apache.xmlbeans.XmlObject {
23      DocumentFactory<gov.nist.secauto.metaschema.databind.codegen.xmlbeans.MetaschemaBindingsDocument> Factory = new DocumentFactory<>(org.apache.xmlbeans.metadata.system.metaschema.codegen.TypeSystemHolder.typeSystem, "metaschemabindingsdbf3doctype");
24      org.apache.xmlbeans.SchemaType type = Factory.getType();
25  
26  
27      /**
28       * Gets the "metaschema-bindings" element
29       */
30      gov.nist.secauto.metaschema.databind.codegen.xmlbeans.MetaschemaBindingsType getMetaschemaBindings();
31  
32      /**
33       * Sets the "metaschema-bindings" element
34       */
35      void setMetaschemaBindings(gov.nist.secauto.metaschema.databind.codegen.xmlbeans.MetaschemaBindingsType metaschemaBindings);
36  
37      /**
38       * Appends and returns a new empty "metaschema-bindings" element
39       */
40      gov.nist.secauto.metaschema.databind.codegen.xmlbeans.MetaschemaBindingsType addNewMetaschemaBindings();
41  }