Renamed a few things. What used to be SuperRepository (kind of meaning free name

wasn't it) is now AVMRepository.  What used to be Repository is now AVMStore as it
more closely matches what is meant by a store in Alfresco.  Many adjustments
in ancillary class names, references, and comments followed.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3329 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-07-16 18:19:59 +00:00
parent 1510998f69
commit 60cdda3f13
42 changed files with 656 additions and 680 deletions

View File

@@ -60,10 +60,10 @@ public abstract class AVMNodeImpl implements AVMNode, Serializable
/**
* Constructor used when creating a new concrete subclass instance.
* @param id The object id.
* @param repo The Repository that owns this.
* @param store The AVMStore that owns this.
*/
protected AVMNodeImpl(long id,
Repository repo)
AVMStore store)
{
fID = id;
fVersionID = -1;
@@ -216,7 +216,7 @@ public abstract class AVMNodeImpl implements AVMNode, Serializable
*/
public boolean getIsNew()
{
return AVMContext.fgInstance.fNewInRepositoryDAO.getByNode(this) != null;
return AVMContext.fgInstance.fNewInAVMStoreDAO.getByNode(this) != null;
}
/**