Examples of ITarget


Examples of fr.soleil.data.target.ITarget

                interruptedReconnection = false;
                List<ConnectionParameters> toRemove = new ArrayList<ConnectionParameters>();
                for (ConnectionParameters params : badConnectionParameters) {
                    @SuppressWarnings("unchecked")
                    AbstractCometeBox<ITarget> box = (AbstractCometeBox<ITarget>) params.getBox();
                    ITarget widget = params.getWidget();
                    IKey key = params.getKey();

                    if (interruptedReconnection) {
                        break;
                    }
View Full Code Here

Examples of fr.soleil.data.target.ITarget

                        ConnectionParameters params = iterator.next();

                        @SuppressWarnings("unchecked")
                        AbstractCometeBox<ITarget> box = (AbstractCometeBox<ITarget>) params
                                .getBox();
                        ITarget widget = params.getWidget();
                        IKey key = params.getKey();

                        if (interruptedReconnection) {
                            break;
                        }
View Full Code Here

Examples of fr.soleil.data.target.ITarget

                        ConnectionParameters params = iterator.next();

                        @SuppressWarnings("unchecked")
                        AbstractCometeBox<ITarget> box = (AbstractCometeBox<ITarget>) params
                                .getBox();
                        ITarget widget = params.getWidget();
                        IKey key = params.getKey();

                        if (interruptedReconnection) {
                            break;
                        }
View Full Code Here

Examples of fr.soleil.data.target.ITarget

                            .hasNext();) {
                        ConnectionParameters params = iterator.next();

                        @SuppressWarnings("unchecked")
                        AbstractCometeBox<ITarget> box = (AbstractCometeBox<ITarget>) params.getBox();
                        ITarget widget = params.getWidget();
                        IKey key = params.getKey();

                        if (interruptedReconnection) {
                            break;
                        }
View Full Code Here

Examples of fr.soleil.data.target.ITarget

                        ConnectionParameters params = iterator.next();

                        @SuppressWarnings("unchecked")
                        AbstractCometeBox<ITarget> box = (AbstractCometeBox<ITarget>) params
                                .getBox();
                        ITarget widget = params.getWidget();
                        IKey key = params.getKey();

                        if (box.connectWidget(widget, key, false)) {
                            if (widget instanceof IComponent) {
                                IComponent iComponent = (IComponent) widget;
View Full Code Here

Examples of fr.soleil.data.target.ITarget

            ConnectionParameters params = iterator.next();
                   
            @SuppressWarnings("unchecked")
            AbstractCometeBox<ITarget> box = (AbstractCometeBox<ITarget>) params
                .getBox();
            ITarget widget = params.getWidget();
            IKey key = params.getKey();

            if (box.connectWidget(widget, key, false)) {
              if (widget instanceof IComponent){
                IComponent iComponent = (IComponent) widget;
View Full Code Here

Examples of fr.soleil.data.target.ITarget

            while (true) {
                List<ConnectionParameters> toRemove = new ArrayList<ConnectionParameters>();
                for (ConnectionParameters params : badConnectionParameters) {
                    @SuppressWarnings("unchecked")
                    AbstractCometeBox<ITarget> box = (AbstractCometeBox<ITarget>) params.getBox();
                    ITarget widget = params.getWidget();
                    IKey key = params.getKey();
                    if (interruptedReconnection) {
                        break;
                    }
                    if (box.connectWidget(widget, key, false, params.isPlugins())) {
View Full Code Here

Examples of fr.soleil.data.target.ITarget

    }

    @Override
    public <I, V extends fr.soleil.data.target.information.TargetInformation<I>> void transmitTargetChange(
            V targetInformation) {
        ITarget widget = targetInformation.getConcernedTarget();
        int confResult = JOptionPane.YES_OPTION;
        if (confirmation && widget instanceof IComponent) {
            confResult = TangoWidgetControllerInformation.executeConfirmation(
                    ((IComponent) widget),
                    targetInformation.getInformationData(),
View Full Code Here

Examples of fr.soleil.data.target.ITarget

    }

    @Override
    public <I, V extends fr.soleil.data.target.information.TargetInformation<I>> void transmitTargetChange(
            V targetInformation) {
        ITarget widget = targetInformation.getConcernedTarget();
        if (confirmation && widget instanceof IComponent) {
            TangoWidgetControllerInformation.executeConfirmation(((IComponent) widget),
                    targetInformation.getInformationData(),
                    confirmationMessage);
        }
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.