summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/Resolver.java
Commit message (Collapse)AuthorAgeFilesLines
* Quiet gcj warnings.David A. Madore2011-09-051-1/+0
|
* Remove now useless cruft ("daml magic" URLs).David A. Madore2011-09-031-37/+0
|
* Quiet gcj warnings.David A. Madore2011-08-261-0/+1
|
* Various "stylistic" improvements suggested by Joshua Bloch's book.David A. Madore2010-04-221-4/+8
| | | | | | Use @Override annotation. Limit accessibility of fields. Make final what can be. Use complex enums. Don't ignore exceptions. Some more changes on exceptions thrown.
* Handle x-daml-magic URL (this should go away eventually, of course).David A. Madore2010-04-111-0/+38
|
* Start a Java version of a daml engine. So far, just the identity transform.David A. Madore2010-04-111-0/+151
Even for something so completely trivial, this was a pain to write, because some stupid XML catalog was distributed with a DOCTYPE referencing a broken URL which could not be replaced by a local file because the catalog engine was bootstrapping; nor did Xerces provide a way, in org.apache.xerces.util.XMLCatalogResolver, to provide a bootstrap resolver: so I had to partially rewrite XMLCatalogResolver.