Examples of removePropertyChangeListener()


Examples of org.eclipse.ui.themes.ITheme.removePropertyChangeListener()

    @Override
    protected void dispose() {
        if (!disposed) {
            disposed = true;
            ITheme theme = PlatformUI.getWorkbench().getThemeManager().getCurrentTheme();
            theme.removePropertyChangeListener(this);
            super.dispose();
        }
    }

    private void setConsoleFont() {
View Full Code Here

Examples of org.jbpm.ui.common.model.Swimlane.removePropertyChangeListener()

    @Override
    public void deactivate() {
        if (isActive()) {
            Swimlane swimlane = getSwimlane();
            if (swimlane != null) {
                swimlane.removePropertyChangeListener(this);
            }
            super.deactivate();
        }
    }
View Full Code Here

Examples of org.jfree.chart.plot.Crosshair.removePropertyChangeListener()

        }
        List crosshairs = getDomainCrosshairs();
        for (int i = 0; i < crosshairs.size(); i++) {
            Crosshair c = (Crosshair) crosshairs.get(i);
            this.xCrosshairs.remove(c);
            c.removePropertyChangeListener(this);
        }
        fireOverlayChanged();
    }

    /**
 
View Full Code Here

Examples of org.jgraph.JGraph.removePropertyChangeListener()

        // Removes listeners from the previous graph
        if (oldValue != null && sourceGraph != oldValue) {
          oldValue.getModel().removeGraphModelListener(this);
          oldValue.getGraphLayoutCache()
              .removeGraphLayoutCacheListener(this);
          oldValue.removePropertyChangeListener(this);
          JScrollPane scrollPane = getParentScrollPane(oldValue);
          if (scrollPane != null) {
            scrollPane.removeComponentListener(componentListener);
            scrollPane.getVerticalScrollBar()
                .removeAdjustmentListener(this);
View Full Code Here

Examples of org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.utils.TreeComponent.removePropertyChangeListener()

    }

    private void removeTreeListener() {
        if (treeListener != null) {
            TreeComponent tree = getTreeComponent(page.getTreeMapper());
            tree.removePropertyChangeListener(TreeComponent.SHOW_DATA_NODES_ONLY, treeListener);
        }
    }

}
View Full Code Here

Examples of org.jitterbit.integration.data.entity.EmailMessage.removePropertyChangeListener()

            email.addValidationListener(this);
        }

        public void dispose() {
            EmailMessage email = getDataObject().getActivity();
            email.removePropertyChangeListener(EmailMessage.PROPERTY_NAME, this);
            email.removeValidationListener(this);
        }
    }
}
View Full Code Here

Examples of org.jitterbit.integration.data.entity.IntegrationEntity.removePropertyChangeListener()

    @Override
    public void dispose() {
        for (int n = 0, rows = getRowCount(); n < rows; ++n) {
            IntegrationEntity e = (IntegrationEntity) getValueAt(n, 0);
            e.removePropertyChangeListener(IntegrationEntity.PROPERTY_NAME, entityListener);
            e.removeValidationListener(entityListener);
        }
    }

    @Override
View Full Code Here

Examples of org.jitterbit.integration.data.entity.Transformation.removePropertyChangeListener()

        super.prepareForRemoval(window);
    }

    private void uninstallNodeFilterListener() {
        Transformation tx = getObject();
        tx.removePropertyChangeListener(Transformation.INPUT_NODE_FILTER, nodeFilterChangeHandler);
        tx.removePropertyChangeListener(Transformation.OUTPUT_NODE_FILTER, nodeFilterChangeHandler);
    }

    private void removeUncommitedDataElements() {
        Transformation tf = getObject();
View Full Code Here

Examples of org.jitterbit.integration.data.structure.DataStructure.removePropertyChangeListener()

        DataStructure old;
        synchronized (getDataLock()) {
            old = getInputStructure();
            // TODO: Compare the old with the new. If equal, do not apply
            if (old != null) {
                old.removePropertyChangeListener(inputStructureListener);
            }
            DataStructureType type = struct.getStructureType();
            if (type == DataStructureType.XML) {
                // The XML structure info is stored directly in the
                // TransformationsTab --> use the key-value pairs
View Full Code Here

Examples of org.locationtech.udig.printing.model.Box.removePropertyChangeListener()

            return;
        }
        super.deactivate();
        Box box = ((Box) getModel());
        box.eAdapters().remove(this.listener);
        box.removePropertyChangeListener(listener);
    }
   
    @Override
  public Object getAdapter(Class key) {
      Box box = ((Box) getModel());
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.