1 /* ====================================== 2 * Copyright (c) 2004-2005 Achim Nierbeck 3 * All rights reserved. 4 * 5 * You may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.gnu.org/licenses/lgpl.html 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 * ====================================== 16 */ 17 18 /* 19 * TimeTrackFormater.java 20 * $Revision: 1.3 $ 21 * Date 14.12.2005 22 * 23 * $Author: nierbeck $ 24 * $Date: 2006/02/02 21:33:07 $ 25 * 26 */ 27 28 package de.nierbeck.timeTrack.views; 29 30 import java.text.DateFormat; 31 32 /*** 33 * Formater Interface 34 * 35 * @author Achim 36 * 37 */ 38 public interface TimeTrackFormater { 39 40 /*** 41 * Time Formater 42 */ 43 public static final DateFormat TIMEFORMAT = DateFormat.getTimeInstance(); 44 45 /*** 46 * Date Formater 47 */ 48 public static final DateFormat DATEFORMAT = DateFormat.getDateInstance(); 49 50 }