org.tigris.subversion.javahl.JavaHLPropertyData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javasvn Show documentation
Show all versions of javasvn Show documentation
The only pure Java Subversion library in the world
/*
* ====================================================================
* Copyright (c) 2004-2006 TMate Software Ltd. All rights reserved.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at http://tmate.org/svn/license.html.
* If newer versions of this license are posted there, you may use a
* newer version instead, at your option.
* ====================================================================
*/
package org.tigris.subversion.javahl;
import org.tmatesoft.svn.core.javahl.SVNClientImpl;
/**
* @version 1.0
* @author TMate Software Ltd.
*/
public class JavaHLPropertyData extends PropertyData {
private SVNClientImpl myClientImpl;
JavaHLPropertyData(SVNClientImpl clientImpl, SVNClient cl, String p, String n, String v, byte[] d) {
super(cl, p, n, v, d);
myClientImpl = clientImpl;
}
public void remove(boolean recurse) throws ClientException {
if (myClientImpl != null) {
myClientImpl.propertyRemove(getPath(), getName(), recurse);
} else {
super.remove(recurse);
}
}
public void setValue(byte[] newValue, boolean recurse) throws ClientException {
if (myClientImpl != null) {
myClientImpl.propertySet(getPath(), getName(), newValue, recurse);
} else {
super.remove(recurse);
}
}
public void setValue(String newValue, boolean recurse) throws ClientException {
if (myClientImpl != null) {
myClientImpl.propertySet(getPath(), getName(), newValue, recurse);
} else {
super.remove(recurse);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy