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