1 26 27 package org.objectweb.ccm.IDL3; 28 29 37 38 public interface AttributeDecl 39 extends Declaration 40 { 41 42 public static int ATTR_NORMAL = org.omg.CORBA.AttributeMode._ATTR_NORMAL; 43 44 45 public static int ATTR_READONLY = org.omg.CORBA.AttributeMode._ATTR_READONLY; 46 47 50 public void 51 setNormal(); 52 53 56 public void 57 setReadonly(); 58 59 64 public void 65 setType(TypeRef type); 66 67 73 public ExceptionList 74 getGetExceptionList(); 75 76 83 public ExceptionList 84 getSetExceptionList(); 85 86 92 public ExceptionDecl[] 93 getGetExceptions(); 94 95 102 public ExceptionDecl[] 103 getSetExceptions(); 104 105 108 public ExceptionDecl[] 109 getExceptions(); 110 111 116 public boolean 117 isReadonly(); 118 119 124 public TypeRef 125 getType(); 126 } 127 | Popular Tags |