home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / ActiveVisualObjectListener.java < prev    next >
Text File  |  1998-10-25  |  1KB  |  32 lines

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi;
  6.  
  7.  
  8. /**
  9.  * The listener interface for receiving notification when the active VisualObject
  10.  * in the Property Sheet has been changed.
  11.  * To be notified of changes, a plug-in implements this interface and then calls
  12.  * <code>VisualCafe.addActiveVisualObjectListener</code> to place itself on the notification list.
  13.  * When the active object in the property sheet changes, the interface's <code>activeVisualObjectChanged</code>
  14.  * method will be called.
  15.  *
  16.  * @see VisualCafe#addActiveVisualObjectListener
  17.  * @see VisualCafe#getActiveObjects
  18.  * @see VisualCafe#setActiveObjects
  19.  *
  20.  * @author Symantec Internet Tools Division
  21.  * @version 1.0
  22.  * @since VCafe 3.0
  23.  */
  24. public interface ActiveVisualObjectListener
  25. {
  26.     /**
  27.      * This method is called when the active <code>VisualObject</code> in the property sheet has been changed.
  28.      * @param visualObject the visual object currently selected.
  29.      */
  30.     public void activeVisualObjectChanged(VisualObject visualObject);
  31. }
  32.