blob: a276bdc834cd5d97409f67b8ff61169e71ea486c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BestSolution.at 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:
* Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation
******************************************************************************/
package org.eclipse.e4.tools.emf.ui.common;
import java.util.regex.Pattern;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
public interface IModelElementProvider {
public class Filter {
public final EClass eClass;
public final String elementId;
public final Pattern elementIdPattern;
public Filter(EClass eClass, String elementId) {
this.eClass = eClass;
this.elementId = elementId;
this.elementIdPattern = Pattern.compile(".*" + elementId.replaceAll("\\.", "\\\\.").replaceAll("\\*", ".*") + ".*"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
}
}
public interface ModelResultHandler {
public void result(EObject data);
}
public void getModelElements(Filter filter, ModelResultHandler handler);
public void clearCache();
}