diff options
author | aclement <aclement> | 2006-01-13 17:07:57 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-01-13 17:07:57 +0000 |
commit | dd1203a376d6b0dcc865735cf50288a83e710b05 (patch) | |
tree | f3ff2e94d970544d2e9db9c7b5bcdb7e2f691983 /ajdoc/testdata/coverage/foo/ModelCoverage.java | |
parent | ab2150f267eef2ec565cc596b2e0e0412a3bd290 (diff) | |
download | aspectj-dd1203a376d6b0dcc865735cf50288a83e710b05.tar.gz aspectj-dd1203a376d6b0dcc865735cf50288a83e710b05.zip |
more ajdoc changes - see pr121711 - from Helen.
Diffstat (limited to 'ajdoc/testdata/coverage/foo/ModelCoverage.java')
-rw-r--r-- | ajdoc/testdata/coverage/foo/ModelCoverage.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ajdoc/testdata/coverage/foo/ModelCoverage.java b/ajdoc/testdata/coverage/foo/ModelCoverage.java index b05d7bc72..695026642 100644 --- a/ajdoc/testdata/coverage/foo/ModelCoverage.java +++ b/ajdoc/testdata/coverage/foo/ModelCoverage.java @@ -6,6 +6,10 @@ import java.util.List; interface I { } +/** + * doc about the Point class........ + * + */ class Point { int x; static int sx; @@ -28,7 +32,8 @@ class Point { } public int changeX(int x) { - this.x = x; + //this.x = x; + setX(x); return x; } |