1 20 package org.objectweb.modfact.corba.helper; 21 22 import org.omg.CORBA.TypeCodePackage.BadKind ; 23 import org.omg.mof.Model.ModelElement; 24 import org.omg.mof.Reflective.MofError; 25 import org.omg.mof.Reflective.NotSet; 26 27 30 public interface IDLCommon { 31 32 33 36 public String format1(String input); 37 38 41 public String format1FirstMin(String input); 42 43 46 public String format2(String input); 47 48 51 public String format3(String input); 52 53 56 public String format2IdlConflict(String input); 57 58 61 public String qualifiedName(ModelElement modelElement) throws MofError , NotSet; 62 63 64 public String className(org.omg.mof.Model.Class clazz) 65 throws NotSet, MofError; 66 67 70 72 75 public boolean isBaseType(org.omg.CORBA.TypeCode _typecode) 76 throws BadKind , org.omg.CORBA.TypeCodePackage.Bounds ; 77 78 } 79 | Popular Tags |