|
From: <pj...@us...> - 2003-06-27 01:45:35
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging
In directory sc8-pr-cvs1:/tmp/cvs-serv29671
Modified Files:
Reference.java
Log Message:
Added getDescriptionCount().
Index: Reference.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/Reference.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Reference.java 10 Jun 2003 02:22:49 -0000 1.9
--- Reference.java 27 Jun 2003 01:45:30 -0000 1.10
***************
*** 413,415 ****
--- 413,424 ----
return descriptions.iterator();
}
+
+ /**
+ * Gets the number of <code>Description</code> elements in this <code>Reference</code>.
+ *
+ * @return The number of <code>Description</code> elements.
+ */
+ public int getDescriptionCount() {
+ return descriptions.size();
+ }
}
|