KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > pci > RenderOutput


1 /**
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved.
3  * Please look at license.txt in info directory for more license detail.
4  **/

5
6 /**
7  * Created by The eXo Platform SARL
8  * Author : Mestrallet Benjamin
9  * benjmestrallet@users.sourceforge.net
10  * Date: Jul 30, 2003
11  * Time: 9:08:33 PM
12  */

13 package org.exoplatform.services.portletcontainer.pci;
14
15 public class RenderOutput extends Output {
16
17   private String JavaDoc title;
18   private char[] content;
19   private boolean cacheHit = true;
20
21   public String JavaDoc getTitle() {
22     return title;
23   }
24
25   public void setTitle(String JavaDoc title) {
26     this.title = title;
27   }
28
29   public char[] getContent() {
30     return content;
31   }
32
33   public void setContent(char[] content) {
34     this.content = content;
35   }
36
37   public boolean isCacheHit() {
38     return cacheHit;
39   }
40
41   public void setCacheHit(boolean cacheHit) {
42     this.cacheHit = cacheHit;
43   }
44
45 }
46
Popular Tags