Uses of Interface
provided.owlMaps.cefUtils.IProcessOption
Package | Description |
---|---|
provided.owlMaps.cefUtils |
*** FOR INTERNAL USE ONLY! NOTHING IN THIS PACKAGE SHOULD BE DIRECTLY ACCESSED BY DEVELOPER CODE! ***
Utilities for managing the Chromium Embedded Framework (CEF) This package uses the CefMessageRouter (org.cef.browser.CefMessageRouter) to route communications from the Javascript side to the Java side. |
provided.owlMaps.cefUtils.impl |
*** FOR INTERNAL USE ONLY! NOTHING IN THIS PACKAGE SHOULD BE DIRECTLY ACCESSED BY DEVELOPER CODE! ***
Implementations of CEF utiltiies |
-
Uses of IProcessOption in provided.owlMaps.cefUtils
Methods in provided.owlMaps.cefUtils that return IProcessOption Modifier and Type Method Description static <E> IProcessOption<E>
IProcessOption. makeDefault(com.google.gson.Gson gson)
*** FOR INTERNAL USE ONLY!! DEVELOPER CODE SHOULD NEVER USE THIS METHOD! ***
Factory to make a default option processor that simply puts the given value directly into the Javascript options object.static <E> IProcessOption<E>
IProcessOption. makeNoOp()
*** FOR INTERNAL USE ONLY!! DEVELOPER CODE SHOULD NEVER USE THIS METHOD! ***
Factory to make a no-op option processor used to explicitly ignore a option type. -
Uses of IProcessOption in provided.owlMaps.cefUtils.impl
Fields in provided.owlMaps.cefUtils.impl with type parameters of type IProcessOption Modifier and Type Field Description java.util.Map<provided.mixedData.MixedDataKey<?>,IProcessOption<?>>
AOptionsFiller. optionFnMap
The mapping from options key to options processor for the given options typeMethods in provided.owlMaps.cefUtils.impl that return IProcessOption Modifier and Type Method Description protected IProcessOption<ICefObject>
AOptionsFiller. makeDefaultMapOptionProcess()
Utility method to make the default Map option processorMethods in provided.owlMaps.cefUtils.impl with parameters of type IProcessOption Modifier and Type Method Description protected <T> void
AOptionsFiller. addToCefOptions(provided.mixedData.MixedDataKey<T> key, T value, IProcessOption<?> defaultProcessOption, com.google.gson.stream.JsonWriter jsonWriter)
Utility method to process a given Java options key-value with any installed handler in the internal optionFnMap or to use the IProcessOption.DEFAULT processing if no handler is installed.protected <T> void
AOptionsFiller. put(provided.mixedData.MixedDataKey<T> key, IProcessOption<T> value)
Put the given options processor into the options processor map associated with the given options key.