Examples of UISWTParameterContext


Examples of org.gudy.azureus2.ui.swt.plugins.UISWTParameterContext

                }
              }
            });
      } else if ( param instanceof UIParameterImpl) {
        if (((UIParameterImpl)param).getContext() instanceof UISWTParameterContext) {
          UISWTParameterContext context = (UISWTParameterContext)((UIParameterImpl)param).getContext();
          Composite internal_composite = new Composite(current_composite, SWT.NULL);
          GridData gridData = new GridData(GridData.FILL_HORIZONTAL);
          internal_composite.setLayoutData(gridData);
          boolean initialised_component = true;
          try {context.create(internal_composite);}
          catch (Exception e) {Debug.printStackTrace(e); initialised_component = false;}
         
          if (initialised_component) {
            swt_param = new UISWTParameter(internal_composite, param.getKey());
          }
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.