📄 markentry.java
字号:
package org.jahia.layout;/** * Represents a entry in the column mark vector. Used to hold information about * the row at which the mark starts, and a boolean indicated if this column has * already been processed or not. * * This class is not very documented because it is quite a simple bean and should * be straightforward... * * Title: Jahia * Description: Jahia Portal Server * Copyright: Copyright (c) 2002 * Company: Jahia Ltd * @author Serge Huber * @version 1.0 */public class MarkEntry { private int markStart = -1; private boolean processedState = false; public MarkEntry() { } public MarkEntry(int markStart, boolean processedState) { this.markStart = markStart; this.processedState = processedState; } public int getMarkStart() { return markStart; } public void setMarkStart(int markStart) { this.markStart = markStart; } public boolean getProcessedState() { return processedState; } public void setProcessedState(boolean processedState) { this.processedState = processedState; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -