1 26 27 package org.objectweb.openccm.explorer.CORBA; 28 29 36 public class ViewAttributeWrapper 37 { 38 39 45 46 protected String name_ = null; 47 48 49 protected org.omg.CORBA.Object object_ = null; 50 51 57 62 public ViewAttributeWrapper(String name, org.omg.CORBA.Object object){ 63 name_ = name; 64 object_ = object; 65 } 66 67 73 79 82 public String getName(){ 83 return name_; 84 } 85 86 89 public org.omg.CORBA.Object getObject(){ 90 return object_; 91 } 92 93 } | Popular Tags |