net.anotheria.anosite.gen.assitedata.data.EntryPointFactory Maven / Gradle / Ivy
/**
********************************************************************************
*** EntryPointFactory.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.assitedata.data;
public class EntryPointFactory{
public static EntryPoint createEntryPoint(EntryPoint template){
return new EntryPointDocument((EntryPointDocument)template);
}
public static EntryPoint createEntryPoint(){
return new EntryPointDocument("");
}
static EntryPoint createEntryPoint(EntryPointBuilder builder){
return new EntryPointDocument(builder);
}
public static EntryPoint createEntryPointForImport(String anId){
return new EntryPointDocument(anId);
}
/**
* For internal use only!
*/
public static EntryPoint createEntryPoint(String anId){
return new EntryPointDocument(anId);
}
}