• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1  /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
2   *
3   * This program and the accompanying materials are made available under
4   * the terms of the Common Public License v1.0 which accompanies this distribution,
5   * and is available at http://www.eclipse.org/legal/cpl-v10.html
6   *
7   * $Id: IAppConstants.java,v 1.1.1.1.2.2 2004/07/16 23:32:03 vlad_r Exp $
8   */
9  package com.vladium.emma;
10  
11  import com.vladium.app.IAppVersion;
12  import com.vladium.jcd.lib.Types;
13  
14  // ----------------------------------------------------------------------------
15  /**
16   * @author Vlad Roubtsov, (C) 2003
17   */
18  public
19  interface IAppConstants extends IAppVersion
20  {
21      // public: ................................................................
22  
23      String APP_NAME         = "EMMA";
24      String APP_NAME_LC      = "emma";
25      String APP_COPYRIGHT    = "(C) Vladimir Roubtsov";
26      String APP_THROWABLE_BUILD_ID   = "[" + APP_NAME + " v" + APP_VERSION_WITH_BUILD_ID_AND_TAG + "]";
27      String APP_USAGE_BUILD_ID   = "[" + APP_NAME + " v" + APP_VERSION + ", build " + APP_BUILD_ID_AND_TAG + "]";
28      String APP_VERBOSE_BUILD_ID = "[" + APP_NAME + " v" + APP_VERSION + ", build " + APP_BUILD_ID_AND_TAG + " (" + APP_BUILD_DATE + ")]";
29  
30      String APP_USAGE_PREFIX = APP_NAME + " usage: ";
31  
32      String APP_PACKAGE = Types.getClassPackageName (IAppConstants.class);
33  
34      long DATA_FORMAT_VERSION    = 0x20L;
35  
36  } // end of interface
37  // ----------------------------------------------------------------------------