Last opened page is now stored (solves #166) #178

Merged
bema merged 15 commits from bema/exp/remember_last_page into master 2023-05-09 15:12:59 +02:00
Showing only changes of commit f107412e3b - Show all commits

View File

@@ -0,0 +1,12 @@
package com.r11.tools.xml;
import com.r11.tools.controller.internal.XPathQueryResult;
public interface XmlEngine {
XPathQueryResult processXPath(String data, String query, String version);
String processXSLT(String data, String transform);
String validate(String data, String xsd);
public String getVersion();
}