From: <jos...@us...> - 2008-09-28 16:51:07
|
Revision: 82 http://tmapi.svn.sourceforge.net/tmapi/?rev=82&view=rev Author: joschmidt Date: 2008-09-28 16:50:56 +0000 (Sun, 28 Sep 2008) Log Message: ----------- prologue: changed "futher" to "further" Modified Paths: -------------- trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java Modified: trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java =================================================================== --- trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java 2008-09-16 12:32:45 UTC (rev 81) +++ trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java 2008-09-28 16:50:56 UTC (rev 82) @@ -28,7 +28,7 @@ * This index provides access to {@link Topic}s used in * <a href="http://www.isotopicmaps.org/sam/sam-model/#sect-types">type-instance</a> * relationships or as type of a {@link org.tmapi.core.Typed} construct. - * Futher, the retrieval of {@link Association}s, {@link Role}s, + * Further, the retrieval of {@link Association}s, {@link Role}s, * {@link Occurrence}s, and {@link Name}s by their <tt>type</tt> property is * supported. * </p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lh...@us...> - 2010-03-05 20:32:36
|
Revision: 167 http://tmapi.svn.sourceforge.net/tmapi/?rev=167&view=rev Author: lheuer Date: 2010-03-05 20:32:27 +0000 (Fri, 05 Mar 2010) Log Message: ----------- Fixed docs, reported by Jan Schreiber Modified Paths: -------------- trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java Modified: trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java =================================================================== --- trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java 2010-03-02 23:56:30 UTC (rev 166) +++ trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java 2010-03-05 20:32:27 UTC (rev 167) @@ -39,7 +39,8 @@ public interface TypeInstanceIndex extends Index { /** - * Returns the topics which are an instance of the specified <tt>type</tt>. + * Returns the topics which are an instance of the specified <tt>type</tt> or + * all topics which have no type (iff {@code type} is {@code null). * <p> * Note: Implementations may return only those topics whose <tt>types</tt> * property contains the type and may ignore @@ -50,7 +51,7 @@ * </p> * The return value may be empty but must never be <tt>null</tt>. * - * @param type The type of the {@link Topic}s to be returned. + * @param type The type of the {@link Topic}s to be returned or {@code null} to return all untyped topics. * @return An unmodifiable collection of {@link Topic}s. */ public Collection<Topic> getTopics(Topic type); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lh...@us...> - 2010-03-05 20:37:46
|
Revision: 168 http://tmapi.svn.sourceforge.net/tmapi/?rev=168&view=rev Author: lheuer Date: 2010-03-05 20:37:40 +0000 (Fri, 05 Mar 2010) Log Message: ----------- Better docs Modified Paths: -------------- trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java Modified: trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java =================================================================== --- trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java 2010-03-05 20:32:27 UTC (rev 167) +++ trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java 2010-03-05 20:37:40 UTC (rev 168) @@ -40,7 +40,7 @@ /** * Returns the topics which are an instance of the specified <tt>type</tt> or - * all topics which have no type (iff {@code type} is {@code null). + * all topics which have are not an instance of another topic (iff {@code type} is {@code null}). * <p> * Note: Implementations may return only those topics whose <tt>types</tt> * property contains the type and may ignore @@ -51,7 +51,8 @@ * </p> * The return value may be empty but must never be <tt>null</tt>. * - * @param type The type of the {@link Topic}s to be returned or {@code null} to return all untyped topics. + * @param type The type of the {@link Topic}s to be returned or {@code null} to + * return all topics which are not an instance of another topic. * @return An unmodifiable collection of {@link Topic}s. */ public Collection<Topic> getTopics(Topic type); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |