1 package org.omg.uml.foundation.core;2 3 public interface AssociationEnd extends org.omg.uml.foundation.core.ModelElement {4 public boolean isNavigable();5 public void setNavigable(boolean newValue);6 public org.omg.uml.foundation.datatypes.OrderingKind getOrdering();7 public void setOrdering(org.omg.uml.foundation.datatypes.OrderingKind newValue);8 public org.omg.uml.foundation.datatypes.AggregationKind getAggregation();9 public void setAggregation(org.omg.uml.foundation.datatypes.AggregationKind newValue);10 public org.omg.uml.foundation.datatypes.ScopeKind getTargetScope();11 public void setTargetScope(org.omg.uml.foundation.datatypes.ScopeKind newValue);12 public org.omg.uml.foundation.datatypes.Multiplicity getMultiplicity();13 public void setMultiplicity(org.omg.uml.foundation.datatypes.Multiplicity newValue);14 public org.omg.uml.foundation.datatypes.ChangeableKind getChangeability();15 public void setChangeability(org.omg.uml.foundation.datatypes.ChangeableKind newValue);16 public org.omg.uml.foundation.core.UmlAssociation getAssociation();17 public void setAssociation(org.omg.uml.foundation.core.UmlAssociation newValue);18 public java.util.List getQualifier();19 public org.omg.uml.foundation.core.Classifier getParticipant();20 public void setParticipant(org.omg.uml.foundation.core.Classifier newValue);21 public java.util.Collection getSpecification();22 }23