01: /*
02: * Copyright (c) 2005 Your Corporation. All Rights Reserved.
03: */
04: package com.technoetic.xplanner.views;
05:
06: public interface IterationStoriesPage extends IterationPage {
07: String STORIES_ORDER_COLUMN = "stories.tableheading.order";
08: String STORIES_PRIORITY_COLUMN = "stories.tableheading.priority";
09: String STORIES_PROGRESS_COLUMN = "stories.tableheading.progress";
10: String STORIES_ESTIMATED_ORIGINAL_HOURS_COLUMN = "stories.tableheading.estimated_original_hours";
11: String STORIES_ESTIMATED_HOURS_COLUMN = "stories.tableheading.estimated_hours";
12: String STORIES_ACTUAL_HOURS_COLUMN = "stories.tableheading.actual_hours";
13: String STORIES_REMAINING_HOURS_COLUMN = "stories.tableheading.remaining_hours";
14: String STORIES_ITERATION_START_ESTIMATE_HOURS_COLUMN = "stories.tableheading.iteration_start_estimate_hours";
15: String IMPORT_STORIES_LINK = "iteration.link.import_stories";
16: String ACCURACYLINK = "iteration.link.accuracy";
17: }
|