?? layoutid.java
字號:
package com.onetsoft.fastjsp;
/**
* 布局定位惟一參數
*
* @see PageParamsImpl
* @since 3.1
*/
final class LayoutId {
String layout = null;
public LayoutId(String layout) {
this.layout = layout;
}
public boolean equals(Object o) {
return o instanceof LayoutId && this.layout.equals(((LayoutId) o).layout);
}
public int hashCode() {
return layout.hashCode();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -