KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > python > compiler > CompilationContext


1
2 package org.python.compiler;
3
4 import org.python.parser.SimpleNode;
5
6 public interface CompilationContext {
7
8     public Future getFutures();
9     public void error(String JavaDoc msg,boolean err,SimpleNode node)
10         throws Exception JavaDoc;
11
12     public String JavaDoc getFilename();
13
14
15     public ScopeInfo getScopeInfo(SimpleNode node);
16 }
17
Popular Tags