Skip to content

Commit

Permalink
Added AST previewing support
Browse files Browse the repository at this point in the history
  • Loading branch information
apmasell committed Jun 17, 2010
1 parent 9aef2b3 commit bf16b44
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ca/wlu/gisql/cytoscape/Container.java
Expand Up @@ -11,6 +11,7 @@
import javax.swing.JTree;
import javax.swing.tree.TreeSelectionModel;

import ca.wlu.gisql.ast.AstNode;
import ca.wlu.gisql.ast.type.Type;
import ca.wlu.gisql.environment.UserEnvironment;
import ca.wlu.gisql.gui.CommandBox;
Expand Down Expand Up @@ -81,4 +82,9 @@ public void reportErrors(Collection<ExpressionError> errors) {

}

@Override
public boolean previewAst(AstNode node) {
return true;
}

}

0 comments on commit bf16b44

Please sign in to comment.