Package org.tmatesoft.svn.core.javahl
Class JavaHLPropertyHandler
- java.lang.Object
-
- org.tmatesoft.svn.core.javahl.JavaHLPropertyHandler
-
- All Implemented Interfaces:
ISVNPropertyHandler
class JavaHLPropertyHandler extends java.lang.Object implements ISVNPropertyHandler
- Version:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.CollectionmyAllDataprivate PropertyDatamyDataprivate java.lang.ObjectmyOwner-
Fields inherited from interface org.tmatesoft.svn.core.wc.ISVNPropertyHandler
NULL
-
-
Constructor Summary
Constructors Constructor Description JavaHLPropertyHandler(java.lang.Object owner)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PropertyData[]getAllPropertyData()PropertyDatagetPropertyData()voidhandleProperty(long revision, SVNPropertyData property)Handles a revision property.voidhandleProperty(java.io.File path, SVNPropertyData property)Handles local item's properties (located in a Working Copy).voidhandleProperty(SVNURL url, SVNPropertyData property)Handles remote item's properies (located in a repository).
-
-
-
Field Detail
-
myData
private PropertyData myData
-
myOwner
private java.lang.Object myOwner
-
myAllData
private java.util.Collection myAllData
-
-
Method Detail
-
handleProperty
public void handleProperty(java.io.File path, SVNPropertyData property) throws SVNExceptionDescription copied from interface:ISVNPropertyHandlerHandles local item's properties (located in a Working Copy). Not called for revision properties.- Specified by:
handlePropertyin interfaceISVNPropertyHandler- Parameters:
path- an item's pathproperty- an item's versioned property- Throws:
SVNException
-
handleProperty
public void handleProperty(SVNURL url, SVNPropertyData property) throws SVNException
Description copied from interface:ISVNPropertyHandlerHandles remote item's properies (located in a repository). Not called for revision properties.- Specified by:
handlePropertyin interfaceISVNPropertyHandler- Parameters:
url- an item's repository locationproperty- an item's versioned property- Throws:
SVNException
-
handleProperty
public void handleProperty(long revision, SVNPropertyData property) throws SVNExceptionDescription copied from interface:ISVNPropertyHandlerHandles a revision property. SVNWCClient's methods operating on revision properties call this method to handle properties.- Specified by:
handlePropertyin interfaceISVNPropertyHandler- Parameters:
revision- a repository revision whichpropertyis to be handledproperty- a revision (unversioned) property- Throws:
SVNException- See Also:
SVNWCClient
-
getPropertyData
public PropertyData getPropertyData()
-
getAllPropertyData
public PropertyData[] getAllPropertyData()
-
-