home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-25 | 609 b | 24 lines |
- /*
- * Copyright 1998 Symantec Corporation, All Rights Reserved.
- */
-
- package com.symantec.itools.vcafe.openapi.beans;
-
- import java.beans.PropertyEditor;
- import com.symantec.itools.vcafe.openapi.VisualObject;
-
- //???RKM??? Should this extend from Extended Property Editor
-
- /**
- * A property editor that has access to a Visual Object
- */
- public interface VisualObjectPropertyEditor
- extends PropertyEditor
- {
- void setVisualObject(VisualObject propertysVisualObject);
- VisualObject getVisualObject();
-
- public void setObject(Object object);
- public Object getObject();
- }
-