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

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

View file

@ -40,7 +40,6 @@ import org.x4o.xml.element.Element;
import org.x4o.xml.io.X4OConnectionException;
import org.x4o.xml.io.X4OReaderSession;
import org.x4o.xml.lang.X4OLanguageSession;
import org.x4o.xml.lang.X4OLanguageSessionLocal;
import org.x4o.xml.lang.phase.X4OPhaseException;
/**

View file

@ -30,8 +30,6 @@ import net.forwardfire.vasc.core.VascEntryFieldType;
import org.x4o.xml.element.AbstractElement;
import org.x4o.xml.element.ElementException;
import org.x4o.xml.lang.phase.X4OPhase;
/**
* VascEntryFieldTypeElement
@ -56,7 +54,6 @@ public class VascEntryFieldTypeElement extends AbstractElement {
VascEntryFieldType type = field.getVascEntryFieldType();
setElementObject(type);
logger.info("Readding the element for reparsing");
X4OPhase startX4OPhase = getLanguageSession().getLanguage().getPhaseManager().getPhase("READ_CONFIG_ELEMENT"); // TODO: back to enum ?
getLanguageSession().addDirtyElement(this, startX4OPhase);
getLanguageSession().addDirtyElement(this);
}
}