net.anotheria.anosite.gen.assitedata.data.PageAliasFactory Maven / Gradle / Ivy
/**
********************************************************************************
*** PageAliasFactory.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 PageAliasFactory{
public static PageAlias createPageAlias(PageAlias template){
return new PageAliasDocument((PageAliasDocument)template);
}
public static PageAlias createPageAlias(){
return new PageAliasDocument("");
}
static PageAlias createPageAlias(PageAliasBuilder builder){
return new PageAliasDocument(builder);
}
public static PageAlias createPageAliasForImport(String anId){
return new PageAliasDocument(anId);
}
/**
* For internal use only!
*/
public static PageAlias createPageAlias(String anId){
return new PageAliasDocument(anId);
}
}