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="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
public class TestSuite
extends Object
implements Cloneable

List of tests.


Field Summary
protected  List<ImplementationTest> implementationTest
           
protected  List<ModulesConstraintsTest> modulesConstraintsTest
           
protected  List<SchemaConstraintsTest> schemaConstraintsTest
           
 
Constructor Summary
TestSuite()
          Creates a new TestSuite instance.
TestSuite(TestSuite o)
          Creates a new TestSuite instance by deeply copying a given instance.
 
Method Summary
 TestSuite clone()
          Creates and returns a deep copy of this object.
private static void copyImplementationTest(List<ImplementationTest> source, List<ImplementationTest> target)
          Copies all values of property ImplementationTest deeply.
private static void copyModulesConstraintsTest(List<ModulesConstraintsTest> source, List<ModulesConstraintsTest> target)
          Copies all values of property ModulesConstraintsTest deeply.
private static void copySchemaConstraintsTest(List<SchemaConstraintsTest> source, List<SchemaConstraintsTest> target)
          Copies all values of property SchemaConstraintsTest deeply.
 List<ImplementationTest> getImplementationTest()
          Gets the value of the implementationTest property.
 List<ModulesConstraintsTest> getModulesConstraintsTest()
          Gets the value of the modulesConstraintsTest property.
 List<SchemaConstraintsTest> 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="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
protected List<SchemaConstraintsTest> schemaConstraintsTest

modulesConstraintsTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
protected List<ModulesConstraintsTest> modulesConstraintsTest

implementationTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
protected List<ImplementationTest> implementationTest
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 instance.

Parameters:
o - The instance to copy or null.
Method Detail

getSchemaConstraintsTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
public List<SchemaConstraintsTest> 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 SchemaConstraintsTest


getModulesConstraintsTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
public List<ModulesConstraintsTest> 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 ModulesConstraintsTest


getImplementationTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
public List<ImplementationTest> 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 ImplementationTest


copySchemaConstraintsTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
private static void copySchemaConstraintsTest(List<SchemaConstraintsTest> source,
                                                                         List<SchemaConstraintsTest> target)
Copies all values of property SchemaConstraintsTest deeply.

Parameters:
target - The target to copy source to.
source - The source to copy from.
Throws:
NullPointerException - if source or target is null.

copyModulesConstraintsTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
private static void copyModulesConstraintsTest(List<ModulesConstraintsTest> source,
                                                                          List<ModulesConstraintsTest> target)
Copies all values of property ModulesConstraintsTest deeply.

Parameters:
target - The target to copy source to.
source - The source to copy from.
Throws:
NullPointerException - if source or target is null.

copyImplementationTest

@Generated(value="com.sun.tools.xjc.Driver",
           date="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
private static void copyImplementationTest(List<ImplementationTest> source,
                                                                      List<ImplementationTest> target)
Copies all values of property ImplementationTest deeply.

Parameters:
target - The target to copy source to.
source - The source to copy from.
Throws:
NullPointerException - if source or target is null.

clone

@Generated(value="com.sun.tools.xjc.Driver",
           date="2009-10-04T12:55:15+00:00",
           comments="JAXB RI vhudson-jaxb-ri-2.1-833")
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-2009 The JOMC Project. All Rights Reserved.