001: /* ====================================================================
002: * Tea - Copyright (c) 1997-2000 Walt Disney Internet Group
003: * ====================================================================
004: * The Tea Software License, Version 1.1
005: *
006: * Copyright (c) 2000 Walt Disney Internet Group. All rights reserved.
007: *
008: * Redistribution and use in source and binary forms, with or without
009: * modification, are permitted provided that the following conditions
010: * are met:
011: *
012: * 1. Redistributions of source code must retain the above copyright
013: * notice, this list of conditions and the following disclaimer.
014: *
015: * 2. Redistributions in binary form must reproduce the above copyright
016: * notice, this list of conditions and the following disclaimer in
017: * the documentation and/or other materials provided with the
018: * distribution.
019: *
020: * 3. The end-user documentation included with the redistribution,
021: * if any, must include the following acknowledgment:
022: * "This product includes software developed by the
023: * Walt Disney Internet Group (http://opensource.go.com/)."
024: * Alternately, this acknowledgment may appear in the software itself,
025: * if and wherever such third-party acknowledgments normally appear.
026: *
027: * 4. The names "Tea", "TeaServlet", "Kettle", "Trove" and "BeanDoc" must
028: * not be used to endorse or promote products derived from this
029: * software without prior written permission. For written
030: * permission, please contact opensource@dig.com.
031: *
032: * 5. Products derived from this software may not be called "Tea",
033: * "TeaServlet", "Kettle" or "Trove", nor may "Tea", "TeaServlet",
034: * "Kettle", "Trove" or "BeanDoc" appear in their name, without prior
035: * written permission of the Walt Disney Internet Group.
036: *
037: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
038: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
039: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
040: * DISCLAIMED. IN NO EVENT SHALL THE WALT DISNEY INTERNET GROUP OR ITS
041: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
042: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
043: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
044: * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
045: * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
046: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
047: * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
048: * ====================================================================
049: *
050: * For more information about Tea, please see http://opensource.go.com/.
051: */
052:
053: package com.go.tea;
054:
055: import java.util.Date;
056:
057: public final class PackageInfo {
058: // The following fields are automatically assigned by PackageInfoCreator.
059: private static final String BASE_DIRECTORY = null;
060: private static final String REPOSITORY = null;
061: private static final String USERNAME = null;
062: private static final String BUILD_MACHINE = null;
063: private static final String GROUP = null;
064: private static final String PROJECT = null;
065: private static final String BUILD_LOCATION = null;
066: private static final String PRODUCT = "Tea";
067: private static final String PRODUCT_VERSION = "3.2.x";
068: private static final String BUILD_NUMBER = null;
069: private static final Date BUILD_DATE = null;
070:
071: /**
072: * Prints all the PackageInfo properties to standard out.
073: */
074: public static void main(String[] args) {
075: System.out.println("Base Directory: " + getBaseDirectory());
076: System.out.println("Repository: " + getRepository());
077: System.out.println("Username: " + getUsername());
078: System.out.println("Build Machine: " + getBuildMachine());
079: System.out.println("Group: " + getGroup());
080: System.out.println("Project: " + getProject());
081: System.out.println("Build Location: " + getBuildLocation());
082: System.out.println("Product: " + getProduct());
083: System.out.println("Product Version: " + getProductVersion());
084: System.out.println("Build Number: " + getBuildNumber());
085: System.out.println("Build Date: " + getBuildDate());
086: System.out.println();
087: System.out.println("Specification Title: "
088: + getSpecificationTitle());
089: System.out.println("Specification Version: "
090: + getSpecificationVersion());
091: System.out.println("Specification Vendor: "
092: + getSpecificationVendor());
093: System.out.println("Implementation Title: "
094: + getImplementationTitle());
095: System.out.println("Implementation Version: "
096: + getImplementationVersion());
097: System.out.println("Implementation Vendor: "
098: + getImplementationVendor());
099: }
100:
101: public static String getSpecificationTitle() {
102: return PRODUCT;
103: }
104:
105: public static String getSpecificationVersion() {
106: return PRODUCT_VERSION;
107: }
108:
109: public static String getSpecificationVendor() {
110: return "WDIG";
111: }
112:
113: public static String getImplementationTitle() {
114: return PRODUCT;
115: }
116:
117: public static String getImplementationVersion() {
118: if (BUILD_NUMBER != null) {
119: if (getSpecificationVersion() != null) {
120: return getSpecificationVersion() + '.' + BUILD_NUMBER;
121: } else {
122: return BUILD_NUMBER;
123: }
124: } else {
125: return getSpecificationVersion();
126: }
127: }
128:
129: public static String getImplementationVendor() {
130: if (GROUP != null) {
131: return getSpecificationVendor() + ' ' + GROUP;
132: } else {
133: return getSpecificationVendor();
134: }
135: }
136:
137: public static String getBaseDirectory() {
138: return BASE_DIRECTORY;
139: }
140:
141: public static String getRepository() {
142: return REPOSITORY;
143: }
144:
145: public static String getUsername() {
146: return USERNAME;
147: }
148:
149: public static String getBuildMachine() {
150: return BUILD_MACHINE;
151: }
152:
153: public static String getGroup() {
154: return GROUP;
155: }
156:
157: public static String getProject() {
158: return PROJECT;
159: }
160:
161: public static String getBuildLocation() {
162: return BUILD_LOCATION;
163: }
164:
165: public static String getProduct() {
166: return PRODUCT;
167: }
168:
169: public static String getProductVersion() {
170: return PRODUCT_VERSION;
171: }
172:
173: public static String getBuildNumber() {
174: return BUILD_NUMBER;
175: }
176:
177: public static Date getBuildDate() {
178: return BUILD_DATE;
179: }
180: }
|