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