01: // PasswordEditor.java
02: // $Id: PasswordEditor.java,v 1.3 2000/08/16 21:37:44 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.jigsaw.resources;
07:
08: import org.w3c.tools.resources.FramedResource;
09:
10: public class PasswordEditor extends FramedResource {
11:
12: public void initialize(Object values[]) {
13: super .initialize(values);
14: try {
15: registerFrameIfNone(
16: "org.w3c.jigsaw.resources.PasswordEditorFrame",
17: "passwd-frame");
18: } catch (Exception ex) {
19: ex.printStackTrace();
20: }
21: }
22:
23: }
|