Package components.commchannel

Examples of components.commchannel.CommunicationChannelGUI


        commChannel.setImage(SWTResourceManager.getImage("resources/icons/icon24x24/enable/Connection.png"));
        {
          Plugin ccPlugin = ClassManager.getInstance().getPluginByName(((Robot)component).getCommChannel().getClass().getCanonicalName());
          if (ccPlugin != null)
          {
            CommunicationChannelGUI ccGUI = (CommunicationChannelGUI) ccPlugin.makeGUInstance(((Robot)component).getCommChannel());
            Composite ccComposite = ccGUI.getStatusPannel(tabs,SWT.NONE);
            commChannel.setControl(ccComposite);
            GridData ccCompositeLData = new GridData();
            ccCompositeLData.horizontalAlignment = GridData.BEGINNING;
            ccCompositeLData.verticalAlignment = GridData.BEGINNING;
            ccCompositeLData.grabExcessHorizontalSpace = true;
View Full Code Here


        {
          CTabItem cTabCommChannel = new CTabItem(configTabs,SWT.NONE);
          cTabCommChannel.setText("Canal de Comunicaciones");
          cTabCommChannel.setImage(SWTResourceManager.getImage("resources/icons/icon32x32/enable/Connection Configuration.png"));
          {
            CommunicationChannelGUI communicationChannelGUI= (CommunicationChannelGUI)commChannel.makeGUInstance(((Robot)component).getCommChannel());
            Composite configPannelcommChannel =  communicationChannelGUI.getConfigPannel(configTabs, SWT.NONE);
            if (configPannelcommChannel != null)
            {
              // Fuerzo el layout para que se ajuste al dialogo
              GridData configPannelcommChannelLData = new GridData();
              configPannelcommChannelLData.horizontalAlignment = GridData.FILL;
View Full Code Here

         
          {
            Plugin commChannelPlugin = ClassManager.getInstance().getPluginByName(commChannel.getClass().getCanonicalName());
            if (commChannelPlugin != null)
            {
              CommunicationChannelGUI commChannelConfig = (CommunicationChannelGUI) commChannelPlugin.makeGUInstance(commChannel);
              //customPannel = commChannelConfig.getConfigPannel(customSpace,customSpace.getStyle());
              commChannelConfig.getConfigPannel(customSpace,customSpace.getStyle());
            }
           
          }
        }
        {
View Full Code Here

TOP

Related Classes of components.commchannel.CommunicationChannelGUI

Copyright © 2018 www.massapicom. 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.