KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > uml > foundation > core > Generalization


1 package org.omg.uml.foundation.core;
2
3 public interface Generalization extends org.omg.uml.foundation.core.Relationship {
4     public java.lang.String JavaDoc getDiscriminator();
5     public void setDiscriminator(java.lang.String JavaDoc newValue);
6     public org.omg.uml.foundation.core.GeneralizableElement getChild();
7     public void setChild(org.omg.uml.foundation.core.GeneralizableElement newValue);
8     public org.omg.uml.foundation.core.GeneralizableElement getParent();
9     public void setParent(org.omg.uml.foundation.core.GeneralizableElement newValue);
10     public org.omg.uml.foundation.core.Classifier getPowertype();
11     public void setPowertype(org.omg.uml.foundation.core.Classifier newValue);
12 }
13
Popular Tags