net.anotheria.anosite.gen.ascustomdata.data.CustomBoxHandlerDefFactory Maven / Gradle / Ivy
/**
********************************************************************************
*** CustomBoxHandlerDefFactory.java ***
*** generated by AnoSiteGenerator (ASG), Version: 3.2.2 ***
*** Copyright (C) 2005 - 2023 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.ascustomdata.data;
public class CustomBoxHandlerDefFactory{
public static CustomBoxHandlerDef createCustomBoxHandlerDef(CustomBoxHandlerDef template){
return new CustomBoxHandlerDefDocument((CustomBoxHandlerDefDocument)template);
}
public static CustomBoxHandlerDef createCustomBoxHandlerDef(){
return new CustomBoxHandlerDefDocument("");
}
static CustomBoxHandlerDef createCustomBoxHandlerDef(CustomBoxHandlerDefBuilder builder){
return new CustomBoxHandlerDefDocument(builder);
}
public static CustomBoxHandlerDef createCustomBoxHandlerDefForImport(String anId){
return new CustomBoxHandlerDefDocument(anId);
}
/**
* For internal use only!
*/
public static CustomBoxHandlerDef createCustomBoxHandlerDef(String anId){
return new CustomBoxHandlerDefDocument(anId);
}
}