Examples of addPropertyChangeListener()

  • org.netbeans.api.debugger.Breakpoint.addPropertyChangeListener()
  • org.netbeans.api.debugger.jpda.JPDABreakpoint.addPropertyChangeListener()
  • org.netbeans.api.debugger.jpda.JPDADebugger.addPropertyChangeListener()
  • org.netbeans.api.debugger.jpda.LineBreakpoint.addPropertyChangeListener()
  • org.netbeans.api.diff.DiffController.addPropertyChangeListener()
  • org.netbeans.api.java.platform.JavaPlatformManager.addPropertyChangeListener()
  • org.netbeans.api.project.ProjectInformation.addPropertyChangeListener()
  • org.netbeans.api.scala.platform.ScalaPlatform.addPropertyChangeListener()
    Registers a listener to be notified when some of the platform's properties change
  • org.netbeans.modules.php.fuel.modules.FuelPhpModule.addPropertyChangeListener()
  • org.netbeans.modules.php.wordpress.modules.WordPressModule.addPropertyChangeListener()
  • org.noos.xing.mydoggy.Content.addPropertyChangeListener()
    Adds a PropertyChangeListener to the listener list. The listener is registered for all bound properties of this class, including the following:

    If listener is null, no exception is thrown and no action is performed. @param listener the PropertyChangeListener to be added @see #getPropertyChangeListeners() @see #removePropertyChangeListener

  • org.noos.xing.mydoggy.FloatingLiveTypeDescriptor.addPropertyChangeListener()
  • org.noos.xing.mydoggy.FloatingTypeDescriptor.addPropertyChangeListener()
    Adds a PropertyChangeListener to the listener list. The listener is registered for all bound properties of this class, including the following:

    If listener is null, no exception is thrown and no action is performed. @param listener the PropertyChangeListener to be added @see #getPropertyChangeListeners() @see #removePropertyChangeListener @since 1.1.0

  • org.objectstyle.wolips.eomodeler.core.model.EODatabaseConfig.addPropertyChangeListener()
  • org.objectstyle.wolips.eomodeler.core.model.EOEntity.addPropertyChangeListener()
  • org.objectstyle.wolips.eomodeler.core.model.EOModel.addPropertyChangeListener()
  • org.objectstyle.wolips.eomodeler.core.model.EOModelGroup.addPropertyChangeListener()
  • org.objectstyle.wolips.eomodeler.core.model.EOStoredProcedure.addPropertyChangeListener()
  • org.objectstyle.wolips.eomodeler.core.utils.NotificationMap.addPropertyChangeListener()
  • org.objectstyle.wolips.wodclipse.core.woo.WooModel.addPropertyChangeListener()
  • org.open2jam.gui.ChartModelLoader.addPropertyChangeListener()
  • org.openide.explorer.ExplorerManager.addPropertyChangeListener()
  • org.openide.loaders.DataObject.addPropertyChangeListener()
  • org.openide.text.Line.addPropertyChangeListener()
  • org.openstreetmap.josm.gui.conflict.pair.nodes.NodeListMergeModel.addPropertyChangeListener()
  • org.openstreetmap.josm.gui.conflict.pair.tags.TagMergeModel.addPropertyChangeListener()
  • org.pdfsam.guiclient.commons.panels.JVisualPdfPageSelectionPanel.addPropertyChangeListener()
  • org.pentaho.reporting.designer.core.editor.ReportRenderContext.addPropertyChangeListener()
  • org.pentaho.ui.xul.containers.XulListbox.addPropertyChangeListener()
  • org.sfsoft.descargarficheros.tareas.Descarga.addPropertyChangeListener()
  • org.sleuthkit.autopsy.modules.hashdatabase.HashDbManager.HashDb.addPropertyChangeListener()
  • org.springframework.binding.form.FieldMetadata.addPropertyChangeListener()
  • org.springframework.binding.form.ValidatingFormModel.addPropertyChangeListener()
  • penny.download.AbstractDownload.addPropertyChangeListener()
    adds a PropertyChangeListener to the download @param listener
  • penny.downloadmanager.model.db.Download.addPropertyChangeListener()
  • penny.downloadmanager.model.task.TaskData.addPropertyChangeListener()
  • research.DrawingEditor.addPropertyChangeListener()
  • research.tool.Tool.addPropertyChangeListener()
  • sun.awt.AppContext.addPropertyChangeListener()
    Adds a PropertyChangeListener to the listener list for a specific property. The specified property may be one of the following:

    If listener is null, no exception is thrown and no action is performed. @param propertyName one of the property names listed above @param listener the PropertyChangeListener to be added @see #removePropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener) @see #getPropertyChangeListeners(java.lang.String) @see #addPropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener)

  • tools.common.JImageComponent.addPropertyChangeListener()
  • uk.gov.nationalarchives.droid.gui.action.ExitAction.addPropertyChangeListener()
  • uk.gov.nationalarchives.droid.gui.action.NewProfileAction.addPropertyChangeListener()
  • weka.gui.SetInstancesPanel.addPropertyChangeListener()
    Adds a PropertyChangeListener who will be notified of value changes. @param l a value of type 'PropertyChangeListener'

  • Examples of penny.downloadmanager.model.db.Download.addPropertyChangeListener()

                    case ListEvent.INSERT:
                        changeList.getReadWriteLock().readLock().lock();
                        Download d2 = (Download) changeList.get(sourceIndex);
                        changeList.getReadWriteLock().readLock().unlock();

                        d2.addPropertyChangeListener(this);
                        dao.insertDownload(d2);

                        wordSavers.put(d2, new WordSaver(d2));
                        hrefSavers.put(d2, new HrefLinkSaver(d2));
                        srcSavers.put(d2, new SrcLinkSaver(d2));
    View Full Code Here

    Examples of penny.downloadmanager.model.task.TaskData.addPropertyChangeListener()

                            break;
                        case ListEvent.INSERT:
                            changeList.getReadWriteLock().readLock().lock();
                            TaskData t2 = (TaskData) changeList.get(sourceIndex);
                            changeList.getReadWriteLock().readLock().unlock();
                            t2.addPropertyChangeListener(this);
                            saveList();
                            break;
                        case ListEvent.UPDATE:

                            break;
    View Full Code Here

    Examples of research.DrawingEditor.addPropertyChangeListener()

                    drawingEditorOld.removePropertyChangeListener(DrawingEditor.SELECTION_CHANGED, currentViewFigureSelectionChangedListener);
                    drawingEditorOld.removePropertyChangeListener(DrawingEditor.CURRENT_VIEW_CHANGED, currentViewChangeListener);
                }

                if (drawingEditorNew != null) {
                    drawingEditorNew.addPropertyChangeListener(DrawingEditor.SELECTION_CHANGED, currentViewFigureSelectionChangedListener);
                    drawingEditorNew.addPropertyChangeListener(DrawingEditor.CURRENT_VIEW_CHANGED, currentViewChangeListener);
                }

                updateState();
            }
    View Full Code Here

    Examples of research.tool.Tool.addPropertyChangeListener()

            toolAction.addPropertyChangeListener(toolActionPropertyChangeListener);
            actions.add(toolAction);

            Tool tool = (Tool) toolAction.getValue(ToolAction.TOOL);
            if (tool != null) {
                tool.addPropertyChangeListener(Tool.TOOL_DONE, toolPropertyChangeListener);
            }
        }

        public synchronized void removeToolAction(ToolAction toolAction) {
            if (!actions.contains(toolAction))
    View Full Code Here

    Examples of sun.awt.AppContext.addPropertyChangeListener()

                appContext.put(SwingWorker.class, executorService);

                // Don't use ShutdownHook here as it's not enough. We should track
                // AppContext disposal instead of JVM shutdown, see 6799345 for details
                final ExecutorService es = executorService;
                appContext.addPropertyChangeListener(AppContext.DISPOSED_PROPERTY_NAME,
                    new PropertyChangeListener() {
                        @Override
                        public void propertyChange(PropertyChangeEvent pce) {
                            boolean disposed = (Boolean)pce.getNewValue();
                            if (disposed) {
    View Full Code Here

    Examples of tools.common.JImageComponent.addPropertyChangeListener()

                "Image panel. Use one of the following to show an image:",
                "\t* Right-click to paste an image from the clipboard",
                "\t* Drag and drop an image file from local disk or another app",
                "\t* Drag and drop a URL pointing to an image" });

        imageComp.addPropertyChangeListener("selectedColor",
            new PropertyChangeListener() {
              @Override
              public void propertyChange(PropertyChangeEvent evt) {
                Color selectedImageColor = (Color) evt.getNewValue();
                JColorComponent selectedColorComp = colorSchemeComp
    View Full Code Here

    Examples of uk.gov.nationalarchives.droid.gui.action.ExitAction.addPropertyChangeListener()

            StopRunningProfilesAction stopRunningAction = new StopRunningProfilesAction(profileManager, droidContext, this);
            if (stopRunningAction.execute()) {
                ProfileSelectionDialog dialog = new SaveAllProfilesDialog(this, droidContext.allDirtyProfiles());
                final ExitAction action = new ExitAction(droidContext, dialog, profileManager);
                action.addPropertyChangeListener(new PropertyChangeListener() {
                    @Override
                    public void propertyChange(PropertyChangeEvent evt) {
                        if (STATE.equals(evt.getPropertyName()) && evt.getNewValue().equals(SwingWorker.StateValue.DONE)
                                && !action.isCancelled()) {
                           
    View Full Code Here

    Examples of uk.gov.nationalarchives.droid.gui.action.NewProfileAction.addPropertyChangeListener()

        }

        private void createDefaultProfile() {
            final NewProfileAction newProfileAction =
                new NewProfileAction(droidContext, profileManager, jProfilesTabbedPane);
            newProfileAction.addPropertyChangeListener(new PropertyChangeListener() {
                @Override
                public void propertyChange(PropertyChangeEvent evt) {
                    if (STATE.equals(evt.getPropertyName()) && evt.getNewValue().equals(SwingWorker.StateValue.DONE)) {
                        exitListeners.remove(newProfileAction);
                    }
    View Full Code Here

    Examples of weka.gui.SetInstancesPanel.addPropertyChangeListener()

          sp.setReadIncrementally(false);
          m_Summary = sp.getSummary();
          if (m_TestInstances != null) {
      sp.setInstances(m_TestInstances);
          }
          sp.addPropertyChangeListener(new PropertyChangeListener() {
      public void propertyChange(PropertyChangeEvent e) {
        m_TestInstances = sp.getInstances();
        m_TestInstances.setClassIndex(-1)// make sure that no class attribute is set!
      }
          });
    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.