VCI::Abstract::FileContainer - Anything that can contain a File or Directory.
This is a Moose::Role that represents anything that can hold files. Usually that's a VCI::Abstract::Directory.
These accessors are all read-only.
contentsAn arrayref of VCI::Abstract::Committable objects that we contain. The order is not guaranteed.
contents_historyThe VCI::Abstract::History of all the items in this container. The History will contain information about all of the items inside the container, but possibly won't contain information about anything outside of the container.
This does not include the history of the item itself,
if the item itself has a history.
(That is,
if this item is also a VCI::Abstract::Committable,
you should use the history method to get information about this specific item.)
contents_history_recursiveThe normal "contents_history" only returns the History of items directly contained in the directory.
This accsessor returns an entire VCI::Abstract::History for all items in the Project from this directory down.
So, for example, if dir1 contains dir2, and dir2 contains dir3, this method would return the History of all items contained in dir1, dir2, and dir3.
projectThe VCI::Abstract::Project that this FileContainer belongs to.
Implementors: VCI::Abstract::Directory and VCI::Abstract::Commit