blob: 2027816c6e79a81e665c2442605b920db27c454a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 protos software gmbh (http://www.protos.de).
* 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:
* Henrik Rentz-Reichert (initial contribution)
*
*******************************************************************************/
package org.eclipse.etrice.generator.fsm.base;
/**
* An interface for a simple file filter based on path strings
*
* @author Henrik Rentz-Reichert
*/
public interface IFileFilter {
/**
* @param fname a file name (or path)
* @return <code>true</code> if the fname is accepted
*/
boolean accept(String fname);
}