org.opencms.xml.content
Interface I_CmsXmlContentValueVisitor

All Known Implementing Classes:
CmsXmlContentWidgetVisitor

public interface I_CmsXmlContentValueVisitor

Visitor interface that allows looping through all the values in a XML content document.

An implementation of this interface can be passed to CmsXmlContent.visitAllValuesWith(I_CmsXmlContentValueVisitor) in order to call the visit(I_CmsXmlContentValue) method on all values of that document.

Since:
6.0.0
Version:
$Revision: 1.12 $
Author:
Alexander Kandzior

Method Summary
 void visit(I_CmsXmlContentValue value)
          Visits the given value.
 

Method Detail

visit

void visit(I_CmsXmlContentValue value)
Visits the given value.

Parameters:
value - the value to visit