Update of /cvsroot/xdoclet/xdoclet/modules/bea/src/xdoclet/modules/bea/wls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24987/xdoclet/modules/bea/src/xdoclet/modules/bea/wls
Added Files: Version.java Log Message: extracted Version class for re-use in web package --- NEW FILE: Version.java --- /* * Copyright (c) 2001, 2002 The XDoclet team * All rights reserved. */ package xdoclet.modules.bea.wls; /** * Supported WLS versions. * * @author <a href="mailto:[EMAIL PROTECTED]">Aslak Hellesøy </a> * @author <a href="mailto:[EMAIL PROTECTED]">Jerome Bernard</a> * @created 17. juni 2002 * @version $Revision$ */ public class Version extends org.apache.tools.ant.types.EnumeratedAttribute { public final static String VERSION_6_0 = "6.0"; public final static String VERSION_6_1 = "6.1"; // Have to add support for x.x.x version numbers in ConfigTagsHandler //public final static String VERSION_6_1_2 = "6.1.2"; // NOT FULLY SUPPORTED YET public final static String VERSION_7_0 = "7.0"; public final static String VERSION_8_1 = "8.1"; /** * Gets the Values attribute of the Version object * * @return The Values value */ public java.lang.String[] getValues() { return (new java.lang.String[]{ VERSION_6_0, VERSION_6_1, VERSION_7_0, VERSION_8_1 }); } } ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ xdoclet-devel mailing list xdoclet-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xdoclet-devel