net.anotheria.anosite.gen.asresourcedata.data.FileLinkFactory Maven / Gradle / Ivy
/**
********************************************************************************
*** FileLinkFactory.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.asresourcedata.data;
public class FileLinkFactory{
public static FileLink createFileLink(FileLink template){
return new FileLinkDocument((FileLinkDocument)template);
}
public static FileLink createFileLink(){
return new FileLinkDocument("");
}
static FileLink createFileLink(FileLinkBuilder builder){
return new FileLinkDocument(builder);
}
public static FileLink createFileLinkForImport(String anId){
return new FileLinkDocument(anId);
}
/**
* For internal use only!
*/
public static FileLink createFileLink(String anId){
return new FileLinkDocument(anId);
}
}