// Constructor
protected RuleEditorPane(final StatusBar statusBar, final VisualRifEditor vRE) {
super(true);
this.statusBar = statusBar;
this.setVisualRifEditor(vRE);
this.ruleGraphLeft = new RuleGraph(this,this.visualRifEditor,false);
this.ruleGraphRight = new RuleGraph(this,this.visualRifEditor,false);
this.ruleGraphLeft.setRuleVariableList(this.ruleVariableList);
this.ruleGraphRight.setRuleVariableList(this.ruleVariableList);
this.visualGraphs.add(this.ruleGraphLeft);