1 26 27 package org.objectweb.openccm.ast.lib; 28 29 38 39 public class TypeRefWithLengthImpl 40 extends TypeRefImpl 41 implements org.objectweb.openccm.ast.api.TypeRefWithLength 42 { 43 49 50 private int length_; 51 52 58 65 protected 66 TypeRefWithLengthImpl(org.omg.CORBA.IDLType type, 67 org.objectweb.openccm.ast.api.TypeKind kind, 68 int length) 69 { 70 super(type, kind); 72 73 length_ = length; 75 } 76 77 83 89 95 100 public void 101 setLength(int length) 102 { 103 length_ = length; 104 } 105 106 111 public int 112 getLength() 113 { 114 return length_; 115 } 116 } 117 | Popular Tags |