asset.pipeline.jsx.symbols.JsxElement 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;
import java.io.*;
public class JsxElement extends GenericSymbol {
public JsxElement(String name) {
super(name);
}
public JsxElement(String name,String value,Integer line, Integer column,Integer position) {
super(name,value,line,column,position);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy