Package | Description |
---|---|
com.google.gwt.dev.cfg |
Modifier and Type | Class and Description |
---|---|
class |
CompoundCondition
Abstract base class for various kinds of compound deferred binding
conditions.
|
class |
ConditionAll
A compound condition that is only satisfied if all of its children are
satisfied.
|
class |
ConditionAny
A compound condition that is satisfied if any of its children are satisfied.
|
class |
ConditionNone
A compound condition that is only satisfied if all of its children are
unsatisfied.
|
class |
ConditionWhenLinkerAdded
Deprecated.
|
class |
ConditionWhenPropertyIs
A deferred binding condition to determine whether a named property has a
particular value.
|
class |
ConditionWhenTypeAssignableTo
A deferred binding condition to determine whether the type being rebound is
assignment-compatible with a particular type.
|
class |
ConditionWhenTypeIs
A deferred binding condition to determine whether the type being rebound is
exactly a particular type.
|
Modifier and Type | Method and Description |
---|---|
com.google.gwt.thirdparty.guava.common.collect.ImmutableMap<Condition,SortedSet<String>> |
BindingProperty.getConditionalValues()
Returns a map containing the generated values for each condition, in the order
they were added to the module files.
|
Iterator<Condition> |
Conditions.iterator() |
Modifier and Type | Method and Description |
---|---|
void |
Conditions.add(Condition condition)
Appends a condition.
|
void |
BindingProperty.addDefinedValue(Condition condition,
String definedValue) |
void |
BindingProperty.addTargetLibraryDefinedValue(Condition condition,
String definedValue) |
String[] |
BindingProperty.getAllowedValues(Condition condition)
Returns the set of values defined in the module file.
|
String[] |
BindingProperty.getGeneratedValues(Condition condition)
Returns the set of values for which the GWT compiler must generate permutations.
|
void |
BindingProperty.setValues(Condition bindingPropertyCondition,
String... values)
Replaces the allowed and generated values for a condition.
|
Constructor and Description |
---|
CompoundCondition(Condition... conditions) |
ConditionAll(Condition... conditions) |
ConditionAny(Condition... conditions) |
ConditionNone(Condition... conditions) |
Copyright © 2018. All rights reserved.