Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvbhadrir2005-12-07 18:11:39 +0000
committervbhadrir2005-12-07 18:11:39 +0000
commit10352191fadd5163349e48026e2dbe405d76f254 (patch)
treefa6abccece30c85c4a84502428ae81c7f194f8fd /plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb
parent079e651d8383d4a044f7d1d6c55a70091170da34 (diff)
downloadwebtools.javaee-10352191fadd5163349e48026e2dbe405d76f254.tar.gz
webtools.javaee-10352191fadd5163349e48026e2dbe405d76f254.tar.xz
webtools.javaee-10352191fadd5163349e48026e2dbe405d76f254.zip
[116804] commited for NA
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/CommonRelationship.java34
1 files changed, 29 insertions, 5 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/CommonRelationship.java b/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/CommonRelationship.java
index f8eeccb85..89c73209c 100644
--- a/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/CommonRelationship.java
+++ b/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/ejb/CommonRelationship.java
@@ -18,11 +18,35 @@ import org.eclipse.emf.ecore.EObject;
* @author: Administrator
* @since 1.0 */
public interface CommonRelationship extends EObject {
-public EList getCommonRoles();
-public CommonRelationshipRole getFirstCommonRole();
-public CommonRelationshipRole getSecondCommonRole();
-public String getName();
-public void setName(String value);
+ /**
+ * Returns the EList of the common roles
+ * @return EList reference
+ */
+ public EList getCommonRoles();
+
+ /**
+ * Gets the first common role
+ * @return CommonRelationshipRole reference
+ */
+ public CommonRelationshipRole getFirstCommonRole();
+
+ /**
+ * Gets the second common role
+ * @return CommonRelationshipRole
+ */
+ public CommonRelationshipRole getSecondCommonRole();
+
+ /**
+ * Returns the name of the CommonRelationship
+ * @return String value
+ */
+ public String getName();
+
+ /**
+ * Sets the name of the CommonRelationship
+ * @param value the String value of the name
+ */
+ public void setName(String value);
}

Back to the top