cdx.scorebot.net
Class TestSuiteSkeleton

java.lang.Object
  extended by cdx.scorebot.net.TestSuiteSkeleton
All Implemented Interfaces:
java.io.Serializable

public class TestSuiteSkeleton
extends java.lang.Object
implements java.io.Serializable

Contains the skeleton information for a TestSuite

Author:
David Underhill
See Also:
Serialized Form

Constructor Summary
TestSuiteSkeleton(java.lang.String name)
          basic constructor
TestSuiteSkeleton(TestSuiteSkeleton tss)
          copy constructor
 
Method Summary
 boolean equals(java.lang.Object o)
           
 java.lang.String getHostname()
          gets the ip/hostname this suite tests
 java.lang.String getName()
          gets the name of the suite this applies to
 int getPort()
          gets the port this suite tests
 int hashCode()
          hashCode is the hashCode of the summation of hashCode of each non-transient data member
 boolean isValid()
          gets whether or not this suite name refers to a valid suite within the current NetworkTestPackage
 void setHostname(java.lang.String hostname)
          sets the ip/hostname this suite tests
 void setName(java.lang.String name)
          sets the name of the suite this applies to
 void setPort(int port)
          sets the port this suite tests
 void setValid(boolean valid)
          sets whether or not this suite name refers to a valid suite within the current NetworkTestPackage
 java.lang.String toString()
          returns the name of the suite this works with
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TestSuiteSkeleton

public TestSuiteSkeleton(java.lang.String name)
basic constructor


TestSuiteSkeleton

public TestSuiteSkeleton(TestSuiteSkeleton tss)
copy constructor

Method Detail

getName

public java.lang.String getName()
gets the name of the suite this applies to


setName

public void setName(java.lang.String name)
sets the name of the suite this applies to


getHostname

public java.lang.String getHostname()
gets the ip/hostname this suite tests


setHostname

public void setHostname(java.lang.String hostname)
sets the ip/hostname this suite tests


getPort

public int getPort()
gets the port this suite tests


setPort

public void setPort(int port)
sets the port this suite tests


isValid

public boolean isValid()
gets whether or not this suite name refers to a valid suite within the current NetworkTestPackage


setValid

public void setValid(boolean valid)
sets whether or not this suite name refers to a valid suite within the current NetworkTestPackage


equals

public boolean equals(java.lang.Object o)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
hashCode is the hashCode of the summation of hashCode of each non-transient data member

Overrides:
hashCode in class java.lang.Object

toString

public java.lang.String toString()
returns the name of the suite this works with

Overrides:
toString in class java.lang.Object