com.togethersoft.sca.ast
Class AstModelDelta

java.lang.Object
  |
  +--com.togethersoft.sca.ast.AstModelDelta

public class AstModelDelta
extends java.lang.Object

Contains information about changed model elements.


Field Summary
 AstCompilationUnit[] addedFiles
          The list of source files that have been added to the model.
 AstCompilationUnit[][] expiredFiles
          The list of source files with the changed external interfaces.
 AstCompilationUnit[] removedFiles
          The list of source files that have been removed.
 AstCompilationUnit[] updatedFiles
          The list of source files whose external interfaces have not been changed.
 
Constructor Summary
AstModelDelta()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

addedFiles

public AstCompilationUnit[] addedFiles
The list of source files that have been added to the model.

expiredFiles

public AstCompilationUnit[][] expiredFiles
The list of source files with the changed external interfaces. Both old and new versions of ith file is avaliable as expiredFiles[0][i] and expiredFiles[1][i].

removedFiles

public AstCompilationUnit[] removedFiles
The list of source files that have been removed.

updatedFiles

public AstCompilationUnit[] updatedFiles
The list of source files whose external interfaces have not been changed.
Constructor Detail

AstModelDelta

public AstModelDelta()