1 26 27 package org.objectweb.ccm.IDL3; 28 29 37 38 public class AnyValueDeclImpl 39 extends DeclarationImpl 40 implements AnyValueDecl 41 { 42 48 51 private AnyValue value_; 52 53 59 64 protected 65 AnyValueDeclImpl(Repository rep, ScopeImpl parent) 66 { 67 super(rep, parent); 69 70 value_ = null; 72 } 73 74 80 85 public AnyValue 86 getAnyValue() 87 { 88 return value_; 89 } 90 91 96 public void 97 setAnyValue(AnyValue value) 98 { 99 value_ = value; 100 } 101 102 108 113 protected org.omg.CORBA.Contained  114 getContained() 115 { 116 return null; 117 } 118 } 119 | Popular Tags |