/**
  * Set the mode field.
  *
  * @param val The String to set.
  */
 public void setMode(String val) {
   if (mode == null) {
     mode = (SFString) getField("mode");
   }
   mode.setValue(val);
 }
 /**
  * Return the keyRelease String value.
  *
  * @return The keyRelease String value.
  */
 public String getKeyRelease() {
   if (keyRelease == null) {
     keyRelease = (SFString) getField("keyRelease");
   }
   return (keyRelease.getValue());
 }
 /**
  * Return the mode String value.
  *
  * @return The mode String value.
  */
 public String getMode() {
   if (mode == null) {
     mode = (SFString) getField("mode");
   }
   return (mode.getValue());
 }
 /**
  * Return the keyPress String value.
  *
  * @return The keyPress String value.
  */
 public String getKeyPress() {
   if (keyPress == null) {
     keyPress = (SFString) getField("keyPress");
   }
   return (keyPress.getValue());
 }