Skip to main content
summaryrefslogtreecommitdiffstats
blob: 092e80054238da5489c439bc9ba7cc07d9125582 (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
/***************************************************************************************************
 * Copyright (c) 2003, 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.internal.web.operations;



public class TemplateData {
	protected java.lang.String wtFileName = "";//$NON-NLS-1$
	protected java.lang.String wtCSSName = "";//$NON-NLS-1$
	protected java.lang.String wtContainerLocatoin = "";//$NON-NLS-1$
	protected java.lang.String taglibs;

	/**
	 * TemplateData constructor comment.
	 */
	public TemplateData() {
		super();
	}

	/**
	 */
	public String getContainerLocatoin() {
		return wtContainerLocatoin;
	}

	/**
	 * Insert the method's description here. Creation date: (6/4/2001 5:24:30 PM)
	 * 
	 * @return java.lang.String
	 */
	public java.lang.String getCSSName() {
		return wtCSSName;
	}

	/**
	 * Insert the method's description here. Creation date: (6/4/2001 5:22:56 PM)
	 * 
	 * @return java.lang.String
	 */
	public String getFileName() {
		return wtFileName;
	}

	/**
	 * Insert the method's description here. Creation date: (11/15/2001 4:16:10 PM)
	 * 
	 * @return java.lang.String
	 */
	public java.lang.String getTaglibs() {
		return taglibs;
	}

	/**
	 */
	public void setContainerLocatoin(String newFileName) {
		wtContainerLocatoin = newFileName;
	}

	/**
	 * Insert the method's description here. Creation date: (6/4/2001 5:24:30 PM)
	 * 
	 * @param newCSSName
	 *            java.lang.String
	 */
	public void setCSSName(java.lang.String newCSSName) {
		wtCSSName = newCSSName;
	}

	/**
	 * Insert the method's description here. Creation date: (6/4/2001 5:22:56 PM)
	 * 
	 * @param newWtFileName
	 *            java.lang.String
	 */
	public void setFileName(String newFileName) {
		wtFileName = newFileName;
	}

	/**
	 * Insert the method's description here. Creation date: (11/15/2001 4:16:10 PM)
	 * 
	 * @param newTaglibs
	 *            java.lang.String
	 */
	public void setTaglibs(java.lang.String newTaglibs) {
		taglibs = newTaglibs;
	}
}

Back to the top