
gov.nist.secauto.metaschema.model.testing.xmlbeans.TestCollectionDocument Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: test-collection
* Namespace: http://csrc.nist.gov/ns/metaschema/test-suite/1.0
* Java type: gov.nist.secauto.metaschema.model.testing.xmlbeans.TestCollectionDocument
*
* 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 test-collection(@http://csrc.nist.gov/ns/metaschema/test-suite/1.0) element.
*
* This is a complex type.
*/
public interface TestCollectionDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.xmlbeans.metadata.system.metaschema.testing.TypeSystemHolder.typeSystem, "testcollection7b38doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "test-collection" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.TestCollectionDocument.TestCollection getTestCollection();
/**
* Sets the "test-collection" element
*/
void setTestCollection(gov.nist.secauto.metaschema.model.testing.xmlbeans.TestCollectionDocument.TestCollection testCollection);
/**
* Appends and returns a new empty "test-collection" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.TestCollectionDocument.TestCollection addNewTestCollection();
/**
* An XML test-collection(@http://csrc.nist.gov/ns/metaschema/test-suite/1.0).
*
* This is a complex type.
*/
public interface TestCollection extends org.apache.xmlbeans.XmlObject {
ElementFactory Factory = new ElementFactory<>(org.apache.xmlbeans.metadata.system.metaschema.testing.TypeSystemHolder.typeSystem, "testcollection13ddelemtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "test-scenario" elements
*/
java.util.List getTestScenarioList();
/**
* Gets array of all "test-scenario" elements
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.TestScenarioDocument.TestScenario[] getTestScenarioArray();
/**
* Gets ith "test-scenario" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.TestScenarioDocument.TestScenario getTestScenarioArray(int i);
/**
* Returns number of "test-scenario" element
*/
int sizeOfTestScenarioArray();
/**
* Sets array of all "test-scenario" element
*/
void setTestScenarioArray(gov.nist.secauto.metaschema.model.testing.xmlbeans.TestScenarioDocument.TestScenario[] testScenarioArray);
/**
* Sets ith "test-scenario" element
*/
void setTestScenarioArray(int i, gov.nist.secauto.metaschema.model.testing.xmlbeans.TestScenarioDocument.TestScenario testScenario);
/**
* Inserts and returns a new empty value (as xml) as the ith "test-scenario" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.TestScenarioDocument.TestScenario insertNewTestScenario(int i);
/**
* Appends and returns a new empty value (as xml) as the last "test-scenario" element
*/
gov.nist.secauto.metaschema.model.testing.xmlbeans.TestScenarioDocument.TestScenario addNewTestScenario();
/**
* Removes the ith "test-scenario" element
*/
void removeTestScenario(int i);
/**
* Gets the "location" attribute
*/
java.lang.String getLocation();
/**
* Sets the "location" attribute
*/
void setLocation(java.lang.String location);
/**
* Gets the "name" attribute
*/
java.lang.String getName();
/**
* Sets the "name" attribute
*/
void setName(java.lang.String name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy