home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-25 | 569 b | 20 lines |
- /*
- * Copyright 1998 Symantec Corporation, All Rights Reserved.
- */
-
- package com.symantec.itools.vcafe.openapi.beans;
-
- import java.awt.Component;
- import com.symantec.itools.vcafe.openapi.VisualObject;
-
- public interface DesignTimeOnClick
- {
- /**
- * Bean Descriptor attribute for design time interface.
- * Atribute value is the Class of the design time interface.
- */
- public static final String DESIGNTIME_ON_CLICK_ATTRIBUTE = "designTimeOnClick";
-
- public boolean onClick(VisualObject visualObject,Component component,int x,int y);
- }
-