net.anotheria.anosite.gen.assitedata.data.ScriptFactory Maven / Gradle / Ivy
/**
********************************************************************************
*** ScriptFactory.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.assitedata.data;
public class ScriptFactory{
public static Script createScript(Script template){
return new ScriptDocument((ScriptDocument)template);
}
public static Script createScript(){
return new ScriptDocument("");
}
static Script createScript(ScriptBuilder builder){
return new ScriptDocument(builder);
}
public static Script createScriptForImport(String anId){
return new ScriptDocument(anId);
}
/**
* For internal use only!
*/
public static Script createScript(String anId){
return new ScriptDocument(anId);
}
}