1 package com.thoughtworks.xstream.xml;
2
3 public interface XMLWriter {
4
5 void startElement(String name);
6
7 void addAttribute(String key, String value);
8
9 void writeText(String text);
10
11 void endElement();
12
13 }
This page was automatically generated by Maven