1 20 21 package org.objectweb.modfact.corba.helper; 22 23 import org.omg.CORBA.TypeCodePackage.BadKind ; 24 import org.omg.CORBA.TypeCodePackage.Bounds ; 25 import org.omg.mof.Model.Classifier; 26 import org.omg.mof.Model.ModelElement; 27 import org.omg.mof.Model.MofAttribute; 28 import org.omg.mof.Model.Operation; 29 import org.omg.mof.Model.Reference; 30 import org.omg.mof.Reflective.MofError; 31 import org.omg.mof.Reflective.NotSet; 32 33 36 public interface JavaCommon extends IDLCommon { 37 38 41 public String testJavaConflict(String _input); 42 43 46 public String format1Idl2JavaConflict(String _input); 47 48 51 public String format2Idl2JavaConflict(String _input); 52 53 56 public String javaQualifiedName(ModelElement element) 57 throws MofError, NotSet; 58 59 62 public String javaClassName(org.omg.mof.Model.Class clazz) 63 throws NotSet, MofError; 64 65 68 public String javaClassifierName(org.omg.mof.Model.Classifier clazz) 69 throws NotSet, MofError; 70 71 74 public String javaType(Classifier classifier) 75 throws MofError, BadKind , Bounds , NotSet; 76 77 80 public String javaPackage(org.omg.mof.Model.Package _package) 81 throws MofError; 82 83 86 public String attributeTemplate(MofAttribute _attribute) 87 throws MofError, BadKind , Bounds , NotSet; 88 89 92 public String referenceTemplate(Reference _reference) 93 throws MofError, NotSet; 94 95 98 public String operationTemplate(Operation _operation) 99 throws MofError, BadKind , Bounds , NotSet; 100 101 104 public String refBaseObjectTemplate(); 105 106 109 public String refObjectTemplate(); 110 111 114 public String refAssociationTemplate(); 115 116 119 public String refPackageTemplate(); 120 121 124 public String idlPrefix2Java(String prefix); 125 126 } 127 | Popular Tags |