1 26 27 package org.objectweb.openccm.ir3; 28 29 import org.omg.CORBA.ExceptionDef ; 31 32 40 41 public class ExceptionDef_ref 42 extends IRObject_ref 43 { 44 50 56 59 public 60 ExceptionDef_ref(IRObject_impl owner) 61 { 62 super(owner); 64 } 65 66 69 public 70 ExceptionDef_ref(IRObject_impl owner, 71 ExceptionDef_impl object) 72 { 73 super(owner, object); 75 } 76 77 83 86 static public void 87 cutDependencies(ExceptionDef_ref[] exceptions) 88 { 89 if (exceptions != null) 90 { 91 for(int i=0; i<exceptions.length; i++) 92 exceptions[i].cutDependency(); 93 } 94 } 95 96 102 105 public ExceptionDef_impl 106 getImpl() 107 { 108 return (ExceptionDef_impl)(super.getBaseImpl()); 109 } 110 111 114 public ExceptionDef 115 asExceptionDef() 116 { 117 return getImpl().asExceptionDef(); 118 } 119 } 120 | Popular Tags |