}
if(loadObject.has("connections")) {
JSONObject connectionsLoadObject = loadObject.getJSONObject("connections");
RuleConnection ruleConnection = new RuleConnection(this.visualEditor, this);
keyIt = connectionsLoadObject.keys();
while(keyIt.hasNext()) {
String parentName = keyIt.next();
JSONArray connections = connectionsLoadObject.getJSONArray(parentName);
for(int i = 0; i < connections.length(); i += 1) {
ruleConnection.createConnection(tmp.get(parentName), connections.getJSONObject(i), tmp);
}
}
}
}