<html>
<head>
<style><!--
body {background-color:#ffffff;}
.file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
.pathname {font-family:monospace; float:right;}
.fileheader {margin-bottom:.5em;}
.diff {margin:0;}
.tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
.tasklist ul {margin-top:0;margin-bottom:0;}
tr.alt {background-color:#eeeeee}
#added {background-color:#ddffdd;}
#addedchars {background-color:#99ff99;font-weight:bolder;}
tr.alt #added {background-color:#ccf7cc;}
#removed {background-color:#ffdddd;}
#removedchars {background-color:#ff9999;font-weight:bolder;}
tr.alt #removed {background-color:#f7cccc;}
#copied {background-color:#ccccff;}
tr.alt #copied {background-color:#bbbbf7;}
#info {color:#888888;}
#context {background-color:#eeeeee;}
td {padding-left:.3em;padding-right:.3em;}
tr.head {border-bottom-width:1px;border-bottom-style:solid;}
tr.head td {padding:0;padding-top:.2em;}
.task {background-color:#ffff00;}
.comment {white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word;padding:4px;border:1px dashed #000000;background-color:#ffffdd}
.error {color:red;}
hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="5">Commit in <b><tt>metaas/trunk/src</tt></b></td></tr>
<tr><td><tt>main/java/uk/co/badgersinfoil/metaas/dom/<a href="#file1">DocComment.java</a></tt> </td><td></td><td></td><td align="right" id="removed">-5</td><td nowrap="nowrap" align="center">431 -> 432</td></tr>
<tr class="alt"><td><tt>main/java/uk/co/badgersinfoil/metaas/impl/<a href="#file2">ASTASMember.java</a></tt> </td><td></td><td align="right" id="added">+2</td><td align="right" id="removed">-2</td><td nowrap="nowrap" align="center">431 -> 432</td></tr>
<tr><td><tt> /<a href="#file3">ASTASType.java</a></tt> </td><td></td><td align="right" id="added">+2</td><td align="right" id="removed">-2</td><td nowrap="nowrap" align="center">431 -> 432</td></tr>
<tr class="alt"><td><tt> /<a href="#file4">ASTDocComment.java</a></tt> </td><td></td><td></td><td align="right" id="removed">-8</td><td nowrap="nowrap" align="center">431 -> 432</td></tr>
<tr><td><tt>test/java/uk/co/badgersinfoil/metaas/<a href="#file5">DocCommentTests.java</a></tt> </td><td></td><td align="right" id="added">+3</td><td align="right" id="removed">-2</td><td nowrap="nowrap" align="center">431 -> 432</td></tr>
<tr><td></td><td></td><td align="right" id="added">+7</td><td align="right" id="removed">-19</td><td></td></tr>
</table>
<small id="info">5 modified files</small><br />
<pre class="comment">
remove DocComment#{getDocCommentString,setDocComment}. Don't want to support this form of access.
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname">metaas/trunk/src/main/java/uk/co/badgersinfoil/metaas/dom</span><br />
<div class="fileheader"><big><b>DocComment.java</b></big> <small id="info">431 -> 432</small></div>
<pre class="diff"><small id="info">--- trunk/src/main/java/uk/co/badgersinfoil/metaas/dom/DocComment.java        2007-02-24 11:42:44 UTC (rev 431)
+++ trunk/src/main/java/uk/co/badgersinfoil/metaas/dom/DocComment.java        2007-02-24 14:11:34 UTC (rev 432)
@@ -135,9 +135,4 @@
</small></pre><pre class="diff" id="context">          * marker, or a tagged-paragraph
         */
        public void addParaTag(String name, String body);
</pre><pre class="diff" id="removed">-
-
-        // TODO: remove these?
-        public void setDocComment(String text);
-        public String getDocCommentString();
</pre><pre class="diff" id="context"> }
</pre><pre class="diff"><small id="info">\ No newline at end of file
</small></pre></div>
<hr /><a name="file2" /><div class="file">
<span class="pathname">metaas/trunk/src/main/java/uk/co/badgersinfoil/metaas/impl</span><br />
<div class="fileheader"><big><b>ASTASMember.java</b></big> <small id="info">431 -> 432</small></div>
<pre class="diff"><small id="info">--- trunk/src/main/java/uk/co/badgersinfoil/metaas/impl/ASTASMember.java        2007-02-24 11:42:44 UTC (rev 431)
+++ trunk/src/main/java/uk/co/badgersinfoil/metaas/impl/ASTASMember.java        2007-02-24 14:11:34 UTC (rev 432)
@@ -82,11 +82,11 @@
</small></pre><pre class="diff" id="context">         }
        public void setDocComment(String text) {
</pre><pre class="diff" id="removed">-                getDocumentation().setDocComment(text);
</pre><pre class="diff" id="added">+                DocCommentUtils.setDocComment(ast, text);
</pre><pre class="diff" id="context">         }
        public String getDocComment() {
</pre><pre class="diff" id="removed">-                return getDocumentation().getDocCommentString();
</pre><pre class="diff" id="added">+                return DocCommentUtils.getDocComment(ast);
</pre><pre class="diff" id="context">         }
        public String getDescriptionString() {
</pre></div>
<hr /><a name="file3" /><div class="file">
<span class="pathname">metaas/trunk/src/main/java/uk/co/badgersinfoil/metaas/impl</span><br />
<div class="fileheader"><big><b>ASTASType.java</b></big> <small id="info">431 -> 432</small></div>
<pre class="diff"><small id="info">--- trunk/src/main/java/uk/co/badgersinfoil/metaas/impl/ASTASType.java        2007-02-24 11:42:44 UTC (rev 431)
+++ trunk/src/main/java/uk/co/badgersinfoil/metaas/impl/ASTASType.java        2007-02-24 14:11:34 UTC (rev 432)
@@ -89,11 +89,11 @@
</small></pre><pre class="diff" id="context">         }
        public void setDocComment(String text) {
</pre><pre class="diff" id="removed">-                getDocumentation().setDocComment(text);
</pre><pre class="diff" id="added">+                DocCommentUtils.setDocComment(ast, text);
</pre><pre class="diff" id="context">         }
        public String getDocComment() {
</pre><pre class="diff" id="removed">-                return getDocumentation().getDocCommentString();
</pre><pre class="diff" id="added">+                return DocCommentUtils.getDocComment(ast);
</pre><pre class="diff" id="context">         }
        public String getDescriptionString() {
</pre></div>
<hr /><a name="file4" /><div class="file">
<span class="pathname">metaas/trunk/src/main/java/uk/co/badgersinfoil/metaas/impl</span><br />
<div class="fileheader"><big><b>ASTDocComment.java</b></big> <small id="info">431 -> 432</small></div>
<pre class="diff"><small id="info">--- trunk/src/main/java/uk/co/badgersinfoil/metaas/impl/ASTDocComment.java        2007-02-24 11:42:44 UTC (rev 431)
+++ trunk/src/main/java/uk/co/badgersinfoil/metaas/impl/ASTDocComment.java        2007-02-24 14:11:34 UTC (rev 432)
@@ -63,12 +63,4 @@
</small></pre><pre class="diff" id="context">                         DocCommentUtils.setDocComment(ast, comment + "@"+name+" "+body);
                }
        }
</pre><pre class="diff" id="removed">-
-        public String getDocCommentString() {
-                return DocCommentUtils.getDocComment(ast);
-        }
-
-        public void setDocComment(String text) {
-                DocCommentUtils.setDocComment(ast, text);
-        }
</pre><pre class="diff" id="context"> }
</pre><pre class="diff"><small id="info">\ No newline at end of file
</small></pre></div>
<hr /><a name="file5" /><div class="file">
<span class="pathname">metaas/trunk/src/test/java/uk/co/badgersinfoil/metaas</span><br />
<div class="fileheader"><big><b>DocCommentTests.java</b></big> <small id="info">431 -> 432</small></div>
<pre class="diff"><small id="info">--- trunk/src/test/java/uk/co/badgersinfoil/metaas/DocCommentTests.java        2007-02-24 11:42:44 UTC (rev 431)
+++ trunk/src/test/java/uk/co/badgersinfoil/metaas/DocCommentTests.java        2007-02-24 14:11:34 UTC (rev 432)
@@ -28,7 +28,7 @@
</small></pre><pre class="diff" id="context">
        public void testEndOfCommentMarker() {
                try {
</pre><pre class="diff" id="removed">-                        clazz.getDocumentation().setD<span id="removedchars">ocComment</span>("*/");
</pre><pre class="diff" id="added">+                        clazz.getDocumentation().setD<span id="addedchars">escriptionString</span>("*/");
</pre><pre class="diff" id="context">                         fail("should not allow '*/' within a doc-comment");
                } catch (SyntaxException e) {
                        // expected
</pre><pre class="diff"><small id="info">@@ -59,7 +59,8 @@
</small></pre><pre class="diff" id="context">         }
        public void testGetExistingDescription() {
</pre><pre class="diff" id="removed">-                clazz.getDocumentation().setDocComment("hello world\n@param foo bar");
</pre><pre class="diff" id="added">+                clazz.getDocumentation().setDescriptionString("hello world");
+                clazz.getDocumentation().addParaTag("param", "foo bar");
</pre><pre class="diff" id="context">                 assertEquals("hello world", clazz.getDescriptionString().trim());
        }
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -> email">CVSspam</a> 0.2.12</small></center>
</body></html>