KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > terracotta > dso > views > TreeRoot


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
3  * notice. All rights reserved.
4  */

5 package org.terracotta.dso.views;
6
7 import com.terracottatech.config.TcConfigDocument.TcConfig;
8
9 public class TreeRoot {
10   public static final Object JavaDoc EMPTY_ROOT = new Object JavaDoc();
11   private TcConfig fConfig;
12
13   public TreeRoot(TcConfig config) {
14     this.fConfig = config;
15   }
16
17   TcConfig getRoot() {
18     return fConfig;
19   }
20 }
21
Popular Tags