01: package org.andromda.metafacades.emf.uml2;
02:
03: import org.eclipse.uml2.Property;
04:
05: /**
06: * Represents an AssociationEnd metaclass (was needed because it doesn't exist
07: * in the uml2 metamodel).
08: *
09: * @author Cédric Jeanneret
10: */
11: public interface AssociationEnd extends Property {
12: }
|