setProjectProperties( entry.getPrefix(), statusHandler.createProperties() );
}
private void fillStatus( Entry entry, SvnOperationFactory operationFactory, StatusHandler statusHandler ) throws SVNException {
SvnGetStatus statusOperation = operationFactory.createGetStatus();
statusOperation.setSingleTarget( SvnTarget.fromFile( entry.getPath() ) );
statusOperation.setDepth( SVNDepth.fromString( entry.getDepth() ) );
statusOperation.setRevision( SVNRevision.WORKING );
statusOperation.setReportAll( true );
statusOperation.setReportIgnored( entry.reportIgnored() );
statusOperation.setRemote( entry.reportOutOfDate() );
statusOperation.setReceiver( statusHandler );
statusOperation.run();
}