Package composants

Examples of composants.JLabledTextField


   */
  public static void main(String[] args) {
    final JFrame f = new JFrame("test");
    f.setSize(200, 200);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JLabledTextField ltf = new JLabledTextField("izlan :");

    final JLabledNumericTextField lntf = new JLabledNumericTextField(
        "Tapez votre nombre");
    ltf.setText("premier test");
    // f.add(ltf);

    final JLabeledSpinnerNumber tn = new JLabeledSpinnerNumber("numero :",
        1, 10, 5, 1);
    f.add("North", tn);// ("North",tn);
View Full Code Here

TOP

Related Classes of composants.JLabledTextField

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.