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

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi.beans;
  6.  
  7. import java.beans.PropertyEditor;
  8. import com.symantec.itools.vcafe.openapi.VisualObject;
  9.  
  10. //???RKM??? Should this extend from Extended Property Editor
  11.  
  12. /**
  13.  * A property editor that has access to a Visual Object
  14.  */
  15. public interface VisualObjectPropertyEditor
  16.     extends PropertyEditor
  17. {
  18.     void setVisualObject(VisualObject propertysVisualObject);
  19.     VisualObject getVisualObject();
  20.     
  21.     public void setObject(Object object);
  22.     public Object getObject();
  23. }
  24.