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.Collection
myAllData
private PropertyData
myData
private java.lang.Object
myOwner
-
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()
PropertyData
getPropertyData()
void
handleProperty(long revision, SVNPropertyData property)
Handles a revision property.void
handleProperty(java.io.File path, SVNPropertyData property)
Handles local item's properties (located in a Working Copy).void
handleProperty(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 SVNException
Description copied from interface:ISVNPropertyHandler
Handles local item's properties (located in a Working Copy). Not called for revision properties.- Specified by:
handleProperty
in 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:ISVNPropertyHandler
Handles remote item's properies (located in a repository). Not called for revision properties.- Specified by:
handleProperty
in interfaceISVNPropertyHandler
- Parameters:
url
- an item's repository locationproperty
- an item's versioned property- Throws:
SVNException
-
handleProperty
public void handleProperty(long revision, SVNPropertyData property) throws SVNException
Description copied from interface:ISVNPropertyHandler
Handles a revision property. SVNWCClient's methods operating on revision properties call this method to handle properties.- Specified by:
handleProperty
in interfaceISVNPropertyHandler
- Parameters:
revision
- a repository revision whichproperty
is to be handledproperty
- a revision (unversioned) property- Throws:
SVNException
- See Also:
SVNWCClient
-
getPropertyData
public PropertyData getPropertyData()
-
getAllPropertyData
public PropertyData[] getAllPropertyData()
-
-