1 2 /**3 * Title: FrameConstants<p>4 * Description: defines Constants for the frame output<p>5 * Copyright: Copyright (c) <p>6 * Company: <p>7 * @author8 * @version 1.09 */10 package com.teamkonzept.webman.mainint;11 12 public interface FrameConstants13 {14 /** name des linken frames (navigation) */15 String LEFT_TARGET = "f_nav";16 17 /** name des rechten frames */18 String RIGHT_TARGET = "f_cont";19 20 /** Breite des linken frames (fuer ContentType und Presentations) */21 String LEFT_FRAME_WIDTH_SMALL = "240";22 23 /** Breite des linken frames ((ContentTree und SiteTree)) */24 String LEFT_FRAME_WIDTH = "300";25 26 /** Breite des rechten frames */27 String RIGHT_FRAME_WIDTH = "*";28 29 /** Frameborder */30 String FRAME_BORDER = "5";31 }