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

org.kevoree.modeling.ast.MModelClassifier Maven / Gradle / Ivy

The newest version!
package org.kevoree.modeling.ast;

public abstract class MModelClassifier {

    protected String name;
    protected String pack = null;
    protected int index = -1;

    public Integer getIndex() {
        return index;
    }

    public void setIndex(Integer index) {
        this.index = index;
    }

    public String getName() {
        return name;
    }

    public String getPack() {
        return pack;
    }

    public void setPack(String pack) {
        this.pack = pack;
    }

    public String getFqn() {
        return (pack != null ? pack + "." + name : name);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy