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.awt.Component.addPropertyChangeListener()

      public void test(TestHarness harness)
      {
        Component c = new Button("ABC");
        harness.check(c.getPreferredSize(), new Dimension(0, 0));
        harness.check(c.isPreferredSizeSet(), false);
        c.addPropertyChangeListener(this);
        c.setPreferredSize(new Dimension(10, 20));
        harness.check(c.getPreferredSize(), new Dimension(10, 20));
        harness.check(events.size(), 1);
        PropertyChangeEvent e = (PropertyChangeEvent) events.get(0);
        harness.check(e.getPropertyName(), "preferredSize");
    View Full Code Here

    Examples of java.awt.Container.addPropertyChangeListener()

        harness.check(l2.getComponentOrientation(), ComponentOrientation.UNKNOWN);
        harness.check(l3.getComponentOrientation(), ComponentOrientation.UNKNOWN);
       
        c.addPropertyChangeListener(this);
        c1.addPropertyChangeListener(this);
        c2.addPropertyChangeListener(this);
        l1.addPropertyChangeListener(this);
        l2.addPropertyChangeListener(this);
        l3.addPropertyChangeListener(this);
        c.applyComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
        harness.check(c.getComponentOrientation(),
    View Full Code Here

    Examples of java.awt.KeyboardFocusManager.addPropertyChangeListener()

        if (editorRemover == null)
        {
          final KeyboardFocusManager fm = KeyboardFocusManager.getCurrentKeyboardFocusManager();
          editorRemover = new CellEditorRemover(fm);
          fm.addPropertyChangeListener("permanentFocusOwner", editorRemover); // NON-NLS
        }

        this.editorComponent = editorComponent;

        final float zoomFactor = getRenderContext().getZoomModel().getZoomAsPercentage();
    View Full Code Here

    Examples of java.awt.Label.addPropertyChangeListener()

        c.addPropertyChangeListener(this);
        c1.addPropertyChangeListener(this);
        c2.addPropertyChangeListener(this);
        l1.addPropertyChangeListener(this);
        l2.addPropertyChangeListener(this);
        l3.addPropertyChangeListener(this);
        c.applyComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
        harness.check(c.getComponentOrientation(),
                ComponentOrientation.LEFT_TO_RIGHT);
        harness.check(c1.getComponentOrientation(),
                ComponentOrientation.LEFT_TO_RIGHT);
    View Full Code Here

    Examples of java.awt.Toolkit.addPropertyChangeListener()

                    if (textAntialiasingHint.equals(RenderingHints.VALUE_TEXT_ANTIALIAS_OFF)) {
                        textAntialiasingHint = RenderingHints.VALUE_TEXT_ANTIALIAS_ON;
                    }

                    // Listen for changes to the property
                    toolkit.addPropertyChangeListener("awt.font.desktophints", new PropertyChangeListener() {
                        @Override
                        public void propertyChange(PropertyChangeEvent event) {
                            Platform.textAntialiasingHint = null;
                        }
                    });
    View Full Code Here

    Examples of java.beans.PropertyChangeSupport.addPropertyChangeListener()

                        AppContext.getAppContext().get(PROP_CHANGE_SUPPORT_KEY);
                if (null == pcs) {
                    pcs = new PropertyChangeSupport(source);
                    AppContext.getAppContext().put(PROP_CHANGE_SUPPORT_KEY, pcs);
                }
                pcs.addPropertyChangeListener(propertyName, listener);
            }

            @Override
            public synchronized void removePropertyChangeListener(
                    String propertyName,
    View Full Code Here

    Examples of java.beans.PropertyEditor.addPropertyChangeListener()

        System.err.println("Warning: Property \"" + name
               + "\" has non-displayabale editor.  Skipping.");
        continue;
      }
     
      editor.addPropertyChangeListener(this);

          } catch (InvocationTargetException ex) {
      System.err.println("Skipping property " + name
             + " ; exception on target: "
             + ex.getTargetException());
    View Full Code Here

    Examples of java.beans.PropertyEditorSupport.addPropertyChangeListener()

        public void testSetValue_Event() {
            PropertyEditorSupport support = new PropertyEditorSupport();
            Object source = new Object();
            support.setSource(source);
            MockPropertyChangeListener listener = new MockPropertyChangeListener();
            support.addPropertyChangeListener(listener);
           
            support.setValue(new Object());       
            PropertyChangeEvent event = listener.getEvent();
            assertNotNull(event);
            assertEquals(source, event.getSource());
    View Full Code Here

    Examples of java.beans.beancontext.BeanContextChild.addPropertyChangeListener()

                }
                catch (PropertyVetoException e) {
                    throw new IllegalStateException(e);
                }

                bcc.addPropertyChangeListener("beanContext", _childPcl);
                bcc.addVetoableChangeListener("beanContext", _childVcl);
            }

            if (publicApi) {
                if (o instanceof Visibility) {
    View Full Code Here

    Examples of java.beans.beancontext.BeanContextChildSupport.addPropertyChangeListener()

            MockPropertyChangeListener l2 = new MockPropertyChangeListener();
            String propName = "property name";
            Object oldValue = new Integer(1);
            Object newValue = new Integer(5);

            support.addPropertyChangeListener(propName, l1);
            support.addPropertyChangeListener(propName, l2);
            l1.clearLastEvent();
            l2.clearLastEvent();
            support.firePropertyChange(propName, oldValue, newValue);
            assertEquals(propName, l1.lastEvent.getPropertyName());
    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.