Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: cryptix/openpgp/util/PGPVersion.java


1   /* $Id: PGPVersion.java,v 1.2 2005/03/13 17:47:08 woudt Exp $
2    *
3    * Copyright (C) 1999-2005 The Cryptix Foundation Limited.
4    * All rights reserved.
5    *
6    * Use, modification, copying and distribution of this software is subject
7    * the terms and conditions of the Cryptix General Licence. You should have
8    * received a copy of the Cryptix General License along with this library;
9    * if not, you can download a copy from http://www.cryptix.org/ .
10   */
11  
12  package cryptix.openpgp.util;
13  
14  
15  /**
16   * Represents the current version. The value in here will be replaced by the
17   * build system at compile time.
18   *
19   * @author Edwin Woudt (edwin@cryptix.org)
20   * @version $Revision: 1.2 $
21   */
22  public final class PGPVersion {
23  
24      /**
25       * The version
26       */
27      public static final double VERSION = 0.123456789;
28  
29      public static final String VERSION_STRING = "Cryptix OpenPGP " +
30                                                   PGPVersion.VERSION;
31  
32      /**
33       * Prevent constructing a PGPVersion object. Static stuff only.
34       */
35      private PGPVersion() {}
36  
37  }