blob: db1ae7348a8e9f97def2b5145c322ff79e0d07f6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2016 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.ua.tests.help.other;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.help.ICriteria;
import org.eclipse.help.ITopic2;
import org.eclipse.help.IUAElement;
public class UserTopic2 extends UserTopic implements ITopic2 {
private List<ICriteria> criteria = new ArrayList<>();
@Override
public IUAElement[] getChildren() {
IUAElement[] criteriaElements = getCriteria();
IUAElement[] topics = getSubtopics();
IUAElement[] result = new IUAElement[criteriaElements.length + topics.length];
System.arraycopy(topics, 0, result, 0, topics.length);
System.arraycopy(criteriaElements, 0, result, topics.length, criteriaElements.length);
return result;
}
public UserTopic2(String label, String href, boolean isEnabled) {
super(label, href, isEnabled);
}
public void addCriterion(ICriteria child) {
criteria.add(child);
}
@Override
public ICriteria[] getCriteria() {
return criteria.toArray(new ICriteria[0]);
}
@Override
public String getIcon() {
return null;
}
@Override
public boolean isSorted() {
return false;
}
}