01: // FilenameAttribute.java
02: // $Id: FilenameAttribute.java,v 1.4 2000/08/16 21:37:55 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.resources.upgrade;
07:
08: /**
09: * The generic description of a FilenameAttribute.
10: * A file name is a String, augmented with the fact that it should be a valid
11: * file name.
12: */
13:
14: public class FilenameAttribute extends StringAttribute {
15:
16: public FilenameAttribute(String name, String def, Integer flags) {
17: super (name, def, flags);
18: this .type = "java.lang.String";
19: }
20:
21: }
|