示例#1
0
 /**
  * Write a MoML description of this object with the specified indentation depth and with the
  * specified name substituting for the name of this object.
  *
  * @param output The output stream to write to.
  * @param depth The depth in the hierarchy, to determine indenting.
  * @param name The name to use in the exported MoML.
  * @exception IOException If an I/O error occurs.
  */
 public void exportMoML(Writer output, int depth, String name) throws IOException {
   populate();
   super.exportMoML(output, depth, name);
 }