PageRenderTime 41ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/www/tags/NOV_07_2009/htdocs/users-guide/dialog-macro-intro.html

#
HTML | 25 lines | 25 code | 0 blank | 0 comment | 0 complexity | a0d61c00cc0d4c43a170859a41868694 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Use of the Macro</title><meta name="generator" content="DocBook XSL Stylesheets V1.73.2"><link rel="start" href="index.html" title="jEdit 4.3 User's Guide"><link rel="up" href="dialog-macro.html" title="Chapter 14. A Dialog-Based Macro"><link rel="prev" href="dialog-macro.html" title="Chapter 14. A Dialog-Based Macro"><link rel="next" href="add-prefix-and-suffix.html" title="Listing of the Macro"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Use of the Macro</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="dialog-macro.html">Prev</a> </td><th width="60%" align="center">Chapter 14. A Dialog-Based Macro</th><td width="20%" align="right"> <a accesskey="n" href="add-prefix-and-suffix.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="dialog-macro-intro"></a>Use of the Macro</h2></div></div></div><p>Our new example adds prefix and suffix text to a series of
  2. selected lines. This macro can be used to reduce typing for a series of
  3. text items that must be preceded and following by identical text. In
  4. Java, for example, if we are interested in making a series of calls to
  5. <code class="function">StringBuffer.append()</code> to construct a lengthy,
  6. formatted string, we could type the parameter for each call on
  7. successive lines as follows:</p><pre class="screen">profileString_1
  8. secretThing.toString()
  9. name
  10. address
  11. addressSupp
  12. city
  13. &#8220;<span class="quote">state/province</span>&#8221;
  14. country</pre><p>Our macro would ask for input for the common &#8220;<span class="quote">prefix</span>&#8221;
  15. and &#8220;<span class="quote">suffix</span>&#8221; to be applied to each line; in this case, the
  16. prefix is <strong class="userinput"><code>ourStringBuffer.append(</code></strong> and the suffix
  17. is <strong class="userinput"><code>);</code></strong>. After selecting these lines and running
  18. the macro, the resulting text would look like this:</p><pre class="screen">ourStringBuffer.append(profileString_1);
  19. ourStringBuffer.append(secretThing.toString());
  20. ourStringBuffer.append(name);
  21. ourStringBuffer.append(address);
  22. ourStringBuffer.append(addressSupp);
  23. ourStringBuffer.append(city);
  24. ourStringBuffer.append(&#8220;<span class="quote">state/province</span>&#8221;);
  25. ourStringBuffer.append(country);</pre></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="dialog-macro.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="dialog-macro.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="add-prefix-and-suffix.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 14. A Dialog-Based Macro </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Listing of the Macro</td></tr></table></div></body></html>