Examples of IdlDefn


Examples of org.apache.yoko.tools.common.idltypes.IdlDefn

    }

    public void createIdlAttribute(org.apache.schemas.yoko.bindings.corba.OperationType opType, String name) {
        String attrNm = name.substring(5, name.length());
        IdlAttribute attr;
        IdlDefn idlDef = intf.lookup(attrNm);

        if (idlDef == null) {
            if (name.startsWith("_get_")) {
                ArgType t = opType.getReturn();
                attr = IdlAttribute.create(intf, attrNm,
View Full Code Here

Examples of org.apache.yoko.tools.common.idltypes.IdlDefn

            if (CorbaUtils.isTimeBaseDef(local)) {
                root.addInclude("<omg/TimeBase.idl>");
            }

            String name[] = unscopeName(local);
            IdlDefn defn = root.lookup(name);           
           
            if (defn != null) {
                if (defn instanceof IdlType) {
                    return (IdlType)defn;
                } else {
View Full Code Here

Examples of org.apache.yoko.tools.common.idltypes.IdlDefn

        }
        return idlType;
    }
   
    protected IdlType createPrimitiveType(QName idlType, String name) throws Exception {
        IdlDefn result = root.lookup(name);

        if (result == null) {
            // MessageDef msg = WSDLToCorbaMessages.IDL_TYPE_NOT_FOUND;
            // throw new Exception(msg.getLocalMessage(new Object[]{idlType}));
        } else if (!(result instanceof IdlType)) {
View Full Code Here

Examples of org.apache.yoko.tools.common.idltypes.IdlDefn

        String dotScopedName = "";

        for (int i = 0; i < name.length - 1; ++i) {
            dotScopedName += name[i];

            IdlDefn idlDef = scope.lookup(name[i]);

            if (idlDef == null) {
                // Before creating module, check to see if a Corba type
                // represent this name aleady exists.
                // For example if type is a.b.c and we are about to create
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.