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

org.qbicc.object.DataDeclaration Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package org.qbicc.object;

import org.qbicc.type.ValueType;
import org.qbicc.type.definition.element.MemberElement;

/**
 * A declaration of some global data item.
 */
public class DataDeclaration extends Declaration {

    DataDeclaration(final MemberElement originalElement, ProgramModule programModule, final String name, final ValueType valueType) {
        super(originalElement, programModule, name, valueType);
    }

    DataDeclaration(final Data original) {
        super(original);
    }

    @Override
    public DataDeclaration getDeclaration() {
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy