
com.github.jlgrock.javascriptframework.closurecompiler.Define Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of closure-compiler-maven-plugin Show documentation
Show all versions of closure-compiler-maven-plugin Show documentation
The plugin that will create a debug version and run the Google Closure Compiler on the source code to create a heavily minified file.
The newest version!
package com.github.jlgrock.javascriptframework.closurecompiler;
/**
* Represents @define
compiler option.
*/
public final class Define {
/**
* The name of the compiler object to set.
*/
private String defineName;
/**
* The compiler value to set for this name.
*/
private String value;
/**
* The type (Boolean, String, Integer, Double) to parse to in the compiler.
*/
private String valueType;
/**
* @return The name of the object to set.
*/
public String getDefineName() {
return defineName;
}
/**
* @return The compiler value to set for this name.
*/
public String getValue() {
return value;
}
/**
* @return The type (Boolean, String, Integer, Double) to parse to in the compiler.
*/
public String getValueType() {
return valueType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy