The getAll() method is a generic getter that gets all values at or below the name namespace.
For example, given charting.chart.stackMode and charting.chart keys, calling getAll("charting") returns a map of hash values for the chart.stackMode and chart keys.
hash = getAll( name )
|
name |
String |
key name for which the corresponding values are returned. |
|
Object |
List of corresponding values at or below the
name
key. If
name
had no matching values,
null
is returned.
|
getResultsDict: function() {
var context = this.getContext()
return context.getAll("results");
}