asset.pipeline.jsx.symbols.Symbol 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;
public interface Symbol {
Integer getLine();
Integer getColumn();
Integer getPosition();
Integer getLength();
void setLength(Integer length);
String getName();
void setName(String name);
String getValue();
void setValue(String value);
List getAttributes();
void appendAttribute(Symbol symbol);
List getChildren();
void appendChild(Symbol symbol);
Symbol getParent();
void setParent(Symbol parent);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy