コード例 #1
0
 public void componentClosed() {
   super.componentClosed();
   try {
     dObj.getWebExt().removePropertyChangeListener(this);
   } catch (IOException ex) {
     ex = null;
   }
 }
コード例 #2
0
 public void componentShowing() {
   super.componentShowing();
   if (needInit) {
     repaintView();
     needInit = false;
   }
   // view=new WSWebExtView(dObj);
   comp.setContentView(view);
   try {
     view.openPanel(dObj.getWebExt());
   } catch (java.io.IOException ex) {
     LOGGER.log(Level.INFO, null, ex);
   }
   view.checkValidity();
 }