Interface PViewComponent

All Superinterfaces:
EventListener, PClientComponent, PComponent, PViewDataChangeListener
All Known Subinterfaces:
PFieldComponent
All Known Implementing Classes:
PAccountView, PExtendedServicePanel, PIAExpirationField, PIANotesPanel, PIAPanel, PIAPanelGroup, PIASimpleSearch, PIATabbedPane, PNotesPanel, PPayInfoPanel, SearchPanel

public interface PViewComponent extends PClientComponent
Deprecated.
As of Release 6.1, PViewComponent is deprecated and replaced by PAppComponent.
PViewComponent is a Swing-compatible, Portal-aware GUI component base class.

This class should be subclassed by all Portal-aware GUI components. It is the class that client-side components are derived from. The actual server logic is handled by an internal delegate.

Version:
%revision%
Author:
Larry Lynch-Freshner
  • Method Details

    • firePropertyChange

      void firePropertyChange(String prop, Object oldV, Object newV)
      Deprecated.
      Fires a property change event.
      Parameters:
      prop - the property being changed
      oldV - the old value
      newV - the new value
    • fireVetoableChange

      void fireVetoableChange(String prop, Object oldV, Object newV) throws PropertyVetoException
      Deprecated.
      Fires a vetoable property change event.
      Parameters:
      prop - the property being changed
      oldV - the old value
      newV - the new value
      Throws:
      PropertyVetoException - thrown if the proposed change represents an unacceptable value
    • getRemoteComponent

      PRemoteComponent getRemoteComponent()
      Deprecated.
      Gets a reference to the remote component for this object.
      Returns:
      A PRemoteComponent reference to the object.