Package com.google.gwt.core.ext.linker
Class SoftPermutation
- java.lang.Object
-
- com.google.gwt.core.ext.linker.SoftPermutation
-
- All Implemented Interfaces:
java.io.Serializable
public abstract class SoftPermutation extends java.lang.Object implements java.io.Serializable
Represents a permutation of collapsed deferred-binding property values.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SoftPermutation()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract int
getId()
Returns the soft permutation id that should be passed intogwtOnLoad
.abstract java.util.SortedMap<SelectionProperty,java.lang.String>
getPropertyMap()
Returns only the collapsed selection properties that resulted in the particular soft permutation.
-
-
-
Method Detail
-
getId
public abstract int getId()
Returns the soft permutation id that should be passed intogwtOnLoad
. The range of ids used for a compilation's soft permutations may be disjoint and may not correspond to the index of the SoftPermutation within the array returned fromCompilationResult.getSoftPermutations()
.
-
getPropertyMap
public abstract java.util.SortedMap<SelectionProperty,java.lang.String> getPropertyMap()
Returns only the collapsed selection properties that resulted in the particular soft permutation. The SelectionProperties used may be disjoint from the properties returned byCompilationResult.getPropertyMap()
.
-
-