Modifier and Type | Method and Description |
---|---|
Bindings |
Bindings.booleanProperty(String name,
boolean array)
Generates a boolean property (with value
true ) into the JSON
class. |
static Bindings |
Bindings.create(String name)
Defines new variable with provided name and assigns a JSON object into
it.
|
Bindings |
Bindings.doubleProperty(String name,
boolean array)
Generates a floating point property (with value
0.1 ) into
the JSON class. |
Bindings |
Bindings.function(String name)
Generates a function (empty) into the JSON class.
|
Bindings |
Bindings.intProperty(String name,
boolean array)
Generates a integer property (with value
0 ) into the JSON
class. |
Bindings |
Bindings.modelProperty(String name,
Bindings binding,
boolean array)
Generates complex subtype based on another
Bindings class. |
Bindings |
Bindings.stringProperty(String name,
boolean array)
Generates a string property (with value
'' ) into the JSON
class. |
Modifier and Type | Method and Description |
---|---|
static BindingsProvider.Response |
BindingsProvider.Response.create(Bindings bindings)
Used by a
provider to tell the editing
infrastructure to expose a JSON like structure in code completion. |
BindingsProvider.Response |
BindingsProvider.Response.create(Bindings bindings,
String targetId)
Used by a
provider to tell the editing
infrastructure to expose a JSON like structure in code completion. |
Bindings |
Bindings.modelProperty(String name,
Bindings binding,
boolean array)
Generates complex subtype based on another
Bindings class. |