Package jcurses.widgets

Examples of jcurses.widgets.Label


  public Message(String title, String text, String buttonLabel) {
    super(getWidth(text, title)+4, getHeight(text)+7,true,title);
   
    DefaultLayoutManager manager = (DefaultLayoutManager)getRootPanel().getLayoutManager();
   
    _label = new Label(text);
    _button = new Button(buttonLabel);
    _title = title;
   
    _button.addListener(this);
   
View Full Code Here

TOP

Related Classes of jcurses.widgets.Label

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.