Skip to main content
summaryrefslogtreecommitdiffstats
blob: caf60cb519031ddd0c6c944aad4b1e136ff273dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 * IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jst.j2ee.commonarchivecore.internal.helpers;


import org.eclipse.jst.j2ee.commonarchivecore.internal.Archive;
import org.eclipse.jst.j2ee.commonarchivecore.internal.WARFile;

public class RuntimeClasspathEntryImpl implements RuntimeClasspathEntry {

	/** A single token from the Class-Path: attrbute */
	protected String manifestValue;
	/** The resolved absolute path of the entry */
	protected String absolutePath;
	/** valid only if this entry is a library in a WARFile, under WEB-INF/lib */
	protected WARFile warFile;

	protected Archive referencedArchive;

	/**
	 * Constructor for ManifestClasspathEntryImpl.
	 */
	public RuntimeClasspathEntryImpl() {
		super();
	}

	/**
	 * Gets the absolutePath.
	 * 
	 * @return Returns a String
	 */
	public String getAbsolutePath() {
		return absolutePath;
	}

	/**
	 * Sets the absolutePath.
	 * 
	 * @param absolutePath
	 *            The absolutePath to set
	 */
	public void setAbsolutePath(String absolutePath) {
		this.absolutePath = absolutePath;
	}

	/**
	 * Gets the manifestValue.
	 * 
	 * @return Returns a String
	 */
	public String getManifestValue() {
		return manifestValue;
	}

	/**
	 * Sets the manifestValue.
	 * 
	 * @param manifestValue
	 *            The manifestValue to set
	 */
	public void setManifestValue(String manifestValue) {
		this.manifestValue = manifestValue;
	}



	/**
	 * Gets the warFile.
	 * 
	 * @return Returns a WARFile
	 */
	public WARFile getWarFile() {
		return warFile;
	}

	/**
	 * Sets the warFile.
	 * 
	 * @param warFile
	 *            The warFile to set
	 */
	public void setWarFile(WARFile warFile) {
		this.warFile = warFile;
	}

	public String toString() {
		return getAbsolutePath();
	}

	public boolean equals(Object o) {
		if (o instanceof RuntimeClasspathEntry)
			return getAbsolutePath().equals(((RuntimeClasspathEntry) o).getAbsolutePath());
		return false;
	}

	public int hashCode() {
		return getAbsolutePath().hashCode();
	}


	/**
	 * @see RuntimeClasspathEntry#isWebLib()
	 */
	public boolean isWebLib() {
		return warFile != null;
	}

	/**
	 * Gets the referencedArchive.
	 * 
	 * @return Returns a Archive
	 */
	public Archive getReferencedArchive() {
		return referencedArchive;
	}

	/**
	 * Sets the referencedArchive.
	 * 
	 * @param referencedArchive
	 *            The referencedArchive to set
	 */
	public void setReferencedArchive(Archive referencedArchive) {
		this.referencedArchive = referencedArchive;
	}

}

Back to the top