All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.jangaroo.properties.templates.properties_subclass.ftl Maven / Gradle / Ivy

There is a newer version: 4.1.17
Show newest version
<#-- @ftlvariable name="" type="net.jangaroo.properties.model.PropertiesClass" -->
package ${resourceBundle.packageName} {
<#list imports as import>
import ${import};

<#if annotations??>
${annotations}

/**
<#if as3Comment??>
${as3Comment}
<#else>
 * Overrides of ResourceBundle "${resourceBundle.bundleName}" for Locale "${locale}".

 * @see ${resourceBundle.className}#INSTANCE
 */
public dynamic class ${resourceBundle.bundleName}_${locale}_properties extends ${resourceBundle.className} {

public function ${resourceBundle.bundleName}_${locale}_properties() {
  super();
<#list props as property>
 this<#if property.keyIsIdentifier>.${property.key}<#else>["${property.key?json_string}"] = <#if property.valueIsReference>${property.value}<#else>"${property.value?json_string}";

}

}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy