Missed commits
This commit is contained in:
parent
975653e07d
commit
966798cc2f
|
@ -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();
|
||||
}
|
|
@ -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
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue