|
From: <tma...@li...> - 2008-08-05 11:25:19
|
Revision: 52
http://tmapi.svn.sourceforge.net/tmapi/?rev=52&view=rev
Author: lheuer
Date: 2008-08-05 11:25:24 +0000 (Tue, 05 Aug 2008)
Log Message:
-----------
- Removed TMAPI version from license header
- Added Asscociation#getRoleTypes()
Modified Paths:
--------------
trunk/src/main/java/org/tmapi/core/Association.java
trunk/src/main/java/org/tmapi/core/Construct.java
trunk/src/main/java/org/tmapi/core/DatatypeAware.java
trunk/src/main/java/org/tmapi/core/FactoryConfigurationException.java
trunk/src/main/java/org/tmapi/core/FeatureNotRecognizedException.java
trunk/src/main/java/org/tmapi/core/FeatureNotSupportedException.java
trunk/src/main/java/org/tmapi/core/IdentityConstraintException.java
trunk/src/main/java/org/tmapi/core/Locator.java
trunk/src/main/java/org/tmapi/core/ModelConstraintException.java
trunk/src/main/java/org/tmapi/core/Name.java
trunk/src/main/java/org/tmapi/core/Occurrence.java
trunk/src/main/java/org/tmapi/core/Reifiable.java
trunk/src/main/java/org/tmapi/core/Role.java
trunk/src/main/java/org/tmapi/core/Scoped.java
trunk/src/main/java/org/tmapi/core/TMAPIException.java
trunk/src/main/java/org/tmapi/core/TMAPIRuntimeException.java
trunk/src/main/java/org/tmapi/core/Topic.java
trunk/src/main/java/org/tmapi/core/TopicInUseException.java
trunk/src/main/java/org/tmapi/core/TopicMap.java
trunk/src/main/java/org/tmapi/core/TopicMapExistsException.java
trunk/src/main/java/org/tmapi/core/TopicMapSystem.java
trunk/src/main/java/org/tmapi/core/TopicMapSystemFactory.java
trunk/src/main/java/org/tmapi/core/Typed.java
trunk/src/main/java/org/tmapi/core/Variant.java
trunk/src/main/java/org/tmapi/index/Index.java
trunk/src/main/java/org/tmapi/index/LiteralIndex.java
trunk/src/main/java/org/tmapi/index/ScopedIndex.java
trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java
Modified: trunk/src/main/java/org/tmapi/core/Association.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Association.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Association.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
@@ -45,6 +43,23 @@
public Set<Role> getRoles();
/**
+ * Returns the role types participating in this association.
+ *
+ * This method returns the same result as the following code:
+ * <pre>
+ * Set<Topic> types = new HashSet<Topic>();
+ * for (Role role: assoc.getRoles()) {
+ * types.add(role.getType());
+ * }
+ * </pre>
+ *
+ * The return value may be empty but must never be <tt>null</tt>.
+ *
+ * @return An unmodifiable set of role types.
+ */
+ public Set<Topic> getRoleTypes();
+
+ /**
* Returns all roles with the specified <tt>type</tt>.
*
* This method returns the same result as the following code:
@@ -59,8 +74,8 @@
*
* The return value may be empty but must never be <tt>null</tt>.
*
- * @param type The type of the {@link org.tmapi.core.Role} instances to be
- * returned.
+ * @param type The type of the {@link Role} instances to be returned,
+ * must not be <tt>null</tt>.
* @return An unmodifiable (maybe empty) set of roles with the specified
* <tt>type</tt> property.
*/
Modified: trunk/src/main/java/org/tmapi/core/Construct.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Construct.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Construct.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
@@ -37,10 +35,10 @@
public Construct getParent();
/**
- * Returns the {@link org.tmapi.core.TopicMap} instance to which this
- * Topic Maps construct belongs.
+ * Returns the {@link TopicMap} instance to which this Topic Maps construct
+ * belongs.
*
- * A {@link org.tmapi.core.TopicMap} instance returns itself.
+ * A {@link TopicMap} instance returns itself.
*
* @return The topic map instance to which this constructs belongs.
*/
@@ -75,7 +73,7 @@
* If at least one of the two objects is not a {@link Topic}, an
* {@link IdentityConstraintException} must be reported.
*
- * @param iid The item identifier to be added.
+ * @param iid The item identifier to be added; must not be <tt>null</tt>.
* @throws IdentityConstraintException If another construct has an item
* identifier which is equal to <tt>iid</tt.
*/
Modified: trunk/src/main/java/org/tmapi/core/DatatypeAware.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/DatatypeAware.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/DatatypeAware.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/FactoryConfigurationException.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/FactoryConfigurationException.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/FactoryConfigurationException.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/FeatureNotRecognizedException.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/FeatureNotRecognizedException.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/FeatureNotRecognizedException.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/FeatureNotSupportedException.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/FeatureNotSupportedException.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/FeatureNotSupportedException.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/IdentityConstraintException.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/IdentityConstraintException.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/IdentityConstraintException.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/Locator.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Locator.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Locator.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/ModelConstraintException.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/ModelConstraintException.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/ModelConstraintException.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
@@ -44,7 +42,9 @@
/**
* Returns the {@link Construct} which has thrown the exception.
*
- * @return The construct which has thrown the exception.
+ * @return The construct which has thrown the exception or <tt>null</tt>
+ * if no approbiate construct is available (i.e. in the factory
+ * methods).
*/
public Construct getSender() {
return _sender;
Modified: trunk/src/main/java/org/tmapi/core/Name.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Name.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Name.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/Occurrence.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Occurrence.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Occurrence.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/Reifiable.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Reifiable.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Reifiable.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/Role.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Role.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Role.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/Scoped.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Scoped.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Scoped.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/TMAPIException.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/TMAPIException.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/TMAPIException.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/TMAPIRuntimeException.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/TMAPIRuntimeException.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/TMAPIRuntimeException.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/Topic.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Topic.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Topic.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
@@ -41,7 +39,7 @@
*
* If adding the specified item identifier would make this topic
* represent the same subject as another topic and the feature
- * "automerge" (http://tmapi.org/features/automerge/) is disabled,
+ * "automerge" (http://tmapi.org/features/automerge) is disabled,
* an {@link IdentityConstraintException} is thrown.
*
* @see org.tmapi.core.Construct#addItemIdentifier(org.tmapi.core.Locator)
@@ -66,7 +64,7 @@
* "automerge" (http://tmapi.org/features/automerge/) is disabled,
* an {@link IdentityConstraintException} is thrown.
*
- * @param sid The subject identifier to be added.
+ * @param sid The subject identifier to be added; must not be <tt>null</tt>.
* @throws IdentityConstraintException If the feature "automerge" is
* disabled and adding the subject identifier would make this
* topic represent the same subject as another topic.
@@ -98,7 +96,7 @@
* "automerge" (http://tmapi.org/features/automerge/) is disabled,
* an {@link IdentityConstraintException} is thrown.
*
- * @param slo The subject locator to be added.
+ * @param slo The subject locator to be added; must not be <tt>null</tt>.
* @throws IdentityConstraintException If the feature "automerge" is
* disabled and adding the subject locator would make this
* topic represent the same subject as another topic.
@@ -137,7 +135,8 @@
*
* The return value may be empty but must never be <tt>null</tt>.
*
- * @param type The type of the {@link Name}s to be returned.
+ * @param type The type of the {@link Name}s to be returned;
+ * must not be <tt>null</tt>.
* @return An unmodifiable set of {@link Name}s with the specified
* <tt>type</tt>.
*/
@@ -224,7 +223,8 @@
*
* The return value may be empty but must never be <tt>null</tt>.
*
- * @param type The type of the {@link Occurrence}s to be returned.
+ * @param type The type of the {@link Occurrence}s to be returned;
+ * must not be <tt>null</tt>.
* @return An unmodifiable set of {@link Occurrence}s with the
* specified <tt>type</tt>.
*/
@@ -355,7 +355,8 @@
*
* The return value may be empty but must never be <tt>null</tt>.
*
- * @param type The type of the {@link Role}s to be returned.
+ * @param type The type of the {@link Role}s to be returned; must not
+ * be <tt>null</tt>.
* @return An unmodifiable set of {@link Role}s with the specified <tt>type</tt>.
*/
public Set<Role> getRolesPlayed(Topic type);
@@ -376,9 +377,10 @@
*
* The return value may be empty but must never be <tt>null</tt>.
*
- * @param type The type of the {@link Role}s to be returned.
+ * @param type The type of the {@link Role}s to be returned;
+ * must not be <tt>null</tt>.
* @param assocType The type of the {@link Association} from which the
- * returned roles must be part of.
+ * returned roles must be part of; must not be <tt>null</tt>.
* @return An unmodifiable set of {@link Role}s with the specified <tt>type</tt>
* which are part of {@link Association}s with the specified
* <tt>assocType</tt>.
@@ -406,7 +408,8 @@
* by this method. In any case, every type which was added by this method
* must be returned by the {@link #getTypes()} method.
*
- * @param type The type of which this topic should become an instance of.
+ * @param type The type of which this topic should become an instance of;
+ * must not be <tt>null</tt>.
*/
public void addType(Topic type);
Modified: trunk/src/main/java/org/tmapi/core/TopicInUseException.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/TopicInUseException.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/TopicInUseException.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/TopicMap.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/TopicMap.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/TopicMap.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/TopicMapExistsException.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/TopicMapExistsException.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/TopicMapExistsException.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/TopicMapSystem.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/TopicMapSystem.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/TopicMapSystem.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/TopicMapSystemFactory.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/TopicMapSystemFactory.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/TopicMapSystemFactory.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/Typed.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Typed.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Typed.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/core/Variant.java
===================================================================
--- trunk/src/main/java/org/tmapi/core/Variant.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/core/Variant.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/index/Index.java
===================================================================
--- trunk/src/main/java/org/tmapi/index/Index.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/index/Index.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/index/LiteralIndex.java
===================================================================
--- trunk/src/main/java/org/tmapi/index/LiteralIndex.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/index/LiteralIndex.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/index/ScopedIndex.java
===================================================================
--- trunk/src/main/java/org/tmapi/index/ScopedIndex.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/index/ScopedIndex.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
Modified: trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java
===================================================================
--- trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java 2008-08-04 17:56:41 UTC (rev 51)
+++ trunk/src/main/java/org/tmapi/index/TypeInstanceIndex.java 2008-08-05 11:25:24 UTC (rev 52)
@@ -1,7 +1,5 @@
/*
- * TMAPI 2.0
- *
- * Version 2.0 of the Topic Maps API (TMAPI), created collectively by
+ * The Topic Maps API (TMAPI) was created collectively by
* the membership of the tmapi-discuss mailing list
* <http://lists.sourceforge.net/mailman/listinfo/tmapi-discuss>,
* is hereby released into the public domain; and comes with
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|