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

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

There is a newer version: 2.0.2
Show newest version
package de.hilling.lang.metamodel;

/**
 * Stub implementation for {@link MutableAttribute}.
 *
 * @param  Declaring class of the attribute.
 * @param  Type of the attribute.
 */
public abstract class MutableAttributeImplementation extends AttributeImplementation implements
MutableAttribute {

    protected MutableAttributeImplementation(String name, Class declaringType, Class javaType) {
        super(name, declaringType, javaType);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy