de.hilling.lang.metamodel.MutableAttributeImplementation Maven / Gradle / Ivy
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);
}
}