コード例 #1
0
ファイル: HoopCustomJPanel.java プロジェクト: Mindtoeye/Hoop
 /**
  * Process component event.<br>
  * If the components are overlapping it resizes the parent window if required.
  *
  * @param e component event
  */
 public void processComponentEvent(ComponentEvent e) {
   if (e.getID() == ComponentEvent.COMPONENT_RESIZED && resizing_required) {
     resize_timer.restart();
   }
   super.processComponentEvent(e);
 }