KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > modfact > jmi > repository > javax > jmi > model > CollectionTypeImpl


1 package org.objectweb.modfact.jmi.repository.javax.jmi.model;
2 import org.objectweb.modfact.jmi.reflect.*;
3 public class CollectionTypeImpl extends RefObjectImpl implements javax.jmi.model.CollectionType { public String JavaDoc getName() throws javax.jmi.reflect.JmiException {
4      return (String JavaDoc) refGetValue("name");
5      }
6     public void setName(String JavaDoc newValue) throws javax.jmi.reflect.JmiException {
7      refSetValue("name",newValue);
8      }
9     public java.util.List JavaDoc getQualifiedName() throws javax.jmi.reflect.JmiException {
10      return (java.util.List JavaDoc) refGetValue("qualifiedName");
11      }
12     public String JavaDoc getAnnotation() throws javax.jmi.reflect.JmiException {
13      return (String JavaDoc) refGetValue("annotation");
14      }
15     public void setAnnotation(String JavaDoc newValue) throws javax.jmi.reflect.JmiException {
16      refSetValue("annotation",newValue);
17      }
18     public boolean isRoot() throws javax.jmi.reflect.JmiException {
19      return (boolean) ((Boolean JavaDoc)refGetValue("isRoot")).booleanValue();
20      }
21     public void setRoot(boolean newValue) throws javax.jmi.reflect.JmiException {
22      refSetValue("isRoot",new Boolean JavaDoc(newValue));
23      }
24     public boolean isLeaf() throws javax.jmi.reflect.JmiException {
25      return (boolean) ((Boolean JavaDoc)refGetValue("isLeaf")).booleanValue();
26      }
27     public void setLeaf(boolean newValue) throws javax.jmi.reflect.JmiException {
28      refSetValue("isLeaf",new Boolean JavaDoc(newValue));
29      }
30     public boolean isAbstract() throws javax.jmi.reflect.JmiException {
31      return (boolean) ((Boolean JavaDoc)refGetValue("isAbstract")).booleanValue();
32      }
33     public void setAbstract(boolean newValue) throws javax.jmi.reflect.JmiException {
34      refSetValue("isAbstract",new Boolean JavaDoc(newValue));
35      }
36     public javax.jmi.model.VisibilityKind getVisibility() throws javax.jmi.reflect.JmiException {
37      return (javax.jmi.model.VisibilityKind) refGetValue("visibility");
38      }
39     public void setVisibility(javax.jmi.model.VisibilityKind newValue) throws javax.jmi.reflect.JmiException {
40      refSetValue("visibility",newValue);
41      }
42     public javax.jmi.model.MultiplicityType getMultiplicity() throws javax.jmi.reflect.JmiException {
43      return (javax.jmi.model.MultiplicityType) refGetValue("multiplicity");
44      }
45     public void setMultiplicity(javax.jmi.model.MultiplicityType newValue) throws javax.jmi.reflect.JmiException {
46      refSetValue("multiplicity",newValue);
47      }
48     public java.util.Collection JavaDoc getRequiredElements() throws javax.jmi.reflect.JmiException {
49      return (java.util.Collection JavaDoc) refGetValue("requiredElements");
50      }
51     public javax.jmi.model.Namespace getContainer() throws javax.jmi.reflect.JmiException {
52      return (javax.jmi.model.Namespace) refGetValue("container");
53      }
54     public void setContainer(javax.jmi.model.Namespace newValue) throws javax.jmi.reflect.JmiException {
55      refSetValue("container",newValue);
56      }
57     public java.util.Collection JavaDoc getConstraints() throws javax.jmi.reflect.JmiException {
58      return (java.util.Collection JavaDoc) refGetValue("constraints");
59      }
60     public javax.jmi.model.Classifier getType() throws javax.jmi.reflect.JmiException {
61      return (javax.jmi.model.Classifier) refGetValue("type");
62      }
63     public void setType(javax.jmi.model.Classifier newValue) throws javax.jmi.reflect.JmiException {
64      refSetValue("type",newValue);
65      }
66     public java.util.List JavaDoc getContents() throws javax.jmi.reflect.JmiException {
67      return (java.util.List JavaDoc) refGetValue("contents");
68      }
69     public java.util.List JavaDoc getSupertypes() throws javax.jmi.reflect.JmiException {
70      return (java.util.List JavaDoc) refGetValue("supertypes");
71      }
72     public java.util.Collection JavaDoc findRequiredElements(java.util.Collection JavaDoc kinds,boolean recursive) throws javax.jmi.reflect.JmiException {
73 throw new RuntimeException JavaDoc("No Implementation");
74      }
75     public boolean isRequiredBecause(javax.jmi.model.ModelElement otherElement,String JavaDoc[] reason) throws javax.jmi.reflect.JmiException {
76 throw new RuntimeException JavaDoc("No Implementation");
77      }
78     public boolean isFrozen() throws javax.jmi.reflect.JmiException {
79 throw new RuntimeException JavaDoc("No Implementation");
80      }
81     public boolean isVisible(javax.jmi.model.ModelElement otherElement) throws javax.jmi.reflect.JmiException {
82 throw new RuntimeException JavaDoc("No Implementation");
83      }
84     public javax.jmi.model.ModelElement lookupElement(String JavaDoc name) throws javax.jmi.reflect.JmiException {
85 throw new RuntimeException JavaDoc("No Implementation");
86      }
87     public javax.jmi.model.ModelElement resolveQualifiedName(java.util.List JavaDoc qualifiedName) throws javax.jmi.reflect.JmiException {
88 throw new RuntimeException JavaDoc("No Implementation");
89      }
90     public java.util.List JavaDoc findElementsByType(javax.jmi.model.MofClass ofType,boolean includeSubtypes) throws javax.jmi.reflect.JmiException {
91 throw new RuntimeException JavaDoc("No Implementation");
92      }
93     public boolean nameIsValid(String JavaDoc proposedName) throws javax.jmi.reflect.JmiException {
94 throw new RuntimeException JavaDoc("No Implementation");
95      }
96     public java.util.List JavaDoc allSupertypes() throws javax.jmi.reflect.JmiException {
97 throw new RuntimeException JavaDoc("No Implementation");
98      }
99     public javax.jmi.model.ModelElement lookupElementExtended(String JavaDoc name) throws javax.jmi.reflect.JmiException {
100 throw new RuntimeException JavaDoc("No Implementation");
101      }
102     public java.util.List JavaDoc findElementsByTypeExtended(javax.jmi.model.MofClass ofType,boolean includeSubtypes) throws javax.jmi.reflect.JmiException {
103 throw new RuntimeException JavaDoc("No Implementation");
104      }
105 }
106
Popular Tags