jTracer  1.03
Stack trace visualization tool
void org.libcsdbg.jtracer.Button.setEnabled ( boolean  how)

Enable or disable.

Parameters
[in]howthe new state

Definition at line 124 of file Button.java.

125  {
126  /* If it is an icon button, hide its border if it gets disabled */
127  if (!how && getIcon() != null)
128  setBorderPainted(false);
129 
130  super.setEnabled(how);
131  }