net.anotheria.anosite.gen.asresourcedata.data.LocalizationBundleFactory Maven / Gradle / Ivy
/**
********************************************************************************
*** LocalizationBundleFactory.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.asresourcedata.data;
public class LocalizationBundleFactory{
public static LocalizationBundle createLocalizationBundle(LocalizationBundle template){
return new LocalizationBundleDocument((LocalizationBundleDocument)template);
}
public static LocalizationBundle createLocalizationBundle(){
return new LocalizationBundleDocument("");
}
static LocalizationBundle createLocalizationBundle(LocalizationBundleBuilder builder){
return new LocalizationBundleDocument(builder);
}
public static LocalizationBundle createLocalizationBundleForImport(String anId){
return new LocalizationBundleDocument(anId);
}
/**
* For internal use only!
*/
public static LocalizationBundle createLocalizationBundle(String anId){
return new LocalizationBundleDocument(anId);
}
}