Esempio n. 1
0
 public Set<String> keySet() {
   return variableScope.getVariables().keySet();
 }
Esempio n. 2
0
 public Collection<Object> values() {
   return variableScope.getVariables().values();
 }
Esempio n. 3
0
 public Set<Map.Entry<String, Object>> entrySet() {
   return variableScope.getVariables().entrySet();
 }
Esempio n. 4
0
 public int size() {
   return variableScope.getVariables().size();
 }