webtester.packages.common
Class webtesterCommons

java.lang.Object
  |
  +--webtester.packages.common.webtesterCommons

public class webtesterCommons
extends java.lang.Object

Contains method commonly used throughout the application.

Author:
Aaron DeLong

Constructor Summary
webtesterCommons()
           
 
Method Summary
static java.util.ArrayList split(java.lang.String info, char splitchar)
          Split a string into elements in an ArrayList based on the delimiting char.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

webtesterCommons

public webtesterCommons()
Method Detail

split

public static java.util.ArrayList split(java.lang.String info,
                                        char splitchar)
Split a string into elements in an ArrayList based on the delimiting char.

Parameters:
info - the String that needs to be parsed
splitchar - the delimiting character used in parsing the String
Returns:
an ArrayList containing the result of the split operation