Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • irt/autopsy
1 result
Show changes
Showing
with 0 additions and 6961 deletions
This diff is collapsed.
JDiff Doclet
------------
Matthew Doar
mdoar@pobox.com
The JDiff doclet is used to generate a report describing the
difference between two public Java APIs.
The file jdiff.html contains the reference page for JDiff. The latest
version of JDiff can be downloaded at:
http://sourceforge.net/projects/javadiff
To use the Ant task on your own project, see example.xml. More examples
of using JDiff to compare the public APIs of J2SE1.3 and J2SE1.4 can
be seen at http://www.jdiff.org
For an example with the source distribution, run "ant" and
look at the HTML output in ./build/reports/example/changes.html
The page at ./build/reports/example/changes/com.acme.sp.SPImpl.html
shows what a typical page of changes looks like.
System Requirements
-------------------
JDiff has been tested with all releases of Java since J2SE1.2 but
releases of JDiff after 1.10.0 focus on JDK1.5.
License
-------
JDiff is licensed under the Lesser GNU General Public License (LGPL).
See the file LICENSE.txt.
Acknowledgements
----------------
JDiff uses Stuart D. Gathman's Java translation of Gene Myers' O(ND)
difference algorithm.
JDiff uses Xerces 1.4.2 from http://www.apache.org.
JDiff also includes a script to use the classdoc application from
http://classdoc.sourceforge.net or http://www.jensgulden.de, by Jens
Gulden, (mail@jensgulden.de), to call a doclet such as jdiff on a .jar
file rather than on source.
Many thanks to the reviewers at Sun and Vitria who gave feedback on early
versions of JDiff output, and also to the distillers of Laphroaig, and to
Arturo Fuente for his consistently fine cigars which helped inspire
much of this work.
Footnote:
If you are looking for a generalized diff tool for XML, try diffmk from
http://wwws.sun.com/software/xml/developers/diffmk/
Released
--------
1.1.1 - 3rd October 2008
Patch for 1990278 (the xml report doesn't escape & in type names) from
owenomalley included.
1.1.0 - 3rd September 2007
Support for generics (new with J2SE1.5) added. Still need to add
support for enums, varargs and annotations.
#1604749 fixed - Scanning only specified files is broken
Merged patch from Stefan Aust so you can pass a "source" argument to the Ant
task to specify the language version, e.g. for dealing with asserts.
1.0.10 - 31st May 2004
#954228 Feature request from Kohsuke Kawaguchi (and 2 years ago from
Steve Loughran!) to add a custom Ant Task for JDiff.
#875516 Some HTML elements in user comments were being processed incorrectly.
Thanks to Jojo Dijamco for pointing this bug out.
#875470 @link tags were not expanded in user comments.
#877437 Other issues with @link in user comments.
Many thanks to Brian Duff for these bugs and their fixes.
#815039 If the only changes in a class are in native or sync method changes,
and showAllChanges is not used, then no change has occurred. Thanks to
C. Le Goff for finding this bug and providing the fix.
#872344 JDiff was using a relative URI for XMLReader.parse(). This
made it hard to use an XML parser other than Xerces. Thanks to Brian
Duff for finding this bug and providing the fix.
Tested with j2sdk1.5.0 beta1, released with examples built by JDK1.4.2.
Updated copyright notices to 2004.
1.0.9 - 19th June 2003
Darren Carlton <darren at bea.com> pointed out that Javadoc
package.html files may, in fact, be full HTML documents.
This fix only solves the issue for package.html
HTML, not the general issue of HTML comments.
Jan Rueten-Budde <jan at rueten-budde.de> noted that the -excludetag
option was not working for package-level documentation block,
and that its documentation needed improvement.
Jan also observed that only the simple names, not the fully-qualified names of
exceptions were being saved and compared. This meant that if an exception
changed class, but kept the same name, the change was not detected. The
qualified name is now used. See the troubleshooting section for how to use the
simple names if the entries in reports are too large.
Tested with J2SE1.4.1.
Minor HTML formatting fixes.
Changed the default behaviour to not show changes in native and sychronized
modifiers. Added the -showallchanges to show changes in these modifiers. Thanks
go to Jesse Glick for this.
Bug 757376. Now copes with body elements with attributes in package.htm[l]
1.0.8 - 31st July 2002
Completed feature request 543260 (add an option to emit XML in another
directory) - thanks to Martin Bosak for these changes.
Fixed bug 587072 (InvocationTargetException doing diff) by adding extra string
length checks when determining the first sentence of a comment.
Added a top-level ANT build file.
1.0.7 - June 24th 2002
Completed feature request 561922 to make JDiff JAXP compliant. This
change required xerces.jar to be added to the -docletpath values in
build scripts.
Fixed feature request 510307 and bug 517383: duplicate comment
ids. This only occurred when package-level documentation existed
and also the last file scanned was an interface.
Fixed bug where comments for interfaces did not have @link tags
expanded.
Fixed bug 547422 by adding a note about other ANT Javadoc task
properties to the example build.xml file.
Removed some left-over Windows variable notation from csh files (patch
565921) and made the ANT build.xml files less platform-dependent.
Added more comments in the ANT build.xml files about the -javadocold
and -javadocnew arguments, and how to make sure that links to shipped Javadoc
documentation are relative, and not absolute.
Created KNOWN_LIMITATIONS.txt file to document issues which are
unlikely to be fixed soon.
Renamed JDIFF_INSTALL local variable to JDIFF_HOME in Jdiff build scripts,
since this seems to be more like ANT (patch 566022).
1.0.6 - January 9th 2002
Fixed bug 494135 (Compare classes which have no package).
Fixed bug 494970 (HTML strike element in the index was not closed when
fields of the same name were deleted from different classes), and made
a minor change to the index entries for fields with the same names.
Fixed a bug where not specifying -javadocold could lead to a broken link
in removed constructor text, and in the links to old package descriptions.
Added feature request 494058, an ANT 1.4.1 build file for the JDiff
examples, using the ANT Javadoc task - thanks to Douglas Bullard.
Added feature request 493367 (Ability to use other XML parsers) -
thanks to Vladislav Protasov for suggesting this.
Changed the default to be to *not* report changes in documentation. Use the
-docchanges to enable this option.
Added the ability to run jdiff.JDiff as a Java application called from a
batch file or shell script, which makes the necessary calls to Javadoc
using a single XML configuration file.
Added better detection of a method or field moving to or from a parent
class.
Added checking for changes in field values (the @value tag in J2SE1.4).
Changed the link to existing Javadoc link to the specific package or class.
Improved the algorithm used to find the summary sentence in documentation.
Added the -windowtitle and -doctitle options to make it easier to
uniquely identify different reports about the same APIs.
Added ability to validate the XML generated by JDiff.
Changed the XML representation of <implements> to be a single element.
Options to display the version and usage of JDiff added.
More cleaning up of the generated HTML.
1.0.5 - November 17th 2001
Fixed bug 482207 (Unable to run javadiff behind a firewall) by adding
the -baseURI option.
Fixed bug 482194 (Missing support for iso-8859-1 charset), which also
caused the option -allsentences to be renamed -firstsentence and
reversed in sense.
Added links to previous and next packages and classes.
Added top-level index file for all documentation differences.
Added links from documentation difference pages to classes, in
addition to the existing links to constructors, methods and fields.
Added META tags to generated HTML.
Removed unnecessary use of xhtml1-transitional.dtd, since all comment
text is in CDATA elements.
Used http://www.w3.org/People/Raggett/tidy/ to clean up the generated HTML.
Corrected somes uses of JDK/J2SE and the capitalization of Javadoc.
1.0.4 - November 8th 2001
Added feature request 472605 with the documentation differences page,
which shows specific changes in Javadoc documentation as inserts and deletes.
Improved the end of sentence checking in doc blocks.
Added graphics of the statistics histograms.
1.0.3 - November 2nd 2001
Fixed bugs in tracking package and class-level documentation changes.
Fixed bugs in tracking documentation changes at the constructor,
method and field level.
Fixed a bug in indexes links to default constructors which had changed
Fixed a bug that -nodocchanges did not behave as expected
Fixed a bug in converting @link tags to HTML links, but some broken
links remain.
Fixed bug 472529 (updated documentation for new options)
Fixed bug 472703 (background color is weird)
Fixed bug 476930 (HTML tables need &nbsp; in some places)
Added feature request 476946 (location of user comments file)
Added feature request 476201 (Need more statistics) by creating the
-stats option which generates a statistics page in the report.
Added feature request 476202 (Port to J2SE1.4)
Improved merging of additions and removals into changes for methods.
Better display of elements which start with underscores in indexes
1.0.2 - October 2001
Added scripts for non-Windows platforms
Added support for emitting all documentation for an API to the XML, and then
tracking changes in the documentation, with links to the old and new comments.
Added the option -allsentences to emit all documentation for an API.
Added an option -nodocchanges to disable the comparison of documentation.
1.0.1 - October 2001
Fixed bug 469794.
Added script to generate differences between jar files.
Added documentation about use behind firewalls.
Added notes for future work.
1.0 - October 9th 2001
First release of JDiff.
File deleted
JDiff 1.1.1
Known limitations, features and bugs which aren't likely to get fixed
soon are listed here. There is another list of smaller gripes in src/TODO.
If you need one of these items to be fixed, submit a patch to the
patches page at javadiff.sourceforge.net, or contact Matt Doar at
mdoar@pobox.com.
The number which follows each entry is the SourceForge bug identifier.
1) HTML comments are also included in the diff between
documentation. (510309).
2) JDiff doesn't expand @docroot doc tags in Javadoc1.4
3) JDiff does not support locales other than English (530063).
4) Handling of @link tags in the first sentence of comments is not as
general as it should be. See convertAtLinks() comments.
5) strictfp and strict modifiers are not checked for between
APIs (547422).
6) Changes in parameter names are not tracked.
********************
* JDiff Work Items *
********************
KNOWN BUGS
==========
BUG: JDiff doesn't expand @docroot doc tags in Javadoc1.4
BUG: Handling of @link tags in the first sentence of comments is not as
general as it should be. See convertAtLinks() comments.
MINOR BUG: @links to methods may not be expanded properly if we don't have the
signature in the @link. This only happens once (at invoke) in J2SE1.2/1.3,
and the link goes to the right page, just not the right named anchor.
Pretty rare.
BUG? The MergeChanges code may not be transferring all change information into
the MemberDiff for methods and fields?
DESIGN
======
Short Term:
----------
Add an option for verbose output?
Add an option to redirect output to a log file?
Does not check when there is a change in the class in which a locally defined
method is overriding another method.
Statistics - is a change in inheritance for a method or field really equivalent to one add and one delete in all cases?
org.omg.CORBA.AnySeqHelper is generated by javac or javadoc using J2SE1.3 on
in J2SE1.2,
so has no documentation at the Sun website. Same for J2SE1.4 with org.omg.CosNaming.BindingIteratorPOA.html. This is probably due to the issue now noted in the "Limitations" section in jdiff.html.
No longer need the lib/TR directory - files can be deleted
Generating EJB1.2 to EJB1.2 there is an added constructor with multiple
parameters whose Javadoc named anchor has no space in it, but other such
constructors do. This produces a link to the top of the page rather than the
correct place. Same with the Servlet report.
538102. A developer may not want to show changes from
native to non-native, etc, since this is really
an implementation detail. An easy way to select
what is shown would be useful.
548382. Separate class and interface information might be useful,
since Javadoc does so.
476310. There are some cases where a doc change is the only change.
Should this really count towards the API % change?
Create an ANT script instead of prepare_release.bat
Create a top-level ANT script.
Long Term:
---------
549926 - add ability to emit XML representation of the changes, which can then
be transformed into HTML.
Ship .gz and .tar?
Better end of sentence detection for annotations - use the J2SE14 approach?
Support inherited exclusion in RootDocToXML.java
Refactor code in Diff.java to avoid duplication
Better setting of trace per module
Add a color square to indicate how much a package or class changed
Add interactive ability with jdiff.JDiff for easiest use?
Add progress bars for the longer parts of the program?
Does Javadoc add "()" for links to methods with no arguments? It does
now, but perhaps it did not with J2SE1.2 javadoc?
ant.bat is a complex script for all windows platforms - could be useful
icontrol and ant page at has helpful info for a JavaUI and ANT task
http://icplus.sourceforge.net/dbc_example.html
How to find which classes are documented in a J2SE release, since it is
a subset of of the source classes shipped.
[All files marked as 404 (not found) by Xenu should have their packages
removed from the list scanned when generating the XML. E.g.
http://java.sun.com/j2se/1.3/docs/api/java/awt/dnd/peer/DragSourceContextPeer.html
http://java.sun.com/j2se/1.3/docs/api/java/text/resources/DateFormatZoneData.html
These packages are not documented in the J2SE1.3.]
Reduce the memory usage with large APIs
Use -linksource in tests with J2SE1.4. (Source info is now in the XML)
Break up the XML file into smaller files?
Sometimes "changed" is not linked but documentation is noted as having
changed because the documentation was inherited from a superclass.
Break out subclasses in DiffMyers.java for jar files?
In Javadoc generated HTML, the methods and fields which are inherited
from a parent do not have named anchors for the JDiff to link to them. This
means that the links go to the correct child class, but the user has to look
in the inherited methods and fields sections to find the right element.
This was fixed by checking for the case in HTMLReportGenerator, but the tricky
case, which is not checked for, is the case with inner classes and methods or
fields moving to their parent class. In this case, the class will be
correct, but the link will take you to the top of the page, rather than the
actual method.
Add support for differences for other languages - create base classes,
generalize XML.
The comment data in the deprecated attribute should really be in a CDATA
section to avoid having to hide the HTML tags. But his would mean that the
attribute deprecated would become an element and be harder to parse
the text out.
Add ability to specify the location of the generated XML file?
Add a "jdiff_" prefix to all generated HTML files to clearly distinguish them
from Javadoc generated files?
Good to add support for Notes - force altered classes etc recorded in user_comments.xml to appear
Break HTMLReportGenerator up into at least two files
Should have added new class to ClassDiff etc? Tidy up where possible.
Constructor params should be elements?
Define accessor methods for _ vars
Use a modifiers field instead of separate modifiers in XML to save space?
Add a name_ field to the ConstructorAPI class? Or a common superclass?
The final comparison call to Javadoc could be a separate Java program, but it
seems more obvious to use Javadoc there too. Also provides the future ability
to scan the current product at the same time as comparing it, reducing three
steps to two.
The index files are quite large with J2SE14 - 1.7MB for an HTML file.
Provide an option to include the sub-totals with the statistics table?
TESTS
=====
More checking of excludeTag with "@docset Internal" works, or however the tag
value is defined in J2SE1.4
Test change from a class to an interface
Test interfaces more
Test very long names
Test changes in deprecation at a class level
Test @first again
Test @link with all different formats
Test comments, multiple ids and the warning of multiple identical ids
Test that identifiers with spaces work
Test classes with no packages
Check that the comments file tests correctly for the correct APIs
Test case of a package and a class having the same name
Test case of moving a method into a superclass and vice versa
Test nested class definitions more closely
Test moving methods and fields from one superclass to another
Test @value changes
Compare new test results to old test results to check parent/child work
DOCUMENTATION, BUILD AND EXAMPLES
=================================
Examples:
---------
Add more changes
Documentation:
-------------
Example of writing your own comments for the report
Developers' notes: TODO is must, OPTION is maybe
REPORT PRESENTATION
===================
Add the ability to use the API names in the -doctitle and -windowtitle options
Add the ability to add a watermark, default "Internal", to the generated pages
Minor: when only one kind of change exists in an index, then that one
choice should be prechosen and highlighted.
Update all the error and warning messages in jdiff.html
Better text demo of showing all private changes in APIs
Fix the small size of old and new links
Add ability to have no newjavadoc links either
Better presentation of all the documentation changes? Perhaps sorted?
Run HTML checker on all generated HTML files - no errors
- some warnings about <span> elements mixed with <blockquote>, due to
a combination of diffing HTML with using HTML output
and others still to fix, using tidy and the tests:
Warning: html doctype doesn't match content
Warning: <nobr> is probably intended as </nobr>
1 ChangedPackage.ChangedMethods.html:92:156: Warning: replacing unexpected </nobr> by </code>
1 ChangedPackage.ChangedMethods.html:71:187: Warning: discarding unexpected </nobr>
1 ChangedPackage.ChangedMethods.html:71:179: Warning: trimming empty <nobr>
Avoid single letter indexes with just one entry on a new line
If a return type has a [] in it, browser may break the line before the []
Maybe the table should be name and a row under it for the description , to stop cramped names and descriptions?
Add note that links in docdiffs may not necessarily work, since some of them
are written expecting to be in documents in the Java API tree.
Add a "having problems?" page?
MISCELLANEOUS
=============
Handy commands for SourceForge:
export CVS_RSH=ssh
cvs -z3 -d:ext:mdoar@javadiff.cvs.sourceforge.net:/cvsroot/javadiff co -P jdiff
ssh -l mdoar javadiff.sourceforge.net
scp jdkchanges.zip mdoar@javadiff.sourceforge.net:/home/groups/j/ja/javadiff/htdocs/
scp jdkchanges.zip mdoar@jdiff.sourceforge.net:/home/groups/j/jd/jdiff/htdocs/
scp index.html mdoar@javadiff.sourceforge.net:/home/users/m/md/mdoar/jdiff/htdocs
crontab when logged in as mdoar in /home/users/m/md/mdoar:
0 1 * * * /home/users/m/md/mdoar/nightly.sh > /dev/null
/home/users/m/md/mdoar/nightly.sh contains:
cd tarballs
cvs -Q -d:pserver:anonymous@cvs1:/cvsroot/javadiff export -Dtomorrow jdiff
if [ -d jdiff ]
then
echo "Tarball created on: " > jdiff/CREATED_ON
echo `date` >> jdiff/CREATED_ON
tar czf /home/groups/j/ja/javadiff/htdocs/jdiff/jdiff_latest.tar.gz jdiff
rm -rf jdiff
fi
These are the CVS repository backups, only changed when something has changed:
http://cvs.sourceforge.net/cvstarballs/javadiff-cvsroot.tar.bz2
ftp upload.sourceforge.net
anonymous
cd incoming
put jdiff-1.1.0.zip
put jdiff-1.1.0-src.zip
cvs tag JDIFF_1_1_0 .
Creating a src package:
mv jdiff jdiff-1.1.0-src
find jdiff-1.1.0-src | zip source -@
mv source.zip jdiff-1.1.0-src.zip
(Probably neater to do it in Ant and exclude CVS directories)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<meta name="verify-v1" content="1pJFfshdW8CD9kVpWKs/HpekVbolROysqxdjRxKSh+E=" /><META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=iso-8859-1">
<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
<TITLE>JDiff - An HTML Report of API Differences</TITLE>
<LINK REL="stylesheet" TYPE="text/css"
HREF="http://javadiff.cvs.sourceforge.net/*checkout*/javadiff/jdiff/doc/stylesheet.css
TITLE="Style"></HEAD>
<BODY BGCOLOR="#ffffff">
<table width="100%">
<tr>
<td align="left"><A href="http://sourceforge.net/projects/javadiff/">
<IMG src="http://javadiff.cvs.sourceforge.net/*checkout*/javadiff/jdiff/lib/jdiff_logo.gif"
width="88" height="31" border="0" alt="JDiff Logo"><br>JDiff Project</A></td>
<td width="40%">
<center>
<span style="background: #FFFF00">JDiff will always remain free, but <a href="http://www.amazon.com/o/registry/2HEXGDBO2S63Y">donations</a> are gratefully
accepted.</span>
</center>
</td>
<td align="right"><A href="http://sourceforge.net"> <IMG src="http://sourceforge.net/sflogo.php?group_id=37160" width="88" height="31" border="0" alt="SourceForge Logo"></A></td>
</tr>
</table>
<center>
<H1>JDiff - An HTML Report of API Differences</H1>
</center>
<BLOCKQUOTE>
<b>JDiff</b> is a Javadoc <a
href="http://java.sun.com/j2se/javadoc">doclet</a> which generates an
HTML report of all the packages, classes, constructors, methods, and
fields which have been removed, added or changed in any way, including
their documentation, when two APIs are compared. This is very useful
for describing exactly what has changed between two releases of a
product. Only the API (Application Programming Interface) of each
version is compared. It does not compare what the source code does
when executed.
</BLOCKQUOTE>
<BLOCKQUOTE>
It's great for reporting what has changed between two releases of your
product!
You can download the <a href="http://sourceforge.net/projects/javadiff/">latest
version from here</a>, with a module name of <code>jdiff</code>.
There is also an article originally published <a href="http://javadiff.cvs.sourceforge.net/*checkout*/javadiff/jdiff/doc/JDiffArticle.pdf"><i>Java Developers Journal</i></a>.
</BLOCKQUOTE>
<HR>
<BLOCKQUOTE>
<b>
Note: to eliminate the annoying <code>register.com</code> banner,
after you choose a report from below, simply click on &quot;No
Frames&quot; or &quot;Frames&quot;.
</b>
</BLOCKQUOTE>
<h2>
<a href="http://javadiff.cvs.sourceforge.net/*checkout*/javadiff/jdiff/doc/jdiff.html">Documentation</a>
</h2>
<A NAME="sampleoutput">
<h2>Sample Output</h2>
<BLOCKQUOTE>
<table>
<tr>
<td>
<a href="http://guava-libraries.googlecode.com/svn/trunk/javadoc/jdiff/changes.html">
<b>Guava API</a></b> changes. Guava is a Google project that contains several of Google's core Java libraries.
</td>
</tr>
<tr>
<td>
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se142_j2se150b1/changes.html">
<b>Comparing J2SE1.4.2 and J2SE1.5.0b1</a>.</b>
Report (KB, gzip'd tar)
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se142_j2se150b1/j2se142_j2se150b1.tar.gz">Download</a>
<--
<img border="0" src="http://javadiff.cvs.sourceforge.net/*checkout*/javadiff/jdiff/lib/new.gif" alt="NEW!">
-->
</td>
</tr>
<tr>
<td>
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se140_j2se141/changes.html">
<b>Comparing J2SE1.4.0 and J2SE1.4.1</a>.</b>
Report (13KB, gzip'd tar)
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se140_j2se141/j2se140_j2se141.tar.gz">
<b>Download</a></b>
</td>
</tr>
<tr>
<td>
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se140_j2se141_docs/changes.html">
<b>Comparing J2SE1.4.0 and J2SE1.4.1</a> including documentation and
statistics.</b>
Report (528KB, gzip'd tar)
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se140_j2se141_docs/j2se140_j2se141_docs.tar.gz">
<b>Download</a></b>
</td>
</tr>
<tr>
<td>
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se131_j2se14/changes.html">
<b>Comparing J2SE1.3.1 and J2SE1.4</a>.</b>
Report (456KB, gzip'd tar)
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se131_j2se14/j2se131_j2se14.tar.gz">
<b>Download</a></b>
</td>
</tr>
<tr>
<td>
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se131_j2se14_docs/changes.html">
<b>Comparing J2SE1.3.1 and J2SE1.4</a> including documentation and
statistics.</b>
Report (2.9MB, gzip'd tar)
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se131_j2se14_docs/j2se131_j2se14_docs.tar.gz">
<b>Download</a></b>
</td>
</tr>
<tr>
<td>
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se13_j2se131_docs/changes.html">
<b>Comparing J2SE1.3 and J2SE1.3.1</a> including documentation and
statistics</b>
</td>
</tr>
<tr>
<td>
<a href="http://javadiff.sourceforge.net/jdiff/reports/j2se12_j2se13/changes.html">
<b>Comparing J2SE1.2 and J2SE1.3</b></a>
</td>
</tr>
<tr>
<td>
<a href="http://jdiff.sourceforge.net/jdiff/reports/j2se12_j2se13_docs/changes.html">
<b>Comparing J2SE1.2 and J2SE1.3</a> including documentation and statistics</b>
</td>
</tr>
</table>
</BLOCKQUOTE>
<HR>
<p align="center">
<font size="-1">
Copyright &copy; 2001-2010 <a href="mailto:mdoar@pobox.com">Matthew B. Doar</a><br> JDiff is licensed under the <a href="http://cvs.sourceforge.net/viewcvs.py/*checkout*/javadiff/jdiff/LICENSE.txt">LGPL</a>.
</font>
</p>
</BODY>
</HTML>
This diff is collapsed.
/* Page background color */
body { font-family: arial; }
<html>
<head>
<title>Example page</title>
</head>
<body>
<p>Moved to <a href="http://example.org/">example.org</a>
or <a href="http://example.com/">example.com</a>.</p>
</body>
</html>
\ No newline at end of file
File deleted
This diff is collapsed.
<?xml version='1.0'?>
<!DOCTYPE xs:schema SYSTEM "XMLSchema.dtd" [
<!ENTITY % p 'xs:'>
<!ENTITY % s ':xs'>
<!ATTLIST xs:documentation xmlns CDATA #IMPLIED>
]>
<xs:schema targetNamespace="http://www.w3.org/2000/10/XMLSchema-instance"
xmlns:xs="http://www.w3.org/2000/10/XMLSchema">
<xs:annotation>
<xs:documentation xmlns="">
<h1>XML Schema instance namespace</h1>
<p>See <a href="http://www.w3.org/TR/xmlschema-1/">The XML Schema draft recommendation</a> for an introduction</p>
<hr />
<address><a href="mailto:ht@tux.w3.org">Henry S. Thompson</a></address>
$Date: 2001/11/16 06:19:40 $<br />
$Id: XMLSchema-instance,v 1.1 2001/11/16 06:19:40 mdoar Exp $
</xs:documentation>
</xs:annotation>
<xs:attribute name="type">
<xs:annotation>
<xs:documentation>No definitions are provided here, as
this schema is never used as such</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="null"/>
<xs:attribute name="schemaLocation"/>
<xs:attribute name="noNamespaceSchemaLocation"/>
</xs:schema>
This diff is collapsed.
<?xml version='1.0'?>
<!DOCTYPE xs:schema SYSTEM "XMLSchema.dtd" [
<!ATTLIST xs:documentation xmlns CDATA #IMPLIED>
<!ELEMENT p ANY>
<!ELEMENT a ANY>
<!ATTLIST a href CDATA #IMPLIED>
<!ELEMENT hr ANY>
<!ELEMENT h1 ANY>
<!ELEMENT br ANY>
]>
<xs:schema targetNamespace="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.w3.org/1999/xhtml">
<xs:annotation>
<xs:documentation>
<h1>XML Schema instance namespace</h1>
<p>See <a href="http://www.w3.org/TR/xmlschema-1/">the XML Schema
Recommendation</a> for an introduction</p>
<hr />
$Date: 2002/01/09 20:32:53 $<br />
$Id: XMLSchema-instance,v 1.1 2002/01/09 20:32:53 mdoar Exp $
</xs:documentation>
</xs:annotation>
<xs:annotation>
<xs:documentation><p>This schema should never be used as such:
<a href="http://www.w3.org/TR/xmlschema-1/#no-xsi">the XML
Schema Recommendation</a> forbids the declaration of
attributes in this namespace</p>
</xs:documentation>
</xs:annotation>
<xs:attribute name="nil"/>
<xs:attribute name="type"/>
<xs:attribute name="schemaLocation"/>
<xs:attribute name="noNamespaceSchemaLocation"/>
</xs:schema>
/**
* This class is used only as a "null" argument for Javadoc when comparing
* two API files. Javadoc has to have a package, .java or .class file as an
* argument, even though JDiff doesn't use it.
*/
public class Null {
public Null() {
}
}
thirdparty/jdiff/v-custom/lib/background.gif

559 B

thirdparty/jdiff/v-custom/lib/black.gif

799 B

File deleted