01: /*
02: * ChainBuilder ESB
03: * Visual Enterprise Integration
04: *
05: * Copyright (C) 2006 Bostech Corporation
06: *
07: * This program is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU General Public License as published by the
09: * Free Software Foundation; either version 2 of the License, or (at your option)
10: * any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15: * for more details.
16: *
17: * You should have received a copy of the GNU General Public License along with
18: * this program; if not, write to the Free Software Foundation, Inc.,
19: * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20: *
21: *
22: * $Id$
23: */
24:
25: package com.bostechcorp.cbesb.ui.ide.classpath;
26:
27: import org.eclipse.core.runtime.IPath;
28: import org.eclipse.ui.plugin.AbstractUIPlugin;
29:
30: import com.bostechcorp.cbesb.ui.ide.Activator;
31:
32: public class J2EE14ClasspathContainer extends
33: AbstractClasspathContainer {
34: /** Description of the Field */
35: public final static String CLASSPATH_CONTAINER = ClassPathConstants.CLASSPATH_CONTAINER_PREFIX
36: + "." + J2EE14ClasspathContainer.SUFFIX;//$NON-NLS-1$
37:
38: /** Description of the Field */
39: final static String CLASSPATH_CONTAINER_NAME = "J2EE 1.4 Libraries (ChainBuilder ESB IDE)";
40:
41: public final static String DESCRIPTION = CLASSPATH_CONTAINER_NAME;
42:
43: /** Description of the Field */
44: public final static String SUFFIX = "j2ee-1.4";//ChainBuiler ESB Core Libraries->...
45:
46: /**
47: *Constructor for the J2EE14ClasspathContainer object
48: *
49: * @param path Description of the Parameter
50: */
51: public J2EE14ClasspathContainer(IPath path) {
52: super (path);
53: }
54:
55: /**
56: * Gets the description attribute of the J2EE14ClasspathContainer object
57: *
58: * @return The description value
59: */
60: public String getDescription() {
61: return DESCRIPTION;
62: }
63:
64: /**
65: * Gets the libFolder attribute of the J2EE14ClasspathContainer object
66: *
67: * @return The libFolder value
68: */
69: protected String getLibFolder() {
70: return SUFFIX;
71: }
72:
73: /**
74: * Gets the plugin attribute of the J2EE14ClasspathContainer object
75: *
76: * @return The plugin value
77: */
78: protected AbstractUIPlugin getPlugin() {
79:
80: return Activator.getDefault();
81: }
82: }
|