⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contentobject.java

📁 java 写的一个新闻发布系统
💻 JAVA
字号:
/* Generated by Together */package org.jahia.content;/** * @todo no documentation yet, this is part of the prototype for the new * Jahia content model, documentation will be (hopefully) added later should * this implementation be preserved. * * This class aims to be the main content model class, from which all the other * content classes will derive. It will contain information about version, * locking, language, state (for workflows), references, etc... * @author Serge Huber */public class ContentObject {    public State getState(){            return state;        }    public void setState(State state){            this.state = state;        }    public boolean isLocked(){            return locked;        }    public void setLocked(boolean locked){            this.locked = locked;        }    private State state;    private ObjectKey key;    private ObjectKeySet references;    private boolean locked;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -