/**
* Description : Functional Test Script
* @author Administrator
*/
public class Getter extends GetterHelper
{
public void testMain(Object[] args)
{
try{
Vector v = new Vector();
v.addElement (new Login ());
new ClassGenerator().updateScripts(v);
}catch(Throwable e){
System.err.println(e);
}
}
}