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

de.hilling.lang.metamodel.AttributeInfo Maven / Gradle / Ivy

The newest version!
package de.hilling.lang.metamodel;

import javax.lang.model.type.TypeMirror;

/**
 * Information about found attribute.
 */
public class AttributeInfo {
    private boolean    writable;
    private TypeMirror type;

    public boolean isWritable() {
        return writable;
    }

    public void setWritable(boolean writable) {
        this.writable = writable;
    }

    public void setType(TypeMirror type) {
        this.type = type;
    }

    public TypeMirror getType() {
        return type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy