Пример #1
0
 /** Free. */
 public void free() {
   if (this.getControl(DBConstants.CONTROL_TO_FREE) != null)
     if (m_bEditableControl) {
       this.getControl(DBConstants.CONTROL_TO_FREE).removeFocusListener(this);
       ((JRadioButton) this.getControl(DBConstants.CONTROL_TO_FREE)).removeActionListener(this);
       m_bEditableControl = false; // Don't remove more listeners in super
     }
   super.free();
 }
Пример #2
0
 /**
  * Constructor.
  *
  * @param model The model object for this view object.
  * @param bEditableControl Is this control editable?
  */
 public void init(ScreenComponent model, boolean bEditableControl) {
   super.init(model, bEditableControl);
 }