Missed commits

This commit is contained in:
Lloyd McKenzie 2024-09-04 22:25:07 -06:00
parent 975653e07d
commit 966798cc2f
2 changed files with 978 additions and 965 deletions

View File

@ -104,4 +104,8 @@ public interface IXMLWriter {
public abstract void link(String href);
public abstract void anchor(String name);
public abstract void externalLink(String ref) throws IOException;
// this is only implemented by an implementation that is producing an xhtml representation and handles ellipsing elements
public abstract void ellipse() throws IOException;
public abstract void attributeEllipse();
}

View File

@ -912,5 +912,14 @@ public class XMLWriter extends OutputStreamWriter implements IXMLWriter {
// ignore this
}
@Override
public void attributeEllipse() {
// ignore this
}
@Override
public void ellipse() throws IOException {
// ignore this
}
}