Examples of GUICombo


Examples of org.jpedal.examples.simpleviewer.gui.generic.GUICombo

  /* (non-Javadoc)
   * @see org.jpedal.examples.simpleviewer.gui.swing.GUIFactory#addCombo(java.lang.String, java.lang.String, int)
   */
  public void addCombo(String title,String tooltip,int ID){

    GUICombo combo=null;
    switch (ID){
    case Commands.SCALING:
      combo=scalingBox;
      break;
    case Commands.ROTATION:
      combo=rotationBox;
      break;

    }

    combo.setID(ID);

    optimizationLabel = new JLabel(title);
    if(tooltip.length()>0)
      combo.setToolTipText(tooltip);


        //<start-wrap>
        /**
        //<end-wrap>
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.