package net.sf.latexdraw.res2po; import java.io.File; import java.io.FileFilter; /** * This file is part of LaTeXDraw.<br> * Copyright (c) 2005-2011 Arnaud BLOUIN<br> * <br> * LaTeXDraw is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later version. * <br> * LaTeXDraw is distributed without any warranty; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details.<br> * <br> * @author Arnaud BLOUIN */ public class PoFilter implements FileFilter { @Override public boolean accept(final File pathname) { return pathname==null ? false : pathname.getPath().endsWith(".po"); } }