net.anotheria.anosite.gen.asfederateddata.data.BoxHandlerDefFactory Maven / Gradle / Ivy
/**
********************************************************************************
*** BoxHandlerDefFactory.java ***
*** generated by AnoSiteGenerator (ASG), Version: 2.6.3 ***
*** Copyright (C) 2005 - 2010 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.asfederateddata.data;
public class BoxHandlerDefFactory{
public static BoxHandlerDef createBoxHandlerDef(BoxHandlerDef template){
return new BoxHandlerDefVO((BoxHandlerDefVO)template);
}
public static BoxHandlerDef createBoxHandlerDef(){
return new BoxHandlerDefVO("");
}
static BoxHandlerDef createBoxHandlerDef(BoxHandlerDefBuilder builder){
return new BoxHandlerDefVO(builder);
}
public static BoxHandlerDef createBoxHandlerDefForImport(String anId){
return new BoxHandlerDefVO(anId);
}
/**
* For internal use only!
*/
public static BoxHandlerDef createBoxHandlerDef(String anId){
return new BoxHandlerDefVO(anId);
}
}