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