All Downloads are FREE. Search and download functionalities are using the official Maven repository.

asset.pipeline.jsx.symbols.Symbol Maven / Gradle / Ivy

There is a newer version: 5.0.5
Show newest version
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