?? options.java
字號:
package org.sunflow.core;
import org.sunflow.SunflowAPI;
import org.sunflow.util.FastHashMap;
/**
* This holds rendering objects as key, value pairs.
*/
public final class Options extends ParameterList implements RenderObject {
public boolean update(ParameterList pl, SunflowAPI api) {
// take all attributes, and update them into the current set
for (FastHashMap.Entry<String, Parameter> e : pl.list) {
list.put(e.getKey(), e.getValue());
e.getValue().check();
}
return true;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -