01: package de.schlund.pfixcore.oxm;
02:
03: import de.schlund.pfixcore.oxm.impl.annotation.ForceElementSerializer;
04:
05: /**
06: * Simple test bean to test the serialization
07: * of cdata sections
08: *
09: * @author Stephan Schmidt <schst@stubbles.net>
10: */
11: public class CDataTestBean {
12:
13: @ForceElementSerializer
14: public String getCData() {
15: return "This is <strong>cdata</strong>.";
16: }
17: }
|