home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
VCAFE.3.0A
/
Main.bin
/
CustomOverrideListener.java
< prev
next >
Wrap
Text File
|
1998-08-06
|
990b
|
32 lines
package com.symantec.itools.vcafe.beans;
import java.util.EventListener;
/**
* A "CustomOverride" event gets fired when the user customizer implements
* its own OK button and possibly cancel button.
*
* If the customizer does implement the cancel button, it is the customizer's
* responsiblity to restore the bean to it's original state.
*/
public interface CustomOverrideListener extends java.util.EventListener {
/**
* This method gets called when the customizer wishes to imform the container
* that the user pressed a OK button
* @param evt A CustomOverrideEvent object describing the event source
*/
void okPressed(CustomOverrideEvent evt);
/**
* This method gets called when the customizer wishes to imform the container
* that the user pressed a OK button
* @param evt A CustomOverrideEvent object describing the event source
*/
void cancelPressed(CustomOverrideEvent evt);
}