01: package com.teamkonzept.webman.mainint;
02:
03: import com.teamkonzept.db.*;
04: import com.teamkonzept.lib.*;
05: import com.teamkonzept.webman.*;
06: import com.teamkonzept.web.*;
07: import com.teamkonzept.webman.db.*;
08: import com.teamkonzept.webman.mainint.events.*;
09:
10: /**
11: provides several Util methods for HTML Frames
12: */
13: public class HTMLUtils implements FrameConstants {
14: /**
15: * fuellt das uebergebene template mit den framesetparams
16: *
17: *
18: * @param
19: */
20: public static void fillFrameSet(TKHTMLTemplate t, String lwidth,
21: String levent, String revent) {
22: TKHashtable framePars = new TKHashtable();
23: framePars.put("LCOLS", lwidth);
24: framePars.put("RCOLS", RIGHT_FRAME_WIDTH);
25: framePars.put("FRAMEBORDER", FRAME_BORDER);
26: framePars.put("LTARGET", LEFT_TARGET);
27: framePars.put("RTARGET", RIGHT_TARGET);
28: framePars.put("LEVENT", levent);
29: framePars.put("REVENT", revent);
30: t.set(framePars);
31: }
32:
33: }
|