/** * Set value of PlainBody * * @param context * @param plainbody */ public final void setPlainBody( com.mendix.systemwideinterfaces.core.IContext context, String plainbody) { getMendixObject().setValue(context, MemberNames.PlainBody.toString(), plainbody); }
/** * @param context * @return value of PlainBody */ public final String getPlainBody(com.mendix.systemwideinterfaces.core.IContext context) { return (String) getMendixObject().getValue(context, MemberNames.PlainBody.toString()); }