org.jomc.model.test
Class TestSuite

Package class diagram package TestSuite
java.lang.Object
  extended by org.jomc.model.test.TestSuite
All Implemented Interfaces:
Cloneable

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
public class TestSuite
extends Object
implements Cloneable

List of tests.

Java class for TestSuite complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="TestSuite">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="schema-constraints-test" type="{http://jomc.org/model/test}SchemaConstraintsTestType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="modules-constraints-test" type="{http://jomc.org/model/test}ModulesConstraintsTestType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="implementation-test" type="{http://jomc.org/model/test}ImplementationTestType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="instance-test" type="{http://jomc.org/model/test}InstanceTestType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  List<ImplementationTestType> implementationTest
           
protected  List<InstanceTestType> instanceTest
           
protected  List<ModulesConstraintsTestType> modulesConstraintsTest
           
protected  List<SchemaConstraintsTestType> schemaConstraintsTest
           
 
Constructor Summary
TestSuite()
          Creates a new TestSuite instance.
TestSuite(TestSuite o)
          Creates a new TestSuite instance by deeply copying a given TestSuite instance.
 
Method Summary
 TestSuite clone()
          Creates and returns a deep copy of this object.
 List<ImplementationTestType> getImplementationTest()
          Gets the value of the implementationTest property.
 List<InstanceTestType> getInstanceTest()
          Gets the value of the instanceTest property.
 List<ModulesConstraintsTestType> getModulesConstraintsTest()
          Gets the value of the modulesConstraintsTest property.
 List<SchemaConstraintsTestType> getSchemaConstraintsTest()
          Gets the value of the schemaConstraintsTest property.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

schemaConstraintsTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
protected List<SchemaConstraintsTestType> schemaConstraintsTest

modulesConstraintsTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
protected List<ModulesConstraintsTestType> modulesConstraintsTest

implementationTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
protected List<ImplementationTestType> implementationTest

instanceTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
protected List<InstanceTestType> instanceTest
Constructor Detail

TestSuite

public TestSuite()
Creates a new TestSuite instance.


TestSuite

public TestSuite(TestSuite o)
Creates a new TestSuite instance by deeply copying a given TestSuite instance.

Parameters:
o - The instance to copy.
Throws:
NullPointerException - if o is null.
Method Detail

getSchemaConstraintsTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
public List<SchemaConstraintsTestType> getSchemaConstraintsTest()
Gets the value of the schemaConstraintsTest property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the schemaConstraintsTest property.

For example, to add a new item, do as follows:

    getSchemaConstraintsTest().add(newItem);
 

Objects of the following type(s) are allowed in the list SchemaConstraintsTestType


getModulesConstraintsTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
public List<ModulesConstraintsTestType> getModulesConstraintsTest()
Gets the value of the modulesConstraintsTest property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the modulesConstraintsTest property.

For example, to add a new item, do as follows:

    getModulesConstraintsTest().add(newItem);
 

Objects of the following type(s) are allowed in the list ModulesConstraintsTestType


getImplementationTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
public List<ImplementationTestType> getImplementationTest()
Gets the value of the implementationTest property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the implementationTest property.

For example, to add a new item, do as follows:

    getImplementationTest().add(newItem);
 

Objects of the following type(s) are allowed in the list ImplementationTestType


getInstanceTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
public List<InstanceTestType> getInstanceTest()
Gets the value of the instanceTest property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the instanceTest property.

For example, to add a new item, do as follows:

    getInstanceTest().add(newItem);
 

Objects of the following type(s) are allowed in the list InstanceTestType


clone

@Generated(value="com.sun.tools.xjc.Driver",
           date="2012-03-14T10:22:33+01:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-2")
public TestSuite clone()
Creates and returns a deep copy of this object.

Overrides:
clone in class Object
Returns:
A deep copy of this object.


Copyright © 2005-2012 The JOMC Project. All Rights Reserved.Get JOMC at SourceForge.net. Fast, secure and Free Open Source software downloads
Please note that this documentation is maintained by non-native english speaking authors. As such, you may encounter phrases or wordings which seem imprecise or may even have a totally different meaning to native english speaking readers than what the individual author was trying to express. If you are a native english speaking reader and find any such phrases or wordings we kindly ask you to send an email to the corresponding author and help us improve this documentation in order to avoid misunderstandings. You will find the authors' email addresses at the top of each class. Please accept our apologies for any inconvenience caused.