Trimming trailing spaces, removing tabs by a script
- using tab width of 4 spaces
- trailing space in property files is converted to unicode, so it is
visible in sources
- bat files use CRLF
- all other text files use just LF
diff --git a/appserver/tests/v2-tests/appserv-tests/util/reporter/TestSuite.java b/appserver/tests/v2-tests/appserv-tests/util/reporter/TestSuite.java
index d88bec0..4249dcc 100755
--- a/appserver/tests/v2-tests/appserv-tests/util/reporter/TestSuite.java
+++ b/appserver/tests/v2-tests/appserv-tests/util/reporter/TestSuite.java
@@ -17,94 +17,94 @@
package com.sun.ejte.ccl.reporter;
/**
- @Class: TestSuite
- @Description: Class holding One TestSuite info.
- @Author : Ramesh Mandava
- @Last Modified : By Ramesh on 10/24/2001
- @Last Modified : By Ramesh on 1/20/2002 , For preserving order of entry of tests used a separate testIdVector
+ @Class: TestSuite
+ @Description: Class holding One TestSuite info.
+ @Author : Ramesh Mandava
+ @Last Modified : By Ramesh on 10/24/2001
+ @Last Modified : By Ramesh on 1/20/2002 , For preserving order of entry of tests used a separate testIdVector
*/
import java.util.Hashtable;
import java.util.Vector;
-public class TestSuite
+public class TestSuite
{
- private String id;
- private String name;
- private String description;
+ private String id;
+ private String name;
+ private String description;
- Hashtable testHash;
- Vector testIdVector;
+ Hashtable testHash;
+ Vector testIdVector;
- public TestSuite( String id, String name, String description )
- {
- this.id = id;
- this.name= name;
- this.description = description;
- testHash = new Hashtable();
- testIdVector = new Vector();
- }
+ public TestSuite( String id, String name, String description )
+ {
+ this.id = id;
+ this.name= name;
+ this.description = description;
+ testHash = new Hashtable();
+ testIdVector = new Vector();
+ }
- public TestSuite (String id, String name )
- {
- this.id = id;
- this.name = name;
- this.description=ReporterConstants.NA;
- testHash = new Hashtable();
- testIdVector = new Vector();
- }
+ public TestSuite (String id, String name )
+ {
+ this.id = id;
+ this.name = name;
+ this.description=ReporterConstants.NA;
+ testHash = new Hashtable();
+ testIdVector = new Vector();
+ }
- public TestSuite (String id )
- {
- this.id = id;
- this.name = ReporterConstants.NA;
- this.description=ReporterConstants.NA;
- testHash = new Hashtable();
- testIdVector = new Vector();
- }
+ public TestSuite (String id )
+ {
+ this.id = id;
+ this.name = ReporterConstants.NA;
+ this.description=ReporterConstants.NA;
+ testHash = new Hashtable();
+ testIdVector = new Vector();
+ }
- public String getId( )
- {
- return id;
- }
+ public String getId( )
+ {
+ return id;
+ }
- public String getName( )
- {
- return name;
- }
+ public String getName( )
+ {
+ return name;
+ }
- public String getDescription( )
- {
- return description;
- }
+ public String getDescription( )
+ {
+ return description;
+ }
- public Vector getTestIdVector( )
- {
- return testIdVector;
- }
- public void setTestIdVector( Vector tidVector)
- {
- testIdVector= tidVector;
- }
+ public Vector getTestIdVector( )
+ {
+ return testIdVector;
+ }
+ public void setTestIdVector( Vector tidVector)
+ {
+ testIdVector= tidVector;
+ }
- public Hashtable getTestHash( )
- {
- return testHash;
- }
- public void setTestHash( Hashtable testHash )
- {
- this.testHash= testHash;
- }
+ public Hashtable getTestHash( )
+ {
+ return testHash;
+ }
+ public void setTestHash( Hashtable testHash )
+ {
+ this.testHash= testHash;
+ }
- public void addTest( Test myTest )
- {
- if ( testHash.put( myTest.getId().trim(), myTest) != null )
- {
- System.err.println("Error : Test was added before only. Still allowing. Old value of the test will be overridden" );
- }
-
- testIdVector.addElement( myTest.getId().trim() );
- }
+ public void addTest( Test myTest )
+ {
+ if ( testHash.put( myTest.getId().trim(), myTest) != null )
+ {
+ System.err.println("Error : Test was added before only. Still allowing. Old value of the test will be overridden" );
+ }
+
+ testIdVector.addElement( myTest.getId().trim() );
+ }
}