Ejemplo n.º 1
0
 /**
  * Returns a string that can be read and executed by the USE shell achieving the same effect of
  * this command.
  */
 public String getUSEcmd() {
   MOperation op = fOpCall.operation();
   return "!openter "
       + fOpCall.target()
       + " "
       + op.name()
       + "("
       + StringUtil.fmtSeq(fOpCall.argExprs(), ",")
       + ")";
 }