01: // LanguageAttribute.java
02: // $Id: LanguageAttribute.java,v 1.3 1999/10/21 22:36:36 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: public class LanguageAttribute extends StringAttribute {
09:
10: public LanguageAttribute(String name, String def, Integer flags) {
11: super (name, def, flags);
12: this .type = "java.lang.String";
13: }
14:
15: }
|