blob: e4da21342ce59a4c0d08f9c423545bcbf3186b19 [file] [log] [blame]
/**
* Copyright (c) 2014, 2019 Mia-Software.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Gregoire Dupe (Mia-Software) - Bug 441570 - Children custom property
*/
package org.eclipse.modisco.facet.custom.ui.internal.query;
import java.util.List;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.modisco.facet.efacet.core.IFacetManager;
import org.eclipse.modisco.facet.efacet.core.exception.DerivedTypedElementException;
import org.eclipse.modisco.facet.query.java.core.IJavaQuery2;
import org.eclipse.modisco.facet.query.java.core.IParameterValueList2;
public class ChildrenQuery implements IJavaQuery2<EObject, List<EStructuralFeature>> {
public List<EStructuralFeature> evaluate(final EObject context,
final IParameterValueList2 parameterValues,
final IFacetManager facetManager)
throws DerivedTypedElementException {
return null;
}
}