예제 #1
0
 /**
  * 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);
 }
예제 #2
0
 /**
  * @param context
  * @return value of PlainBody
  */
 public final String getPlainBody(com.mendix.systemwideinterfaces.core.IContext context) {
   return (String) getMendixObject().getValue(context, MemberNames.PlainBody.toString());
 }