Exemplo n.º 1
0
 /**
  * Sets this Expression's body
  *
  * @param body
  */
 public void setBody(String body) {
   if (!StringHelper.equals(body, this.body)) {
     this.body = body;
     fireChange();
   }
 }
Exemplo n.º 2
0
 /**
  * Sets this Expression's language
  *
  * @param language
  */
 public void setLanguage(String language) {
   if (!StringHelper.equals(language, this.language)) {
     this.language = language;
     fireChange();
   }
 }