package wstest.srv.actors; /** * Schema fragment(s) for this class: * <pre> * <xs:element xmlns:ns="uri:WSTestWeb-TestService" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="EchoSynthetic"> * <xs:complexType> * <xs:sequence> * <xs:element type="ns:Synthetic" name="synth" minOccurs="0" maxOccurs="1"/> * </xs:sequence> * </xs:complexType> * </xs:element> * </pre> */ public class EchoSynthetic { private Synthetic synth; /** * Get the 'synth' element value. * * @return value */ public Synthetic getSynth() { return synth; } /** * Set the 'synth' element value. * * @param synth */ public void setSynth(Synthetic synth) { this.synth = synth; } }