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