01: package com.technoetic.xplanner.importer.spreadsheet;
02:
03: /*
04: * $Header$
05: * $Revision: 540 $
06: * $Date: 2005-06-07 07:03:50 -0500 (Tue, 07 Jun 2005) $
07: *
08: * Copyright (c) 1999-2002 Jacques Morel. All rights reserved.
09: * Released under the Apache Software License, Version 1.1
10: */
11:
12: public interface CookbookFields {
13: int TITLE_COL = 4;
14: int STATUS_COL = 9;
15: int ESTIMATE_NUMBER_COL = 5;
16: int STORY_END_DATE_COL = 7;
17: int STORY_PRIORITY_COL = 0;
18: }
|