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

📄 implementedby.java

📁 类似struts2的mvc框架
💻 JAVA
字号:
/** *  Pxb IOC. *  Copyright 2008 Panxiaobo. *  All rights reserved. *  $Id: ImplementedBy.java 34 2008-08-16 13:36:08Z Panxiaobo $ */package pxb.ioc;import static java.lang.annotation.ElementType.TYPE;import static java.lang.annotation.RetentionPolicy.RUNTIME;import java.lang.annotation.Retention;import java.lang.annotation.Target;/** * A pointer to the default implementation of a type. *  * @author crazybob@google.com (Bob Lee) * @author Panxiaobo [pxb1988@126.com] */@Retention(RUNTIME)@Target(TYPE)public @interface ImplementedBy{	/**	 * The implementation type.	 */	String value();}

⌨️ 快捷键说明

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