KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > FrameConstants


1
2 /**
3  * Title: FrameConstants<p>
4  * Description: defines Constants for the frame output<p>
5  * Copyright: Copyright (c) <p>
6  * Company: <p>
7  * @author
8  * @version 1.0
9  */

10 package com.teamkonzept.webman.mainint;
11
12 public interface FrameConstants
13 {
14     /** name des linken frames (navigation) */
15     String JavaDoc LEFT_TARGET = "f_nav";
16
17     /** name des rechten frames */
18     String JavaDoc RIGHT_TARGET = "f_cont";
19
20     /** Breite des linken frames (fuer ContentType und Presentations) */
21     String JavaDoc LEFT_FRAME_WIDTH_SMALL = "240";
22
23     /** Breite des linken frames ((ContentTree und SiteTree)) */
24     String JavaDoc LEFT_FRAME_WIDTH = "300";
25
26     /** Breite des rechten frames */
27     String JavaDoc RIGHT_FRAME_WIDTH = "*";
28
29     /** Frameborder */
30     String JavaDoc FRAME_BORDER = "5";
31 }
Popular Tags