KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.objectweb.modfact.jmi.repository.javax.jmi.model;
2
3 import org.objectweb.modfact.jmi.reflect.*;
4 public class BehavioralFeatureImpl extends RefObjectImpl implements javax.jmi.model.BehavioralFeature { public String JavaDoc getName() throws javax.jmi.reflect.JmiException {
5      return (String JavaDoc) refGetValue("name");
6      }
7     public void setName(String JavaDoc newValue) throws javax.jmi.reflect.JmiException {
8      refSetValue("name",newValue);
9      }
10     public java.util.List JavaDoc getQualifiedName() throws javax.jmi.reflect.JmiException {
11      return (java.util.List JavaDoc) refGetValue("qualifiedName");
12      }
13     public String JavaDoc getAnnotation() throws javax.jmi.reflect.JmiException {
14      return (String JavaDoc) refGetValue("annotation");
15      }
16     public void setAnnotation(String JavaDoc newValue) throws javax.jmi.reflect.JmiException {
17      refSetValue("annotation",newValue);
18      }
19     public javax.jmi.model.ScopeKind getScope() throws javax.jmi.reflect.JmiException {
20      return (javax.jmi.model.ScopeKind) refGetValue("scope");
21      }
22     public void setScope(javax.jmi.model.ScopeKind newValue) throws javax.jmi.reflect.JmiException {
23      refSetValue("scope",newValue);
24      }
25     public javax.jmi.model.VisibilityKind getVisibility() throws javax.jmi.reflect.JmiException {
26      return (javax.jmi.model.VisibilityKind) refGetValue("visibility");
27      }
28     public void setVisibility(javax.jmi.model.VisibilityKind newValue) throws javax.jmi.reflect.JmiException {
29      refSetValue("visibility",newValue);
30      }
31     public java.util.Collection JavaDoc getRequiredElements() throws javax.jmi.reflect.JmiException {
32      return (java.util.Collection JavaDoc) refGetValue("requiredElements");
33      }
34     public javax.jmi.model.Namespace getContainer() throws javax.jmi.reflect.JmiException {
35      return (javax.jmi.model.Namespace) refGetValue("container");
36      }
37     public void setContainer(javax.jmi.model.Namespace newValue) throws javax.jmi.reflect.JmiException {
38      refSetValue("container",newValue);
39      }
40     public java.util.Collection JavaDoc getConstraints() throws javax.jmi.reflect.JmiException {
41      return (java.util.Collection JavaDoc) refGetValue("constraints");
42      }
43     public java.util.List JavaDoc getContents() throws javax.jmi.reflect.JmiException {
44      return (java.util.List JavaDoc) refGetValue("contents");
45      }
46     public java.util.Collection JavaDoc findRequiredElements(java.util.Collection JavaDoc kinds,boolean recursive) throws javax.jmi.reflect.JmiException {
47 throw new RuntimeException JavaDoc("No Implementation");
48      }
49     public boolean isRequiredBecause(javax.jmi.model.ModelElement otherElement,String JavaDoc[] reason) throws javax.jmi.reflect.JmiException {
50 throw new RuntimeException JavaDoc("No Implementation");
51      }
52     public boolean isFrozen() throws javax.jmi.reflect.JmiException {
53 throw new RuntimeException JavaDoc("No Implementation");
54      }
55     public boolean isVisible(javax.jmi.model.ModelElement otherElement) throws javax.jmi.reflect.JmiException {
56 throw new RuntimeException JavaDoc("No Implementation");
57      }
58     public javax.jmi.model.ModelElement lookupElement(String JavaDoc name) throws javax.jmi.reflect.JmiException {
59 throw new RuntimeException JavaDoc("No Implementation");
60      }
61     public javax.jmi.model.ModelElement resolveQualifiedName(java.util.List JavaDoc qualifiedName) throws javax.jmi.reflect.JmiException {
62 throw new RuntimeException JavaDoc("No Implementation");
63      }
64     public java.util.List JavaDoc findElementsByType(javax.jmi.model.MofClass ofType,boolean includeSubtypes) throws javax.jmi.reflect.JmiException {
65 throw new RuntimeException JavaDoc("No Implementation");
66      }
67     public boolean nameIsValid(String JavaDoc proposedName) throws javax.jmi.reflect.JmiException {
68 throw new RuntimeException JavaDoc("No Implementation");
69      }
70 }
71
Popular Tags