📄 implementedby.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 + -