
gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerateSchemaDocument Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: generate-schema
* Namespace: http://csrc.nist.gov/ns/metaschema/test-suite/1.0
* Java type: gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerateSchemaDocument
*
* Automatically generated - do not modify.
*/
package gov.nist.secauto.metaschema.model.testing.xmlbeans;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* A document containing one generate-schema(@http://csrc.nist.gov/ns/metaschema/test-suite/1.0) element.
*
* This is a complex type.
*/
public interface GenerateSchemaDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.xmlbeans.metadata.system.metaschema.testing.TypeSystemHolder.typeSystem, "generateschema3178doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "generate-schema" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerateSchemaDocument.GenerateSchema getGenerateSchema();
/**
* Sets the "generate-schema" element
*/
void setGenerateSchema(gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerateSchemaDocument.GenerateSchema generateSchema);
/**
* Appends and returns a new empty "generate-schema" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerateSchemaDocument.GenerateSchema addNewGenerateSchema();
/**
* An XML generate-schema(@http://csrc.nist.gov/ns/metaschema/test-suite/1.0).
*
* This is a complex type.
*/
public interface GenerateSchema extends org.apache.xmlbeans.XmlObject {
ElementFactory Factory = new ElementFactory<>(org.apache.xmlbeans.metadata.system.metaschema.testing.TypeSystemHolder.typeSystem, "generateschema705delemtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "metaschema" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.MetaschemaDocument.Metaschema getMetaschema();
/**
* Sets the "metaschema" element
*/
void setMetaschema(gov.nist.secauto.metaschema.model.testing.xmlbeans.MetaschemaDocument.Metaschema metaschema);
/**
* Appends and returns a new empty "metaschema" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.MetaschemaDocument.Metaschema addNewMetaschema();
/**
* Gets a List of "generation-case" elements
*/
java.util.List getGenerationCaseList();
/**
* Gets array of all "generation-case" elements
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerationCaseType[] getGenerationCaseArray();
/**
* Gets ith "generation-case" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerationCaseType getGenerationCaseArray(int i);
/**
* Returns number of "generation-case" element
*/
int sizeOfGenerationCaseArray();
/**
* Sets array of all "generation-case" element
*/
void setGenerationCaseArray(gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerationCaseType[] generationCaseArray);
/**
* Sets ith "generation-case" element
*/
void setGenerationCaseArray(int i, gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerationCaseType generationCase);
/**
* Inserts and returns a new empty value (as xml) as the ith "generation-case" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerationCaseType insertNewGenerationCase(int i);
/**
* Appends and returns a new empty value (as xml) as the last "generation-case" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.GenerationCaseType addNewGenerationCase();
/**
* Removes the ith "generation-case" element
*/
void removeGenerationCase(int i);
/**
* Gets the "generation-result" attribute
*/
java.lang.Boolean getGenerationResult();
/**
* True if has "generation-result" attribute
*/
boolean isSetGenerationResult();
/**
* Sets the "generation-result" attribute
*/
void setGenerationResult(java.lang.Boolean generationResult);
/**
* Unsets the "generation-result" attribute
*/
void unsetGenerationResult();
/**
* Gets the "validation-result" attribute
*/
java.lang.Boolean getValidationResult();
/**
* True if has "validation-result" attribute
*/
boolean isSetValidationResult();
/**
* Sets the "validation-result" attribute
*/
void setValidationResult(java.lang.Boolean validationResult);
/**
* Unsets the "validation-result" attribute
*/
void unsetValidationResult();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy