home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-25 | 912 b | 40 lines |
- /*
- * Copyright 1998 Symantec Corporation, All Rights Reserved.
- */
-
- package com.symantec.itools.vcafe.openapi.beans;
-
- import java.beans.PropertyEditorSupport;
- import com.symantec.itools.vcafe.openapi.VisualObject;
-
- /**
- * A property editor that has access to a Visual Object
- */
- public class VisualObjectPropertyEditorSupport
- extends PropertyEditorSupport
- implements VisualObjectPropertyEditor
- {
- public void setVisualObject(VisualObject visualObject)
- {
- m_VisualObject = visualObject;
- }
-
- public VisualObject getVisualObject()
- {
- return m_VisualObject;
- }
-
- public void setObject(Object object)
- {
- m_Object = object;
- }
-
- public Object getObject()
- {
- return m_Object;
- }
-
- protected VisualObject m_VisualObject = null;
- protected Object m_Object = null;
- }
-