Examples of removePropertyChangeListener()


Examples of com.eteks.sweethome3d.model.Wall.removePropertyChangeListener()

              addObject(group, wall, true, false);
              wall.addPropertyChangeListener(wallChangeListener);
              break;
            case DELETE :
              deleteObject(wall);
              wall.removePropertyChangeListener(wallChangeListener);
              break;
          }
          updateObjects(home.getRooms());
        }
      };
View Full Code Here

Examples of com.eviware.soapui.impl.rest.RestMethod.removePropertyChangeListener()

      restResource.getService().addPropertyChangeListener( this );
      restResource.addPropertyChangeListener( this );
    }

    if( oldMethod != null )
      oldMethod.removePropertyChangeListener( this );

    restMethod.addPropertyChangeListener( this );
    getTestRequest().setRestMethod( restMethod );
  }
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.WsdlOperation.removePropertyChangeListener()

    wsdlOperation = operation;
    requestStepConfig.setInterface( operation.getInterface().getName() );
    requestStepConfig.setOperation( operation.getName() );

    if( oldOperation != null )
      oldOperation.removePropertyChangeListener( this );

    wsdlOperation.addPropertyChangeListener( this );

    initTestRequest( this.getConfig(), false );
    testRequest.setOperation( wsdlOperation );
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.testcase.WsdlTestCase.removePropertyChangeListener()

    getModelItem().removePropertyChangeListener( WsdlRunTestCaseTestStep.TARGET_TESTCASE, this );

    WsdlTestCase targetTestCase = getModelItem().getTargetTestCase();
    if( targetTestCase != null )
    {
      targetTestCase.removePropertyChangeListener( WsdlTestCase.NAME_PROPERTY, this );
      targetTestCase.getTestSuite().removePropertyChangeListener( WsdlTestCase.NAME_PROPERTY, this );
    }

    testRunLog.release();
    if( optionsDialog != null )
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.teststeps.PropertyTransfer.removePropertyChangeListener()

    PropertyTransfer transfer = getCurrentTransfer();

    if( transfer != null )
    {
      transfer.removePropertyChangeListener( transferPropertyChangeListener );
    }

    TestPropertyHolder item = ( TestPropertyHolder )sourceStepCombo.getSelectedItem();
    if( item != null )
    {
View Full Code Here

Examples of com.eviware.soapui.model.testsuite.TestAssertion.removePropertyChangeListener()

      items.clear();

      for( int c = 0; c < assertable.getAssertionCount(); c++ )
      {
        TestAssertion assertion = assertable.getAssertionAt( c );
        assertion.removePropertyChangeListener( this );
      }

      assertable.removeAssertionsListener( this );
    }
View Full Code Here

Examples of com.eviware.soapui.ui.desktop.DesktopPanel.removePropertyChangeListener()

      if( !transferring && !desktopPanel.onClose( true ) )
      {
        return;
      }

      desktopPanel.removePropertyChangeListener( desktopPanelPropertyChangeListener );

      modelItemToInternalFrameMap.remove( desktopPanel.getModelItem() );
      internalFrameToDesktopPanelMap.remove( e.getInternalFrame() );

      // replace content frame to make sure it is released
View Full Code Here

Examples of com.munian.ivy.module.options.IvyOptions.removePropertyChangeListener()

    @Override
    protected void projectClosed() {
        IvyOptions optionsLookup = Lookup.getDefault().lookup(IvyOptions.class);
        ProjectPreferences preferences = project.getLookup().lookup(ProjectPreferences.class);
        optionsLookup.removePropertyChangeListener(preferences);
        preferences.clearListeners();
    }
}
View Full Code Here

Examples of com.salas.bb.domain.prefs.StarzPreferences.removePropertyChangeListener()

    private void uninstallModel()
    {
        final StarzPreferences starzPreferences = model.getStarzPreferences();
        final UserPreferences userPreferences = model.getUserPreferences();

        starzPreferences.removePropertyChangeListener(propertyChangeDispatcher);
        userPreferences.removePropertyChangeListener(propertyChangeDispatcher);

        navigator.setViewModel(null);
        navigator.setGuidesSet(null);
        navigator.guideSelected(null);
View Full Code Here

Examples of com.salas.bb.domain.prefs.UserPreferences.removePropertyChangeListener()

    {
        final StarzPreferences starzPreferences = model.getStarzPreferences();
        final UserPreferences userPreferences = model.getUserPreferences();

        starzPreferences.removePropertyChangeListener(propertyChangeDispatcher);
        userPreferences.removePropertyChangeListener(propertyChangeDispatcher);

        navigator.setViewModel(null);
        navigator.setGuidesSet(null);
        navigator.guideSelected(null);
        navigator.feedSelected(null);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.