Package org.jdesktop.swingx

Examples of org.jdesktop.swingx.JXLabel


    }
    final String text = "<html>Ganteng Timesheet 1.04<br>(c) Ronald Suwandi 2010-2011. All rights reserved.</html>";
    private AboutComponent() {
      setName("About");
      setLayout(new FlowLayout(FlowLayout.LEFT));
      JXLabel icon = new JXLabel(new ImageIcon("img/icon.png"));
      JXLabel textLbl = new JXLabel(text);
      textLbl.setVerticalAlignment(JLabel.TOP);
      add(icon);
      add(textLbl);
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.swingx.JXLabel

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.