Package oracle.adf.model.adapter.dataformat

Examples of oracle.adf.model.adapter.dataformat.MethodDef.addParameter()


            // add parameters to method-definition if data provider has dynamic parameters
            {
                final Set<DynamicParameter> dynamicParams = defNode.getDynamicParams();
                if (dynamicParams != null) {
                    for (DynamicParameter dynpar : dynamicParams) {
                        method.addParameter(dynpar.getName(), dynpar.getJavaType());
                    }
                }
            }

            // link StructureDef to MethodDef using a MethodReturnDef
View Full Code Here


                // do not expose first (XMLDCElement) parameter in datacontrol structure
                i++;
                continue;
            }
            // FIXME: would be nice if we can discover the parameter names
            methodDef.addParameter(argName(i - 1), param.getName());
            i++;
        }
        Class returnType = method.getReturnType();
        if (!Void.TYPE.equals(returnType)) {
            methodDef.setReturnType(returnType.getName());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.