public interface IdeEnv
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
authorizeChecking(Storage source,
                 java.lang.String reason)
Called before (re)checking the given source of the given graph. 
 | 
boolean | 
authorizeParsing(Storage source,
                java.lang.String reason)
Called before (re)parsing the given source of the given graph. 
 | 
boolean | 
authorizeWriting(Storage source,
                java.lang.String qualifiedClassName,
                byte[] buffer,
                int offset,
                int len)
Called before code generation and writing the given output source (.class)
  of the given graph. 
 | 
boolean authorizeParsing(Storage source, java.lang.String reason)
source - The source to be parsedreason - The reason for parsingboolean authorizeChecking(Storage source, java.lang.String reason)
source - The source to be checkedreason - The reason for checkingboolean authorizeWriting(Storage source, java.lang.String qualifiedClassName, byte[] buffer, int offset, int len)
source - The .class file that will be writtenqualifiedClassName - The name of the classbuffer - The buffer that supplies the contents for the writingoffset - The starting offset of the contents to be writtenlen - The number of bytes to write