Package jfix.zk

Examples of jfix.zk.ActionListener


  public TextEditor() {
    richText.setHeight((getDesktopHeight() / 3) + "px");
    plainText.setHeight((100 + getDesktopHeight() / 3) + "px");
    plainText.setWidth("100%");
    plainMode.addCheckListener(new ActionListener() {
      public void actionPerformed(Event evt) {
        updateTextMode();
      }
    });
  }
View Full Code Here


  protected abstract Button newNodeSelector(Node node);

  protected void init() {
    tree = new NodeBrowserNavigationTree();
    tree.addSelectListener(new ActionListener() {
      public void actionPerformed(Event event) {
        updateContent();
      }
    });
    grid = new Grid();
View Full Code Here

  public ScriptPropertyEditor() {
    codearea.setHeight("300px");
    codearea.setSyntax("java");
    Button execute = new Button(I18N.get("Execute"),
        Images.MediaPlaybackStart, new ActionListener() {
          public void actionPerformed(Event event) {
            executePerformed();
          }
        });
    appendChild(codearea);
View Full Code Here

  public class NodeBrowser extends AbstractNodeBrowser {
    protected Button newNodeSelector(final Node node) {
      Linkbutton button = new Linkbutton(node.getId(), JeaseSession
          .getConfig().getIcon(node));
      button.addClickListener(new ActionListener() {
        public void actionPerformed(Event event) {
          nodeSelectPerformed(node);
        }
      });
      return button;
View Full Code Here

      window.setClosable(false);
      window.setParent(getRoot());

      Editor editor = new Editor();
      editor.setObject(administrator);
      editor.addChangeListener(new ActionListener() {
        public void actionPerformed(Event evt) {
          window.close();
          redirectToLogin();
        }
      });
View Full Code Here

TOP

Related Classes of jfix.zk.ActionListener

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.