1 package org.omg.uml.foundation.core;2 3 public interface StructuralFeature extends org.omg.uml.foundation.core.Feature {4 public org.omg.uml.foundation.datatypes.Multiplicity getMultiplicity();5 public void setMultiplicity(org.omg.uml.foundation.datatypes.Multiplicity newValue);6 public org.omg.uml.foundation.datatypes.ChangeableKind getChangeability();7 public void setChangeability(org.omg.uml.foundation.datatypes.ChangeableKind newValue);8 public org.omg.uml.foundation.datatypes.ScopeKind getTargetScope();9 public void setTargetScope(org.omg.uml.foundation.datatypes.ScopeKind newValue);10 public org.omg.uml.foundation.datatypes.OrderingKind getOrdering();11 public void setOrdering(org.omg.uml.foundation.datatypes.OrderingKind newValue);12 public org.omg.uml.foundation.core.Classifier getType();13 public void setType(org.omg.uml.foundation.core.Classifier newValue);14 }15