Package org.openbp.jaspira.propertybrowser

Examples of org.openbp.jaspira.propertybrowser.PropertyBrowserEvent


    if (listener != null)
    {
      listener.componentCreated(this);
    }

    propertyBrowser.firePropertyBrowserEvent(new PropertyBrowserEvent(PropertyBrowserEvent.PROPERTY_CHANGED, this));
  }
View Full Code Here


        try
        {
          valueChanged = false;
          PropertyAccessUtil.setProperty(object, propertyName, value);

          propertyBrowser.firePropertyBrowserEvent(new PropertyBrowserEvent(PropertyBrowserEvent.PROPERTY_UPDATED, this));
        }
        catch (PropertyException e)
        {
          // Cannot access property; returning null will display a blank space
          ExceptionUtil.printTrace(e);
View Full Code Here

  /**
   * Invoked when a component gains the keyboard focus.
   */
  public void focusGained(FocusEvent e)
  {
    propertyBrowser.firePropertyBrowserEvent(new PropertyBrowserEvent(PropertyBrowserEvent.FOCUS_GAINED, this));
    highlight(true);
  }
View Full Code Here

  public void focusLost(FocusEvent e)
  {
    highlight(false);

    // Executing the focus lost action right now might create problems if some validator shows a message box or so...
    propertyBrowser.firePropertyBrowserEvent(new PropertyBrowserEvent(PropertyBrowserEvent.FOCUS_LOST, AbstractPropertyEditor.this));
  }
View Full Code Here

TOP

Related Classes of org.openbp.jaspira.propertybrowser.PropertyBrowserEvent

Copyright © 2018 www.massapicom. 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.