Uses of Interface
com.teamdev.jxbrowser.js.JsSymbol
Packages that use JsSymbol
Package
Description
This package provides classes that allow you to work with the JavaScript to Java bridge.
-
Uses of JsSymbol in com.teamdev.jxbrowser.js
Methods in com.teamdev.jxbrowser.js that return types with arguments of type JsSymbolModifier and TypeMethodDescriptionJsObject.ownPropertySymbols()Returns an immutable list of the symbol properties of this JavaScript object, excluding the properties from the prototype objects.Methods in com.teamdev.jxbrowser.js with parameters of type JsSymbolModifier and TypeMethodDescriptionbooleanJsObject.hasProperty(JsSymbol jsSymbol) Checks whether this JavaScript object or any of its prototypes has a property with the givenjsSymbolkey.<T> Optional<T>Returns anOptionaldescribing the value of the JavaScript object's property with the givenjsSymbolkey or an emptyOptionalif there is no such property or its value is undefined.booleanJsObject.putProperty(JsSymbol jsSymbol, Object value) Creates a new property with the givenjsSymbolkey or updates the existing one in the current JavaScript object and returnstrueif the property with the givennamewas created or updated successfully.booleanJsObject.removeProperty(JsSymbol jsSymbol) Removes a property with the givenjsSymbolkey in the JavaScript object and returnstrueif the property was successfully removed.