Examples of FullInterfaceDescription


Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

        String defined_in_id = "IDL:Global:1.0";
        if (defined_in instanceof org.omg.CORBA.ContainedOperations)
            defined_in_id = ((org.omg.CORBA.ContainedOperations) defined_in).id();

        fullInterfaceDescription = new FullInterfaceDescription(name, id,
                defined_in_id,
                version,
                operations,
                attributes,
                base_interfaces,
View Full Code Here

Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

    private String[] getTryPullOperations()
    {
        if (tryPullOperations_ == null)
        {
            FullInterfaceDescription _fullIfDescription = interfaceDef_.describe_interface();

            for (int x = 0; x < _fullIfDescription.operations.length; ++x)
            {
                if (_fullIfDescription.operations[x].name.startsWith("try_"))
                {
View Full Code Here

Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

            {
                throw new INTF_REPOS ("attributes null!");
            }

            fullDescription =
                new FullInterfaceDescription( name,
                                              id,
                                              def_in,
                                              version,
                                              operations,
                                              attributes,
View Full Code Here

Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

        qosSettings_.addPropertySetListener(
                new String[] { OrderPolicy.value, DiscardPolicy.value }, reconfigureEventQueues_);

        try
        {
            FullInterfaceDescription interfaceDescription = getInterfaceDescription();

            validateInterface(interfaceDescription);

            messageQueueMap_ = Collections
                    .unmodifiableMap(newMessageQueueMap(interfaceDescription));
View Full Code Here

Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

        String defined_in_id = "IDL:Global:1.0";
        if (defined_in instanceof org.omg.CORBA.ContainedOperations)
            defined_in_id = ((org.omg.CORBA.ContainedOperations) defined_in).id();

        fullInterfaceDescription = new FullInterfaceDescription(name, id,
                defined_in_id,
                version,
                operations,
                attributes,
                base_interfaces,
View Full Code Here

Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

            {
                throw new INTF_REPOS ("attributes null!");
            }

            fullDescription =
                new FullInterfaceDescription( name,
                                              id,
                                              def_in,
                                              version,
                                              operations,
                                              attributes,
View Full Code Here

Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

            {
                throw new INTF_REPOS ("attributes null!");
            }

            fullDescription =
                new FullInterfaceDescription( name,
                                              id,
                                              def_in,
                                              version,
                                              operations,
                                              attributes,
View Full Code Here

Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

      String defined_in_id = "IDL:Global:1.0";
      if (defined_in instanceof org.omg.CORBA.ContainedOperations)
         defined_in_id = ((org.omg.CORBA.ContainedOperations)defined_in).id();

      fullInterfaceDescription = new FullInterfaceDescription(name, id,
                                                              defined_in_id,
                                                              version,
                                                              operations,
                                                              attributes,
                                                              base_interfaces,
View Full Code Here

Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

        qosSettings_.addPropertySetListener(
                new String[] { OrderPolicy.value, DiscardPolicy.value }, reconfigureEventQueues_);

        try
        {
            FullInterfaceDescription interfaceDescription = getInterfaceDescription();

            validateInterface(interfaceDescription);

            messageQueueMap_ = Collections
                    .unmodifiableMap(newMessageQueueMap(interfaceDescription));
View Full Code Here

Examples of org.omg.CORBA.InterfaceDefPackage.FullInterfaceDescription

    private String[] getTryPullOperations()
    {
        if (tryPullOperations_ == null)
        {
            FullInterfaceDescription _fullIfDescription = interfaceDef_.describe_interface();

            for (int x = 0; x < _fullIfDescription.operations.length; ++x)
            {
                if (_fullIfDescription.operations[x].name.startsWith("try_"))
                {
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.