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

jedi.annotation.processor.model.Attribute Maven / Gradle / Ivy

package jedi.annotation.processor.model;

public class Attribute {
	private final String type;
	private final String boxedType;
	private final String name;

	public Attribute(String type, String boxedType, String name) {
		this.type = type;
		this.boxedType = boxedType;
		this.name = name;
	}

	public Attribute(String boxedType, String name) {
		this(boxedType, boxedType, name);
	}

	public String getName() {
		return name;
	}

	public String getType() {
		return type;
	}

	public String getBoxedType() {
		return boxedType;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy