From: <jos...@us...> - 2008-11-25 20:15:06
|
Revision: 90 http://tmapi.svn.sourceforge.net/tmapi/?rev=90&view=rev Author: joschmidt Date: 2008-11-25 20:15:03 +0000 (Tue, 25 Nov 2008) Log Message: ----------- Updated docs section regarding NULL handling in addItemIdentifier() and removeItemIdentifier() Modified Paths: -------------- trunk/src/main/java/org/tmapi/core/Construct.java Modified: trunk/src/main/java/org/tmapi/core/Construct.java =================================================================== --- trunk/src/main/java/org/tmapi/core/Construct.java 2008-11-13 18:44:41 UTC (rev 89) +++ trunk/src/main/java/org/tmapi/core/Construct.java 2008-11-25 20:15:03 UTC (rev 90) @@ -80,13 +80,15 @@ * @param itemIdentifier 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>itemIdentifier</tt>. + * @throws ModelConstraintException If the item identifier is <tt>null</tt>. */ public void addItemIdentifier(Locator itemIdentifier); /** * Removes an item identifier. * - * @param itemIdentifier The item identifier to be removed. + * @param itemIdentifier The item identifier to be removed from this construct, + * if present (<tt>null</tt> is ignored). */ public void removeItemIdentifier(Locator itemIdentifier); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |