Sha256: b5746c2f70c5cdc5bc1ba7cba16185d55ff79c37864d789b6d99b309caad3bd1
Contents?: true
Size: 582 Bytes
Versions: 6
Compression:
Stored size: 582 Bytes
Contents
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 { @Override 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; } }
Version data entries
6 entries across 6 versions & 1 rubygems