01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package org.terracotta.dso.views;
06:
07: import com.terracottatech.config.TcConfigDocument.TcConfig;
08:
09: public class TreeRoot {
10: public static final Object EMPTY_ROOT = new Object();
11: private TcConfig fConfig;
12:
13: public TreeRoot(TcConfig config) {
14: this .fConfig = config;
15: }
16:
17: TcConfig getRoot() {
18: return fConfig;
19: }
20: }
|