Searched refs:JMethod (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/api/
H A DTJavaGeneratorExtension.java28 import com.sun.codemodel.internal.JMethod;
41 * This method should be used to write annotations on {@link JMethod}.
44 * @param jMethod non-null {@link JMethod}
46 public abstract void writeMethodAnnotations(TWSDLOperation wsdlOperation, JMethod jMethod);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DJavaGeneratorExtensionFacade.java28 import com.sun.codemodel.internal.JMethod;
43 public void writeMethodAnnotations(TWSDLOperation wsdlOperation, JMethod jMethod) {
H A DW3CAddressingJavaGeneratorExtension.java31 import com.sun.codemodel.internal.JMethod;
49 public void writeMethodAnnotations(TWSDLOperation two, JMethod jMethod) {
H A DServiceGenerator.java41 import com.sun.codemodel.internal.JMethod;
140 JMethod constructor1 = cls.constructor(JMod.PUBLIC);
147 JMethod constructor2 = cls.constructor(JMod.PUBLIC);
156 JMethod constructor3 = cls.constructor(JMod.PUBLIC);
165 JMethod constructor4 = cls.constructor(JMod.PUBLIC);
174 JMethod constructor5 = cls.constructor(JMod.PUBLIC);
182 JMethod constructor6 = cls.constructor(JMod.PUBLIC);
231 JMethod m = cls.method(JMod.PUBLIC, retType, port.getPortGetter());
344 JMethod m = cls.method(JMod.PRIVATE|JMod.STATIC , retType, "__getWsdlLocation");
352 JMethod
[all...]
H A DCustomExceptionGenerator.java38 import com.sun.codemodel.internal.JMethod;
132 JMethod constrc1 = cls.constructor(JMod.PUBLIC);
143 JMethod constrc2 = cls.constructor(JMod.PUBLIC);
156 JMethod fim = cls.method(JMod.PUBLIC, faultBean, "getFaultInfo");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DMethodWriter.java33 import com.sun.codemodel.internal.JMethod;
59 * JMethod object that represents a newly declared method
62 public abstract JMethod declareMethod( JType returnType, String methodName );
64 public final JMethod declareMethod( Class returnType, String methodName ) {
H A DImplStructureStrategy.java38 import com.sun.codemodel.internal.JMethod;
86 private JMethod implMethod;
92 public JMethod declareMethod(JType returnType, String methodName) {
151 private JMethod intfMethod;
152 private JMethod implMethod;
161 public JMethod declareMethod(JType returnType, String methodName) {
H A DElementOutlineImpl.java38 import com.sun.codemodel.internal.JMethod;
80 JMethod cons = implClass.constructor(JMod.PUBLIC);
88 JMethod noArgCons = implClass.constructor(JMod.PUBLIC);
H A DObjectFactoryGeneratorImpl.java43 import com.sun.codemodel.internal.JMethod;
129 JMethod m1 = objectFactory.constructor(JMod.PUBLIC);
165 JMethod m;
299 JMethod m = objectFactory.method(
336 JMethod m = objectFactory.method( JMod.PUBLIC,
354 JMethod c = cc.implClass.constructor(JMod.PUBLIC);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJInvocation.java33 * JMethod invocation
47 * This allows {@link JMethod#name(String) the name of the method to be changed later}.
51 private JMethod method;
80 JInvocation(JExpression object, JMethod method) {
91 JInvocation(JClass type, JMethod method) {
102 private JInvocation(JGenerable object, JMethod method) {
H A DJDefinedClass.java78 private final List<JMethod> constructors = new ArrayList<JMethod>();
81 private final List<JMethod> methods = new ArrayList<JMethod>();
526 public JMethod constructor(int mods) {
527 JMethod c = new JMethod(mods, this);
535 public Iterator<JMethod> constructors() {
546 public JMethod getConstructor(JType[] argTypes) {
547 for (JMethod
[all...]
H A DJMethod.java41 public class JMethod extends JGenerifiableImpl implements JDeclaration, JAnnotatable, JDocCommentable { class in inherits:JGenerifiableImpl,JDeclaration,JAnnotatable,JDocCommentable
77 * javadoc comments for this JMethod
104 * JMethod constructor
115 JMethod(JDefinedClass outer, int mods, JType type, String name) { method in class:JMethod
131 JMethod(int mods, JDefinedClass _class) { method in class:JMethod
151 public JMethod _throws(JClass exception) {
156 public JMethod _throws(Class<? extends Throwable> exception) {
236 + "Check if varParam method of JMethod is"
H A DJExpression.java139 JInvocation invoke(JMethod method);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/addon/sync/
H A DSynchronizedMethodAddOn.java30 import com.sun.codemodel.internal.JMethod;
71 for (JMethod m : co.implClass.methods())
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DUnboxedField.java31 import com.sun.codemodel.internal.JMethod;
79 JMethod $get = writer.declareMethod( ptype, getGetterMethod() );
92 JMethod $set = writer.declareMethod( codeModel.VOID, "set"+prop.getName(true) );
H A DArrayField.java35 import com.sun.codemodel.internal.JMethod;
86 private JMethod $setAll;
88 private JMethod $getAll;
136 JMethod $get = writer.declareMethod(exposedType,"get"+prop.getName(true));
151 JMethod $getLength = writer.declareMethod(codeModel.INT,"get"+prop.getName(true)+"Length");
187 JMethod $set = writer.declareMethod(
H A DSingleField.java34 import com.sun.codemodel.internal.JMethod;
111 JMethod $get = writer.declareMethod( getterType,getGetterMethod() );
135 JMethod $set = writer.declareMethod( codeModel.VOID, "set"+prop.getName(true) );
H A DDummyListField.java36 import com.sun.codemodel.internal.JMethod;
83 private JMethod $get;
H A DUntypedListField.java35 import com.sun.codemodel.internal.JMethod;
82 private JMethod $get;
H A DAbstractListField.java36 import com.sun.codemodel.internal.JMethod;
70 private JMethod internalGetter;
H A DContentListField.java35 import com.sun.codemodel.internal.JMethod;
84 private JMethod $get;
H A DNoExtendedContentField.java35 import com.sun.codemodel.internal.JMethod;
87 private JMethod $get;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/addon/locator/
H A DSourceLocationAddOn.java35 import com.sun.codemodel.internal.JMethod;
85 JMethod setter = impl.method(JMod.PUBLIC, Void.TYPE, "setSourceLocation");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/addon/at_generated/
H A DPluginImpl.java34 import com.sun.codemodel.internal.JMethod;
84 for (JMethod m : co.implClass.methods())
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIUserConversion.java42 import com.sun.codemodel.internal.JMethod;
181 JMethod unmarshal = adapter.method(JMod.PUBLIC, inMemoryType, "unmarshal");
208 JMethod marshal = adapter.method(JMod.PUBLIC, String.class, "marshal");

Completed in 63 milliseconds

12