Examples of RaisesType


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

                        ret.setIdltype(getIdlTypeName(def, retAttrNode, currentNode));
                    }
                }
                opType.setReturn(ret);
            } else if (currentNode.getNodeName().equals("corba:raises")) {
                RaisesType raises = new RaisesType();
                NamedNodeMap raiseAttributes = currentNode.getAttributes();

                for (int j = 0; j < raiseAttributes.getLength(); ++j) {
                    Node raiseAttrNode = raiseAttributes.item(j);
                    if (raiseAttrNode.getNodeName().equals("exception")) {
                        raises.setException(getIdlTypeName(def, raiseAttrNode, currentNode));
                    }
                }
                opType.getRaises().add(raises);
            }
            // anything else we are not interested in at the moment
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.