asset.pipeline.jsx.symbols.JsxAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsx-asset-pipeline Show documentation
Show all versions of jsx-asset-pipeline Show documentation
JSX Transpiler Extension for the JVM Based Asset-Pipeline.
package asset.pipeline.jsx.symbols;
import java.util.List;
import java.util.ArrayList;
public class JsxAttribute extends GenericSymbol {
public JsxAttribute(String name) {
super(name);
}
private String attributeType="value";
public void setAttributeType(String type) {
this.attributeType = type;
}
public String getAttributeType() {
return this.attributeType;
}
public JsxAttribute(String name,String value,Integer line, Integer column,Integer position) {
super(name,value,line,column,position);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy