- Timestamp:
- 02/22/08 18:13:10 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/xml/stubLibXmlXMLStreamWriter.php
r1301 r1359 62 62 63 63 /** 64 * Writean opening tag64 * really writes an opening tag 65 65 * 66 66 * @param string $elementName 67 67 */ 68 p ublic function writeStartElement($elementName)68 protected function doWriteStartElement($elementName) 69 69 { 70 70 $this->writer->startElement($elementName); … … 134 134 135 135 /** 136 * Writean end element136 * really writes an end element 137 137 */ 138 p ublic function writeEndElement()138 protected function doWriteEndElement() 139 139 { 140 140 $this->writer->endElement();
