Examples of ParamType


Examples of org.apache.schemas.yoko.bindings.corba.ParamType

        NodeList opChildNodes = el.getChildNodes();
        for (int i = 0; i < opChildNodes.getLength(); ++i) {
            Node currentNode = opChildNodes.item(i);

            if (currentNode.getNodeName().equals("corba:param")) {
                ParamType param = new ParamType();
                NamedNodeMap paramAttributes = currentNode.getAttributes();

                for (int j = 0; j < paramAttributes.getLength(); ++j) {
                    Node paramAttrNode = paramAttributes.item(j);
                    if (paramAttrNode.getNodeName().equals("name")) {
                        param.setName(paramAttrNode.getNodeValue());
                    } else if (paramAttrNode.getNodeName().equals("mode")) {
                        param.setMode(ModeType.fromValue(paramAttrNode.getNodeValue()));
                    } else if (paramAttrNode.getNodeName().equals("idltype")) {
                        param.setIdltype(getIdlTypeName(def, paramAttrNode, currentNode));
                    }
                }
                opType.getParam().add(param);
            } else if (currentNode.getNodeName().equals("corba:return")) {
                ArgType ret = new ArgType();
View Full Code Here

Examples of org.apache.wink.common.internal.registry.Injectable.ParamType

        return r;
    }

    /* package */Param buildParam(Injectable paramMetadata) {
        Param p = null;
        ParamType pt = paramMetadata.getParamType();
        Annotation[] annotations = paramMetadata.getAnnotations();
        switch (pt) {
            case HEADER:
                p = new Param();
                p.setStyle(ParamStyle.HEADER);
View Full Code Here

Examples of org.apache.wink.common.internal.registry.Injectable.ParamType

        return r;
    }

    /* package */Param buildParam(Injectable paramMetadata) {
        Param p = null;
        ParamType pt = paramMetadata.getParamType();
        Annotation[] annotations = paramMetadata.getAnnotations();
        switch (pt) {
            case HEADER:
                p = new Param();
                p.setStyle(ParamStyle.HEADER);
View Full Code Here

Examples of org.jooq.conf.ParamType

    private Field<Integer>    offsetPlusOne    = inline(1);
    private boolean           rendersParams;

    @Override
    public final void accept(Context<?> context) {
        ParamType paramType = context.paramType();
        CastMode castMode = context.castMode();

        switch (context.configuration().dialect()) {

            // True LIMIT / OFFSET support provided by the following dialects
View Full Code Here

Examples of org.jooq.conf.ParamType

    // ------------------------------------------------------------------------

    @Override
    public void accept(Context<?> ctx) {
        if (ctx instanceof RenderContext) {
            ParamType paramType = ctx.paramType();

            if (isInline(ctx))
                ctx.paramType(ParamType.INLINED);

            new DefaultBinding(getConverter(), getDataType().isLob(), getParamName()).sql(new DefaultBindingSQLContext<T>(ctx.configuration(), (RenderContext) ctx, value));
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.