Log Message
Replace JavaDocBuilder with JavaProjectBuilder in sitedocs
Modified Paths
Diff
Modified: trunk/qdox/src/site/xhtml/model.xhtml (1506 => 1507)
--- trunk/qdox/src/site/xhtml/model.xhtml 2012-05-09 21:13:01 UTC (rev 1506)
+++ trunk/qdox/src/site/xhtml/model.xhtml 2012-05-09 21:22:33 UTC (rev 1507)
@@ -29,7 +29,7 @@
<h3>Example Code</h3>
<div class="Source Java"><pre>
- JavaDocBuilder builder = new JavaDocBuilder();
+ JavaProjectBuilder builder = new JavaProjectBuilder();
builder.addSource(myReader);
JavaSource src = ""
@@ -56,7 +56,7 @@
<h3>Example Code</h3>
<div class="Source Java"><pre>
- JavaDocBuilder builder = new JavaDocBuilder();
+ JavaProjectBuilder builder = new JavaProjectBuilder();
builder.addSource(myReader);
JavaSource src = ""
@@ -96,7 +96,7 @@
<h3>Example Code</h3>
<div class="Source Java"><pre>
- JavaDocBuilder builder = new JavaDocBuilder();
+ JavaProjectBuilder builder = new JavaProjectBuilder();
builder.addSource(myReader);
JavaClass cls = builder.getClassByName("com.blah.foo.MyClass");
Modified: trunk/qdox/src/site/xhtml/usage.xhtml (1506 => 1507)
--- trunk/qdox/src/site/xhtml/usage.xhtml 2012-05-09 21:13:01 UTC (rev 1506)
+++ trunk/qdox/src/site/xhtml/usage.xhtml 2012-05-09 21:22:33 UTC (rev 1507)
@@ -6,21 +6,21 @@
<h2>Entry Point</h2>
- <p><code><a href="" is the entry point to
+ <p><code><a href="" is the entry point to
QDox. It is responsible for parsing source code, resolving imports and storing
the data.</p>
<p>To create it, all you need to do is call the default constructor.</p>
<div class="Source Java"><pre>
-JavaDocBuilder builder = new JavaDocBuilder();
+JavaProjectBuilder builder = new JavaProjectBuilder();
</pre></div>
<h2>Reading Source Files</h2>
<p>Java source code can then be added to the
- <code><a href=""
+ <code><a href=""
Source can either be read one file at a time (using a java.io.Reader) or an entire source tree
can be added recursively.</p>
@@ -50,10 +50,10 @@
<li>By looking at additional ClassLoaders specified at runtime.</li>
</ul></p>
- <p>All sources and sourcetrees added to the JavaDocBuilder will be parsed. This is often much more than required.
+ <p>All sources and sourcetrees added to the JavaProjectBuilder will be parsed. This is often much more than required.
To increase efficiency use the ClassLibrary to add sourcefolders. Consider these files as lazy parsed sources.</p>
- <p>The current classpath is automaticly set by JavaDocBuilder. In most cases this shall be sufficient, however in some
+ <p>The current classpath is automaticly set by JavaProjectBuilder. In most cases this shall be sufficient, however in some
situations you may want resolve the full classes in external libraries.</p>
<p>To resolve classes from different ClassLoaders (e.g. 3rd party Jar files), the
To unsubscribe from this list please visit:
