📄 autopersist.aj
字号:
/*
* Created on Jan 24, 2004
*/
package org.garret.perst.aspectj;
/**
* Base interface for all classes automatically treated as persistent capable.
* Programmer should either explicitly add this interface to all classes which he want to be persistent
* capable or add this interface using AspectJ <code>declare parents:</code> construction.
* This interface doesn't allow to access fields of external (non-this) object,
* you should use getter/setter methods instead.
* If you want to provide access to external fields you should use StrictAutoPersist interface.
* @author Patrick Morris-Suzuki
*
*/
public interface AutoPersist {
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -