File:  [Public] / java / classes / org / w3c / tools / resources / FilenameAttribute.java
Revision 1.5: download - view: text, annotated - select for diffs
Fri Oct 18 13:42:26 2013 UTC (12 years, 2 months ago) by ylafon
Branches: MAIN
CVS tags: HEAD
generics + raw types + serializer

// 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