<?xml version="1.0" encoding="UTF-8"?>
<templates><codetemplate name="constructorcomment" description="Comment for created constructors" context="constructorcomment_context" enabled="true">/**
 * TODO: Summary - text up to the first period becomes the javadoc summary.
 * Then include detail about how this works, including boundary conditions,
 * assumptions and any known &apos;gotchas&apos;.
 * ${tags}
 */</codetemplate><codetemplate name="typecomment" description="Comment for created types" context="typecomment_context" enabled="true">/**
 * TODO: Summary - text up to the first period becomes the javadoc summary.
 * Then include detail about how this works, including boundary conditions,
 * assumptions and any known &apos;gotchas&apos;.
 */</codetemplate><codetemplate name="methodcomment" description="Comment for non-overriding methods" context="methodcomment_context" enabled="true">/**
 * TODO: Summary - text up to the first period becomes the javadoc summary.
 * Then include detail about how this works, including boundary conditions,
 * assumptions and any known &apos;gotchas&apos;.
 * ${tags}
 */</codetemplate><codetemplate name="overridecomment" description="Comment for overriding methods" context="overridecomment_context" enabled="true">/**
 * TODO: Summary - text up to the first period becomes the javadoc summary.
 * Then include detail about how this works, including boundary conditions,
 * assumptions and any known &apos;gotchas&apos;.
 * ${see_to_overridden}
 */</codetemplate><codetemplate name="newtype" description="Newly created files" context="newtype_context" enabled="true">${package_declaration}

/**
 * TODO: Brief summary here - one or two sentence overview.
 * &lt;br&gt;
 * TODO: Detailed explanation of how this works, 
 * what it subclasses or what should subclass it, etc.
 * This should be as good as the Sun Javadocs.
 * Consider embedding some simple examples of using this class.
 * See the Sun Thread class for an example.
 * &lt;hr&gt;
 * Target: Which Java systems - PC, JStamp, TStik, etc?
 * &lt;br&gt;
 * &lt;hr&gt;
 * Copyright ${year} Systronix Inc. All Rights reserved. &lt;br&gt;
 * Systronix Inc &lt;br&gt;
 * 555 South 300 East Salt Lake City Utah USA 84105&lt;br&gt;
 * &lt;a href=http://www.systronix.com&gt;www.systronix.com&lt;/a&gt; &lt;br&gt;
 * &lt;hr&gt;
 * CVS updates thw following line with every commit. This helps us manage our repository. &lt;br&gt;
 * $$Header: /home/cvsroot/PROJECTS/templates/eclipse/codetemplates_bboyes.xml,v 1.7 2003/12/01 21:37:59 bab Exp $$
 * &lt;hr&gt;
 * REVISION HISTORY
 * &lt;ul&gt;
 * &lt;li&gt; 0.0 ${date} ${time} created by ${user}&lt;/li&gt;
 * &lt;li&gt; 0.0 ${year} Nov 17 bboyes	comment about this revision&lt;/li&gt;
 * &lt;/ul&gt;
 * &lt;hr&gt;
 * @version 0.0 (Be sure to describe this version in the revision history)
 * @author ${user} &lt;br&gt;
 */
${type_declaration}</codetemplate><codetemplate name="catchblock" description="Code in new catch blocks" context="catchblock_context" enabled="true">// ${todo} Auto-generated catch block
${exception_var}.printStackTrace();</codetemplate><codetemplate name="methodbody" description="Code in created method stubs" context="methodbody_context" enabled="true">// ${todo} Auto-generated method stub
${body_statement}</codetemplate><codetemplate name="constructorbody" description="Code in created constructor stubs" context="constructorbody_context" enabled="true">${body_statement}
// ${todo} Auto-generated constructor stub</codetemplate></templates>