blob: 5a8e3bc085818c9cba433e0275dea36699b43e47 [file] [log] [blame]
/*******************************************************************************
* 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.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;
}
@Override
public boolean isEnabled(IEvaluationContext context) {
return enabled;
}
@Override
public IUAElement[] getChildren() {
return null;
}
@Override
public String getName() {
return name;
}
@Override
public String getValue() {
return value;
}
}