01: /*
02: * Copyright (c) 2006 Your Corporation. All Rights Reserved.
03: */
04:
05: /*
06: * Created by IntelliJ IDEA.
07: * User: Jacques
08: * Date: Feb 5, 2006
09: * Time: 11:26:24 PM
10: */
11: package com.technoetic.xplanner.views;
12:
13: public interface HistoryPage {
14: String EVENT_TABLE_ID = "historyEvents";
15: String CONTAINER_EVENT_TABLE_ID = "containerEvents";
16: }
|