List of usage examples for javax.swing JButton subclass-usage
From source file Main.java
class MyButton extends JButton { public MyButton(String s) { super(s); } public boolean isFocusable() {
From source file MainClass.java
class MyButton extends JButton { public MyButton(String s) { super(s); } public boolean isFocusable() {
From source file HighlightedButton.java
/** * * @author Chet */ public class HighlightedButton extends JButton {
From source file es.emergya.ui.base.ImageButtonCell.java
/**
*
* Class that mimic the behavior of a JButton inside a JTable To use it,
* instance it just as a JButton, and set the cell renderer and editor of the
* JTable to use the ones generated by this class.
* <br>
From source file krasa.cpu.CpuUsagePanel.java
public class CpuUsagePanel extends JButton implements CustomStatusBarWidget { @NonNls public static final String WIDGET_ID = "krasa.cpu.CpuUsagePanel"; private static final String SAMPLE_STRING = "100% / 100%"; private Color systemColor;
From source file edu.ku.brc.specify.plugins.LocalityGeoRefPlugin.java
/**
* @author rod
*
* @code_status Alpha
*
* Jan 15, 2008
From source file edu.ku.brc.specify.plugins.LocalityGoogleEarthPlugin.java
/**
* Implementation of a Google Earth Export plugin for the form system.
*
* @author rod
*
* @code_status Beta
From source file TwoStopsGradient.java
/** * * @author Romain Guy */ class DepthButton extends JButton {
From source file BeanContainer.java
public class Clock extends JButton implements Customizer, Externalizable, Runnable { protected PropertyChangeSupport m_helper; protected boolean m_digital = false; protected Calendar m_calendar; protected Dimension m_preffSize;
From source file techtonic.Onview.java
class TableButton extends JButton implements TableCellRenderer, TableCellEditor { private int selectedRow; private int selectedColumn; public TableButton(String text) { super(text);