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

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi.beans;
  6.  
  7. import java.awt.Component;
  8. import com.symantec.itools.vcafe.openapi.VisualObject;
  9.  
  10. public interface DesignTimeOnClick
  11. {
  12.     /** 
  13.      * Bean Descriptor attribute for design time interface.
  14.      * Atribute value is the Class of the design time interface.
  15.      */
  16.     public static final String DESIGNTIME_ON_CLICK_ATTRIBUTE = "designTimeOnClick";
  17.     
  18.     public boolean onClick(VisualObject visualObject,Component component,int x,int y);
  19. }
  20.