Interface com.symantec.itools.vcafe.openapi.plugin.PlugInListenerDelegate
All Packages  Class Hierarchy  This Package  Previous  Next  Index
  Interface com.symantec.itools.vcafe.openapi.plugin.PlugInListenerDelegate
  -  public interface PlugInListenerDelegate
 
A PlugInUI can implement this interface if it wants to intercept
 listener additions to the parent frame of the plugin view.
 If the parent frame finds an instance of this interface in
 it's children, the appropreate method of this interface will
 be called.  
 NOTE: The Component that is returned from PlugInView.getPlugInUI(),
 or one of it's children Components should be the Component to
 implement this interface, or else the delegate will not be located.
  -  Version:
  
 -  1.0 4/29/98
  
 -  Author:
  
 -  Levi Brown, Renu Janjam, Symantec
    
 -  See Also:
    
 -  getPlugInUI()
 
  
  -  
	addComponentListenerDelegate(ComponentListener)
   -   Gets delegated requests from the framework for adding a ComponentListener
 to the given JWEmbeddedFrame.
  
 -  
	addMouseListenerDelegate(MouseListener)
   -   Gets delegated requests from the framework for adding a MouseListener
 to the given JWEmbeddedFrame.
  
 -  
	addMouseMotionListenerDelegate(MouseMotionListener)
   -   Gets delegated requests from the framework for adding a MouseMotionListener
 to the given JWEmbeddedFrame.
  
 -  
	addWindowListenerDelegate(WindowListener)
   -   Gets delegated requests from the framework for adding a WindowListener
 to the given JWEmbeddedFrame.
 
  
addComponentListenerDelegate
public abstract boolean addComponentListenerDelegate(ComponentListener listener)
  -  Gets delegated requests from the framework for adding a ComponentListener
 to the given JWEmbeddedFrame.
  
 
 
    -  Parameters:
    
 -  listener - the MouseListener that wishes to be added to the listener
 list for the given WEmbeddedFrame.
    
 -  Returns:
    
 -  true if this delegated function handled the addition of the listner,
 false if the addition should be handled by the JWEmbeddedFrame.
  
 
 
 
addMouseListenerDelegate
public abstract boolean addMouseListenerDelegate(MouseListener listener)
  -  Gets delegated requests from the framework for adding a MouseListener
 to the given JWEmbeddedFrame.
  
 
 
    -  Parameters:
    
 -  listener - the MouseListener that wishes to be added to the JWEmbeddedFrame
 this PlugInView.
    
 -  Returns:
    
 -  true if this delegated function handled the addition of the listner,
 false if the addition should be handled by the JWEmbeddedFrame.
  
 
 
 
addMouseMotionListenerDelegate
public abstract boolean addMouseMotionListenerDelegate(MouseMotionListener listener)
  -  Gets delegated requests from the framework for adding a MouseMotionListener
 to the given JWEmbeddedFrame.
  
 
 
    -  Parameters:
    
 -  listener - the MouseListener that wishes to be added to the listener
 list for the given WEmbeddedFrame.
    
 -  Returns:
    
 -  true if this delegated function handled the addition of the listner,
 false if the addition should be handled by the JWEmbeddedFrame.
  
 
 
 
addWindowListenerDelegate
public abstract boolean addWindowListenerDelegate(WindowListener listener)
  -  Gets delegated requests from the framework for adding a WindowListener
 to the given JWEmbeddedFrame.
  
 
 
    -  Parameters:
    
 -  listener - the WindowListener that wishes to be added to the listener
 list for the given WEmbeddedFrame.
    
 -  Returns:
    
 -  true if this delegated function handled the addition of the listner,
 false if the addition should be handled by the JWEmbeddedFrame.
  
 
 
 
All Packages  Class Hierarchy  This Package  Previous  Next  Index