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

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

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