Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 545 → Rev 546

/sun/xmleditor/trunk/src/control/DTDExtensionFilter.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.5 $
* @version $Revision: 1.6 $
*
* Last modification: $Date: 2003/07/15 18:21:19 $
* $Id: DTDExtensionFilter.java,v 1.5 2003/07/15 18:21:19 smcsporr Exp $
* Last modification: $Date: 2003/07/15 18:51:46 $
* $Id: DTDExtensionFilter.java,v 1.6 2003/07/15 18:51:46 smcsporr Exp $
*/
 
package src.control;
20,7 → 20,7
*
* @author S. McSporran
*
* @version $Revision: 1.58 $ Last modification: $Date: 2003/07/15 18:31:37 $
* @version $Revision: 1.6 $ Last modification: $Date: 2003/07/15 18:51:46 $
*/
public class DTDExtensionFilter extends javax.swing.filechooser.FileFilter {
32,7 → 32,7
* author S. McSporran
* @param f: A representation of a file's name.
*
* Last revision: 11-Jul-2003
* Last revision: 11-Jul-2003 by S. McSporran
*/
public boolean accept(File f) {
61,9 → 61,12
}
 
/**
* Implementation of the abstract <code>getDescription</code> method.
* Implementation of the abstract <code>getDescription</code> method. This method
* returns a <code>String</code> with a description, what files will be passed
* through the class' filter.
*/
public String getDescription() {
return "XML grammar files (*.dtd, *.DTD)";
}
}