| Package | Description | 
|---|---|
| oracle.ide.compiler | 
 Contains classes that allow addins some level of control on the IDE build system. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
BuildSystemListener.buildFinished(int errorCount,
             int warningCount,
             int infoCount)
This method is called right after the build is complete and
  just before returning to the caller. 
 | 
void | 
BuildSystemListener.buildWillStart(Context context)
This method is called just before actually starting a build
  for the following context, context may be one or more workspace(s),
  one or more project(s), or one or more files within a project. 
 | 
void | 
BuildSystemListener.cleanFinished(Context context)
This method is called just before actually finishing a clean
  for the following context, context may be one or more workspace(s),
  one or more project(s), or one or more files within a project. 
 | 
void | 
BuildSystemListener.cleanWillStart(Context context)
This method is called just before actually starting a clean
  for the following context, context may be one or more workspace(s),
  one or more project(s), or one or more files within a project. 
 | 
void | 
BuildSystemListener2.projectBuildFinished(Workspace workspace,
                    Project project)
Called by the build after the build of a project or the
 build of one or more project files has finished. 
 | 
void | 
BuildSystemListener2.projectBuildWillStart(Workspace workspace,
                     Project project)
Called by the build before the build of a project or the
 build of one or more project files is started. 
 | 
void | 
BuildSystemListener2.projectCleanFinished(Workspace workspace,
                    Project project)
Called by the build after the clean of a project or the
 clean of one or more project files has finished. 
 | 
void | 
BuildSystemListener2.projectCleanWillStart(Workspace workspace,
                     Project project)
Called by the build before the clean of a project or the
 clean of one or more project files is started. 
 | 
void | 
BuildSystemListener2.workspaceBuildFinished(Workspace workspace)
Called by the build after the build of a workspace has finished. 
 | 
void | 
BuildSystemListener2.workspaceBuildWillStart(Workspace workspace)
Called by the build before the build of a workspace is started. 
 | 
void | 
BuildSystemListener2.workspaceCleanFinished(Workspace workspace)
Called by the build after the clean of a workspace has finished. 
 | 
void | 
BuildSystemListener2.workspaceCleanWillStart(Workspace workspace)
Called by the build before the clean of a workspace is started. 
 |