1 /************************************************************
2 * Copyright *
3 * Portions of this software are Copyright (c) 1993 - 2002, *
4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew *
5 * - http://www.nevrona.com/Indy/ *
6 ************************************************************/
7 package org.indy;
8
9 import org.indy.util.IndyUtilities;
10
11
12 /***
13 * BaseComponent is the base class that is the ancestor for
14 * all Indy components.
15 *
16 * BaseComponent implements properties and methods that
17 * allow Indy components to access Version number information.
18 *
19 *
20 * @author OTG
21 * @version 1.0
22 */
23 public abstract class BaseComponent {
24 /***
25 * Gets the current version of Indy. This is equivalent to
26 * {@link org.indy.util.IndyUtilities#getIndyVersion()}
27 *
28 *@return The Indy version
29 *@see org.indy.util.IndyUtilities#getIndyVersion()
30 */
31 public final String getVersion() {
32 return IndyUtilities.getIndyVersion();
33 }
34 }
This page was automatically generated by Maven