net.jangaroo.jooc.mvnplugin.sencha.configbuilder.SenchaAppConfigBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jangaroo-maven-plugin Show documentation
Show all versions of jangaroo-maven-plugin Show documentation
This plugin compiles Jangaroo sources to JavaScript.
package net.jangaroo.jooc.mvnplugin.sencha.configbuilder;
/**
* Builder for app.json.
*/
public class SenchaAppConfigBuilder extends SenchaPackageOrAppConfigBuilder {
private static final String ID = "id";
private static final String LOCALES_LABEL = "locales";
public SenchaAppConfigBuilder id(String id) {
return nameValue(ID, id);
}
public SenchaAppConfigBuilder locale(String locale) {
return addToList(locale, LOCALES_LABEL);
}
}