KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > uml > behavioralelements > commonbehavior > AttributeLink


1 package org.omg.uml.behavioralelements.commonbehavior;
2
3 public interface AttributeLink extends org.omg.uml.foundation.core.ModelElement {
4     public org.omg.uml.foundation.core.Attribute getAttribute();
5     public void setAttribute(org.omg.uml.foundation.core.Attribute newValue);
6     public org.omg.uml.behavioralelements.commonbehavior.Instance getValue();
7     public void setValue(org.omg.uml.behavioralelements.commonbehavior.Instance newValue);
8     public org.omg.uml.behavioralelements.commonbehavior.Instance getInstance();
9     public void setInstance(org.omg.uml.behavioralelements.commonbehavior.Instance newValue);
10     public org.omg.uml.behavioralelements.commonbehavior.LinkEnd getLinkEnd();
11     public void setLinkEnd(org.omg.uml.behavioralelements.commonbehavior.LinkEnd newValue);
12 }
13
Popular Tags