01: /*
02: * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: //
07: package com.sun.portal.ffj.loaders;
08:
09: //
10: import java.io.IOException;
11: import java.util.Enumeration;
12:
13: import org.netbeans.modules.web.debug.JspDataObjectIE;
14: import org.netbeans.modules.web.debug.JspLoaderIE;
15:
16: import org.openide.filesystems.FileObject;
17: import org.openide.filesystems.FileUtil;
18: import org.openide.loaders.*;
19: import org.openide.util.NbBundle;
20:
21: import com.sun.portal.ffj.util.PSFormat;
22:
23: //
24: public class PSJspLoader extends JspLoaderIE {
25: //
26: //
27: //
28: protected void initialize() {
29: //
30: super .initialize();
31:
32: //
33: String displayName = NbBundle.getMessage(PSJspLoader.class,
34: "LBL_PSJspLoader");
35: setDisplayName(displayName);
36: }
37:
38: //
39: //
40: //
41: protected MultiDataObject.Entry createPrimaryEntry(
42: MultiDataObject obj, FileObject primaryFile) {
43: //
44: return new PSFormat(obj, primaryFile);
45: }
46:
47: //
48: //
49: //
50: }
|