blob: 5aa402576366f5a55f7e47860206199817be0395 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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);
}
}