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

📄 context.java

📁 pojo的mvc框架
💻 JAVA
字号:
package xyz.frame.scope;/** * A simple scope (context). *  * @author Guilherme Silveira */public interface Context {	/**	 * Sets an attribute	 * 	 * @param name	 *            name	 * @param value	 *            value	 */	void setAttribute(String name, Object value);	/**	 * Retrieves an attribute	 * 	 * @param name	 *            name	 * @return value or null if not found	 */	Object getAttribute(String name);	/**	 * Whether it contains an attribute	 * 	 * @param name	 *            name	 * @return true if contained	 */	boolean hasAttribute(String name);	/**	 * Removes an attribute	 * 	 * @param name	 *            name	 * @return value	 */	Object removeAttribute(String name);}

⌨️ 快捷键说明

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