KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > layout > MarkEntry


1 package org.jahia.layout;
2
3 /**
4  * Represents a entry in the column mark vector. Used to hold information about
5  * the row at which the mark starts, and a boolean indicated if this column has
6  * already been processed or not.
7  *
8  * This class is not very documented because it is quite a simple bean and should
9  * be straightforward...
10  *
11  * Title: Jahia
12  * Description: Jahia Portal Server
13  * Copyright: Copyright (c) 2002
14  * Company: Jahia Ltd
15  * @author Serge Huber
16  * @version 1.0
17  */

18
19 public class MarkEntry {
20
21     private int markStart = -1;
22     private boolean processedState = false;
23
24     public MarkEntry() {
25     }
26
27     public MarkEntry(int markStart, boolean processedState) {
28         this.markStart = markStart;
29         this.processedState = processedState;
30     }
31
32     public int getMarkStart() {
33         return markStart;
34     }
35
36     public void setMarkStart(int markStart) {
37         this.markStart = markStart;
38     }
39
40     public boolean getProcessedState() {
41         return processedState;
42     }
43
44     public void setProcessedState(boolean processedState) {
45         this.processedState = processedState;
46     }
47 }
Popular Tags