Click on the commit message for inspecting the diff
and how the code has been rewritten.
Command line:
svn log -r31996:1 https://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/test/java/org/geotools/metadata/PropertyAccessorTest.java
Rev. | Date | Author | Message |
---|---|---|---|
30852 | 2008-07-03 | desruisseaux | PropertyMap now converts automatically from String to a variety of types (InternationalString, File, Number...) and add singleton to collection. UML identifier name are now accepted as well as property name inferred from method name. |
30640 | 2008-06-12 | acuster | Copyright headers: lib/metadata, this time with feeling (and the el in Toolkit) |
30637 | 2008-06-12 | acuster | Copyright headers: lib/metadata, now normalized to LGPL v2.1 only |
30519 | 2008-06-05 | acuster | Metadata header cleanup and copyright review. |
30258 | 2008-05-08 | acuster | Reshuffle the top level repo: drop uDig, move up trunk, tags, and branches. |
30257 | 2008-05-08 | acuster | Move trunk/gt/ directory contents up to trunk/ and drop gt |
29768 | 2008-04-02 | desruisseaux | Upgrated the metadata and referencing tests to JUnit 4. |
28922 | 2008-01-24 | acuster | Bump the (at)since version to 2.5 since WKTParser was cut from 2.4 |
28540 | 2007-12-29 | acuster | Hide buttons which are not yet used |
28374 | 2007-12-14 | desruisseaux | Use some java 5 features. Added javadoc. Removed AbstractCoverage.dispose() deprecated method (replaced by dispose(boolean)). Cleaning. |
28237 | 2007-12-03 | desruisseaux | Fixed the search for implemented interfaces (looks deeper in the hierarchy). |
28051 | 2007-11-26 | desruisseaux | More Java 5 parameterized types. Include a fix for GEOT-1599 (CitationImpl.getIdentifiers() should returns a set of Identifiers, not a set of Strings). |
25193 | 2007-04-18 | desruisseaux | Fixed some typos in metadata revealed by the new ISOTest. First draft of hints review (still in process). |
25175 | 2007-04-16 | desruisseaux | Removed 'equals', 'hashCode', 'toString' and 'freeze' methods from every metadata implementation. They are now implemented by generic methods inherited from AbstractMetadata, which perform their work using Java reflection. This way we avoid lot of redundancy, some errors introduced by maintenance ('equals' method not updated in the way they should), more systematic implementations (espcially for the 'toString' method, which was not implemented at all for a majority of metadata), more support for future introduction of other metadata standards than ISO 19115, etc. The cost is more runtime overhead, but it still possible to provide custom implementations for 'equals' and 'hashCode' only in the class that appear to be bottleneck, if we want. |
25157 | 2007-04-12 | desruisseaux | Metadata review. Also provided a first draft of support classes for new 'equals(...)' copy constructor implementations backed by Java reflection. |