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

📄 propertiesmanager.java

📁 这个weblogging 设计得比较精巧
💻 JAVA
字号:
/* * PropertiesManager.java * * Created on April 21, 2005, 10:34 AM */package org.roller.model;import java.io.Serializable;import java.util.Map;import org.roller.RollerException;import org.roller.pojos.RollerPropertyData;/** * * @author Allen Gilliland */public interface PropertiesManager extends Serializable {        /**     * Release all resources associated with Roller session.     */    public void release();    /** Save a single property */    public void store(RollerPropertyData property) throws RollerException;        /** Save a list of properties */    public void store(Map properties) throws RollerException;        /** Retrieve a single property by name */    public RollerPropertyData getProperty(String name) throws RollerException;        /** Retrieve a list of all properties */    public Map getProperties() throws RollerException;    }

⌨️ 快捷键说明

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