Package limelight.builtin.players

Source Code of limelight.builtin.players.TextArea

package limelight.builtin.players;

import limelight.ui.events.panel.PanelEvent;
import limelight.ui.model.PropPanel;
import limelight.ui.model.inputs.TextAreaPanel;

public class TextArea
{
  public void install(PanelEvent event)
  {
    TextAreaPanel input = new TextAreaPanel();
    final PropPanel panel = (PropPanel)event.getRecipient();
    panel.add(input);
  }
}
TOP

Related Classes of limelight.builtin.players.TextArea

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.