Package components.features

Examples of components.features.FeatureGUI


            {
              Plugin plugin = ClassManager.getInstance().getPluginByName(((Robot)component).getFeatures()[i].getClass().getCanonicalName());

              if (plugin != null)
              {
                FeatureGUI featureGUI = (FeatureGUI)plugin.makeGUInstance(((Robot)component).getFeatures()[i]);
                featureStatus =  featureGUI.getStatusPannel( sensorComposite, sensorComposite.getStyle());
                 
                //Fuerzo layout
                GridData featureStatusLData = new GridData();
                featureStatusLData.horizontalAlignment = GridData.FILL;
                featureStatusLData.verticalAlignment = GridData.FILL;
View Full Code Here


            if (feature != null)
            {
              cTabItem1 = new CTabItem(featureTabs, SWT.NONE);
              cTabItem1.setText( ((Robot)component).getFeatures()[i].getDescription() );
              {
                FeatureGUI featureGUI = (FeatureGUI)feature.makeGUInstance(((Robot)component).getFeatures()[i]);
                configPannelFeature = featureGUI.getConfigPannel( featureTabs, featureTabs.getStyle());
               
                if (configPannelFeature != null)
                {
                  //Fuerzo el layout que trae el feature para qeu se ajuste al diaogo
                  GridData configPannelFeatureLData = new GridData();
View Full Code Here

TOP

Related Classes of components.features.FeatureGUI

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.