blob: 2619f01679c6bb0c9fd0d032bacdb5b75f12339a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc 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
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.ecl.data.internal.commands;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.rcptt.ecl.core.Command;
import org.eclipse.rcptt.ecl.data.commands.HasAttr;
import org.eclipse.rcptt.ecl.data.internal.EclDataPlugin;
import org.eclipse.rcptt.ecl.data.objects.Attribute;
import org.eclipse.rcptt.ecl.data.objects.Tree;
import org.eclipse.rcptt.ecl.runtime.ICommandService;
import org.eclipse.rcptt.ecl.runtime.IProcess;
public class HasAttrService implements ICommandService {
public IStatus service(Command command, IProcess context)
throws InterruptedException, CoreException {
HasAttr ha = (HasAttr) command;
String name = ha.getName();
EObject object = ha.getObject();
if (object instanceof Tree) {
Tree tree = (Tree) object;
boolean hasAttribute = treeHasAttr(tree, name);
context.getOutput().write(hasAttribute);
return Status.OK_STATUS;
}
return EclDataPlugin.createErr("This type of object is not supported by the command");
}
public boolean treeHasAttr(Tree tree, String name) {
boolean hasAttribute = false;
for (Attribute attr : tree.getAttributes()) {
if (attr.getName().equals(name)) {
hasAttribute = true;
break;
}
}
return hasAttribute;
}
}