Package tvbrowser.ui.settings.util

Examples of tvbrowser.ui.settings.util.LineButton


      public void pluginDeactivated(PluginProxy proxy) {
        fillListbox();
      }
    });

    JButton addSeparator = new LineButton();
    addSeparator.setToolTipText(mLocalizer.msg("separator", "Add Separator"));
    addSeparator.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        int pos = mList.getList().getSelectedIndex();
        if (pos < 0) {
          pos = mList.getList().getModel().getSize();
        }
View Full Code Here

TOP

Related Classes of tvbrowser.ui.settings.util.LineButton

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.