01: // HttpPassDirectory.java
02: // $Id: HttpPassDirectory.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: public class HttpPassDirectory extends PassDirectory {
09:
10: public void initialize(Object values[]) {
11: super .initialize(values);
12: try {
13: registerFrameIfNone("org.w3c.jigsaw.frames.HTTPFrame",
14: "http-frame");
15: } catch (Exception ex) {
16: ex.printStackTrace();
17: }
18: }
19: }
|