Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 77e52713be9d5e4bb173815e4745cc53b8c6561d (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
package org.eclipse.ua.tests.help.other;

import org.eclipse.core.expressions.IEvaluationContext;
import org.eclipse.help.ICriteria;
import org.eclipse.help.IUAElement;

public class UserCriteria implements ICriteria {
	
	private String name;
	private String value;
	private boolean enabled;

	public UserCriteria(String name, String value, boolean enabled) {
		this.name = name;
		this.value = value;
		this.enabled = enabled;
	}

	public boolean isEnabled(IEvaluationContext context) {
		return enabled;
	}

	public IUAElement[] getChildren() {
		return null;
	}

	public String getName() {
		return name;
	}

	public String getValue() {
		return value;
	}

}

Back to the top