User: andreas 
  Date: 00/10/24 23:19:15

  Added:       examples/tabbed.editor/src/com/madplanet/tabbedEditor/editors
                        SecondPropertyEditor.java
  Log:
  Added the new EJX/AWT example showing how to create
  and manage a simple EJX/AWT GUI and how to use AWT
  editors.
  
  Revision  Changes    Path
  1.1                  
ejx/examples/tabbed.editor/src/com/madplanet/tabbedEditor/editors/SecondPropertyEditor.java
  
  Index: SecondPropertyEditor.java
  ===================================================================
  /*
   * Copyright 1999 by dreamBean Software,
   * All rights reserved.
   */
  package com.madplanet.tabbedEditor.editors;
  
  import com.dreambean.awt.editors.TagsEditor;
  
  /**
   *   Editor to select the Second Property in a DD - editor
   *      
   *   @see DDEditor
   *   @author $Author: andreas $
   *   @version $Revision: 1.1 $
   */
  public class SecondPropertyEditor
     extends TagsEditor
  {
     // Constructors --------------------------------------------------
     public SecondPropertyEditor()
     {
        super(new String[] {"First Selection","Second Selection"},
              new Object[] {"First", "Second"});
     }
  }
  
  
  

Reply via email to