// FilenameAttribute.java
// $Id: FilenameAttribute.java,v 1.5 2013/10/18 13:42:26 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.tools.resources;
/**
* The generic description of a FilenameAttribute.
* A file name is a String, augmented with the fact that it should be a valid
* file name.
*/
public class FilenameAttribute extends StringAttribute {
private static final long serialVersionUID = -6144923334191272161L;
public FilenameAttribute(String name, Object def, int flags) {
super(name, (String) def, flags);
this.type = "java.lang.String".intern();
}
public FilenameAttribute() {
super();
}
}
Webmaster