539540541542543544545546547548
public void setBody(String language, StringBuffer body) throws SynthesisException { if (realep != null) throw new SynthesisException(SynthesisException.REIFIED); this.language = language; this.body = body; }
260261262263264265266267268
public void setReturnType(org.apache.xml.utils.synthetic.Class returntype) throws SynthesisException { if (realep != null) throw new SynthesisException(SynthesisException.REIFIED); this.returntype = returntype; }
404405406407408409410411412
*/ public void setInitializer(String i) throws SynthesisException { if (realfield != null) throw new SynthesisException(SynthesisException.REIFIED); initializer = i; }
469470471472473474475476477
public void setType(org.apache.xml.utils.synthetic.Class type) throws SynthesisException { if (realfield != null) throw new SynthesisException(SynthesisException.REIFIED); this.type = type; }
752753754755756757758759760
*/ public void setModifiers(int modifiers) throws SynthesisException { if (realfield != null) throw new SynthesisException(SynthesisException.REIFIED); this.modifiers = modifiers; }