View Javadoc

1   /*
2    * @(#)$Id: DefaultExplorerTreeView.java 689 2009-07-22 00:10:27Z bsigner $
3    *
4    * Author   : Ueli Kurmann, igesture@uelikurmann.ch
5    *                                   
6    *                                   
7    * Purpose  : 
8    *
9    * -----------------------------------------------------------------------
10   *
11   * Revision Information:
12   *
13   * Date       Who     Reason
14   *
15   * 23.03.2008 ukurmann  Initial Release
16   *
17   * -----------------------------------------------------------------------
18   *
19   * Copyright 1999-2009 ETH Zurich. All Rights Reserved.
20   *
21   * This software is the proprietary information of ETH Zurich.
22   * Use is subject to license terms.
23   * 
24   */
25  
26  
27  package org.ximtec.igesture.tool.explorer;
28  
29  import java.awt.Color;
30  
31  import org.ximtec.igesture.tool.explorer.core.ExplorerTreeView;
32  
33  
34  /**
35   * Default Implementation of a view. A view visualizes a node of the tree.
36   * 
37   * @author UeliKurmann
38   * @version 1.0
39   * @since igesture
40   */
41  public abstract class DefaultExplorerTreeView extends ExplorerTreeView {
42  
43     public DefaultExplorerTreeView() {
44        setOpaque(true);
45        this.setBackground(Color.white);
46        this.setForeground(Color.white);
47     }
48  
49  }