2
0
Fork 0

renamed backend summary lines.

This commit is contained in:
Willem Cazander 2014-05-27 21:33:39 +02:00
parent a13719f008
commit 9a6227be5b
9 changed files with 108 additions and 78 deletions

View file

@ -133,16 +133,16 @@ abstract public class AbstractVascBackend implements VascBackend {
}
/**
* @see net.forwardfire.vasc.backend.VascBackend#isPageSummary()
* @see net.forwardfire.vasc.backend.VascBackend#hasPageSummary()
*/
public boolean isPageSummary() {
public boolean hasPageSummary() {
return false;
}
/**
* @see net.forwardfire.vasc.backend.VascBackend#isTotalSummary()
* @see net.forwardfire.vasc.backend.VascBackend#hasTotalSummary()
*/
public boolean isTotalSummary() {
public boolean hasTotalSummary() {
return false;
}
}

View file

@ -26,6 +26,7 @@ import java.util.List;
import java.util.Map;
/**
* VascBackend provides stateless data access to a data source.
*
* @author Willem Cazander
* @version 1.0 Mar 21, 2007
@ -48,7 +49,6 @@ public interface VascBackend {
public void delete(Object object) throws VascBackendException;
/**
* Creates a new Field acces obj the the given field entry.
* note: Do not use inline class here because it needs to be seriabable and the backend is not seriabbzle.
@ -96,10 +96,10 @@ public interface VascBackend {
public long doRecordMoveDownById(VascBackendState state,Object primaryId) throws VascBackendException;
public boolean isPageSummary();
public boolean hasPageSummary();
public Map<String,Object> executePageSummary();
public boolean isTotalSummary();
public boolean hasTotalSummary();
public Map<String,Object> executeTotalSummary();
/*