001 package com.softnetConsult.utils;
002
003 /**
004 * This interface contains information required for documenting, building and using this library;
005 * no methods are defined.
006 *
007 * <p style="font-size:smaller;">This product includes software developed by the
008 * <strong>SoftNet-Consult Java Utility Library</strong> project and its contributors.<br />
009 * (<a href="http://java-tools.sourceforge.net" target="_blank">http://java-tools.sourceforge.net</a>)<br />
010 * Copyright (c) 2007-2008 SoftNet-Consult.<br />
011 * Copyright (c) 2007-2008 G. Paperin.<br />
012 * All rights reserved.
013 * </p>
014 * <p style="font-size:smaller;">File: APIProperties.java<br />
015 * Library API version: {@value com.softnetConsult.utils.APIProperties#apiVersion}<br />
016 * Java compliance version: {@value com.softnetConsult.utils.APIProperties#javaComplianceVersion}
017 * </p>
018 * <p style="font-size:smaller;">Redistribution and use in source and binary forms, with or
019 * without modification, are permitted provided that the following terms and conditions are met:
020 * </p>
021 * <p style="font-size:smaller;">1. Redistributions of source code must retain the above
022 * acknowledgement of the SoftNet-Consult Java Utility Library project, the above copyright
023 * notice, this list of conditions and the following disclaimer.<br />
024 * 2. Redistributions in binary form must reproduce the above acknowledgement of the
025 * SoftNet-Consult Java Utility Library project, the above copyright notice, this list of
026 * conditions and the following disclaimer in the documentation and/or other materials
027 * provided with the distribution.<br />
028 * 3. All advertising materials mentioning features or use of this software or any derived
029 * software must display the following acknowledgement:<br />
030 * <em>This product includes software developed by the SoftNet-Consult Java Utility Library
031 * project and its contributors.</em>
032 * </p>
033 * <p style="font-size:smaller;">THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY
034 * OF ANY KIND, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
035 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
036 * THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
037 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
038 * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
039 * </p>
040 * @author Greg Paperin (<a href="http://www.paperin.org" target="_blank">http://www.paperin.org</a>)
041 * @version {@value com.softnetConsult.utils.APIProperties#apiVersion}
042 */
043 public interface APIProperties {
044
045 /**
046 * Specifies the version of this SoftNet-Consult Java Utility Library distribution.
047 */
048 public static final String apiVersion = "2.02";
049
050 /**
051 * Specifies the minimum Java version for this this SoftNet-Consult Java Utility
052 * Library distribution was built.
053 */
054 public static final String javaComplianceVersion = "1.5";
055
056 } // public interface APIProperties