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 java.beans.beancontext.BeanContextSupport.addPropertyChangeListener()

       * See bug parade entry 4295174
       */
      public void test(TestHarness harness)
      {
        BeanContextSupport bcs = new BeanContextSupport();
        bcs.addPropertyChangeListener("designTime", this);
        harness.check(bcs.isDesignTime(), false);
        bcs.setDesignTime(true);
        harness.check(lastEvent, null);
        bcs.addPropertyChangeListener("designMode", this);
        bcs.setDesignTime(false);
    View Full Code Here

    Examples of java.util.logging.LogManager.addPropertyChangeListener()

                        }
                        rootLogger.warning("java.util.logging has been reset by application or component");
                    }
                });
               
                manager.addPropertyChangeListener(logManagerChangeListener);
            }
        }

        private <T> T getService(BundleContext context, Class<T> name) {
            ServiceReference ref = context.getServiceReference(name.getName());
    View Full Code Here

    Examples of javax.accessibility.AccessibleContext.addPropertyChangeListener()

        harness.check(av.getCurrentAccessibleValue(), new Integer(50));
        harness.check(av.getMinimumAccessibleValue(), new Integer(10));
        harness.check(av.getMaximumAccessibleValue(), new Integer(85));
       
        // check that setting the accessible value updates the slider
        ac.addPropertyChangeListener(this);
        boolean b = av.setCurrentAccessibleValue(new Integer(55));
        harness.check(scrollBar.getValue(), 55);
        harness.check(b);
        harness.check(events.size(), 1);
        PropertyChangeEvent e0 = (PropertyChangeEvent) events.get(0);
    View Full Code Here

    Examples of javax.swing.AbstractAction.addPropertyChangeListener()

              startButton.setSelected(stopTutorial.isEnabled());
            }
          };

        startTutorial.addPropertyChangeListener(pcl);
        stopTutorial.addPropertyChangeListener(pcl);

        pluginRegistry.addPluginListener(
          new PluginListener() {
            public void pluginStarted(PluginEvent e) {
            }
    View Full Code Here

    Examples of javax.swing.AbstractButton.addPropertyChangeListener()

      }

      public void test(TestHarness harness)
      {
        AbstractButton b = new JButton("ABC");
        b.addPropertyChangeListener(this);
        b.setVerticalTextPosition(SwingConstants.TOP);
        harness.check(b.getVerticalTextPosition(), SwingConstants.TOP);
        PropertyChangeEvent e = (PropertyChangeEvent) events.get(0);
        harness.check(e.getSource(), b);
        harness.check(e.getPropertyName(), "verticalTextPosition");
    View Full Code Here

    Examples of javax.swing.Action.addPropertyChangeListener()

              startButton.setSelected(stopTutorial.isEnabled());
            }
          };

        startTutorial.addPropertyChangeListener(pcl);
        stopTutorial.addPropertyChangeListener(pcl);

        pluginRegistry.addPluginListener(
          new PluginListener() {
            public void pluginStarted(PluginEvent e) {
            }
    View Full Code Here

    Examples of javax.swing.FocusManager.addPropertyChangeListener()

        headerLabel.setBorder(BorderFactory.createEmptyBorder(insets.top, insets.left, insets.bottom, insets.right));
        add(headerLabel, BorderLayout.CENTER);

        final FocusManager currentManager = FocusManager.getCurrentManager();
        target = new FocusManagerChangeHandler();
        currentManager.addPropertyChangeListener(PERMANENT_FOCUS_OWNER, target);
      }

      public void setFocused(final boolean b)
      {
        if (b == false)
    View Full Code Here

    Examples of javax.swing.JButton.addPropertyChangeListener()

                //Background color
                VizModel vizModel = VizController.getInstance().getVizModel();
                final JButton backgroundColorButton = new JColorButton(vizModel.getBackgroundColor());
                backgroundColorButton.setToolTipText(NbBundle.getMessage(VizBarController.class, "VizToolbar.Global.background"));
                backgroundColorButton.addPropertyChangeListener(JColorButton.EVENT_COLOR, new PropertyChangeListener() {

                    public void propertyChange(PropertyChangeEvent evt) {
                        VizModel vizModel = VizController.getInstance().getVizModel();
                        vizModel.setBackgroundColor(((JColorButton) backgroundColorButton).getColor());
                    }
    View Full Code Here

    Examples of javax.swing.JColorChooser.addPropertyChangeListener()

        public static void main(String[] args) {
            JColorChooser chooser = new JColorChooser(COLOR);
            JDialog dialog = Test4177735.show(chooser);

            PropertyChangeListener listener = new Test4234761();
            chooser.addPropertyChangeListener("color", listener); // NON-NLS: property name

            JTabbedPane tabbedPane = (JTabbedPane) chooser.getComponent(0);
            tabbedPane.setSelectedIndex(1); // HSB tab index

            if (!chooser.getColor().equals(COLOR)) {
    View Full Code Here

    Examples of javax.swing.JComboBox.addPropertyChangeListener()

        JComboBox c = new JComboBox();
        c.setEditable(false);
        harness.check(c.isEditable(), false);
       
        // now check property change events
        c.addPropertyChangeListener(this);
       
        c.setEditable(true);
        harness.check(c.isEditable(), true);
        harness.check(event.getPropertyName(), "editable");
        harness.check(event.getOldValue(), Boolean.FALSE);
    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.