net.anotheria.anosite.gen.asblogdata.data.PostFactory Maven / Gradle / Ivy
/**
********************************************************************************
*** PostFactory.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.asblogdata.data;
public class PostFactory{
public static Post createPost(Post template){
return new PostDocument((PostDocument)template);
}
public static Post createPost(){
return new PostDocument("");
}
static Post createPost(PostBuilder builder){
return new PostDocument(builder);
}
public static Post createPostForImport(String anId){
return new PostDocument(anId);
}
/**
* For internal use only!
*/
public static Post createPost(String anId){
return new PostDocument(anId);
}
}