blob: 0188ca8a40f34488a09c0e4d9f097105da796c27 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2008-2010 See4sys 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:
* See4sys - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.emf.explorer.actions.filters;
import org.eclipse.emf.edit.command.CommandParameter;
import org.eclipse.jface.viewers.IStructuredSelection;
public class BasicCommandParameterFilter implements ICommandParameterFilter {
@Override
public boolean accept(IStructuredSelection selection, CommandParameter commandParameter) {
return true;
}
}