Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8e7101a7afca8d5da8c4efb09835e52280787a99 (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
/*******************************************************************************
 * Copyright (c) 2010 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.help.internal.criteria;

import org.eclipse.help.ICriteria;
import org.eclipse.help.internal.UAElement;
import org.w3c.dom.Element;

/**
 * A directive indicating the criteria information of a Toc or Topic described in xml
 *
 * @since 3.5
 */

public class Criteria extends UAElement implements ICriteria {

	public static final String NAME = "criteria"; //$NON-NLS-1$
	public static final String ATTRIBUTE_NAME = "name"; //$NON-NLS-1$
	public static final String ATTRIBUTE_VALUE = "value"; //$NON-NLS-1$

	public Criteria(ICriteria src) {
		super(NAME,src);
		setName(src.getName());
		setValue(src.getValue());
	}

	public Criteria(Element element) {
		super(element);
	}

	@Override
	public String getName() {
		return getAttribute(ATTRIBUTE_NAME);
	}

	@Override
	public String getValue() {
		return getAttribute(ATTRIBUTE_VALUE);
	}

	public void setName(String name) {
		setAttribute(ATTRIBUTE_NAME, name);
	}

	public void setValue(String value) {
		setAttribute(ATTRIBUTE_VALUE, value);
	}
}

Back to the top