Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/attr
In directory sc8-pr-cvs1:/tmp/cvs-serv23797/com/sun/xacml/attr
Modified Files:
Tag: branch_1_1
BagAttribute.java
Log Message:
updated constructor javadoc
Index: BagAttribute.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/attr/BagAttribute.java,v
retrieving revision 1.1.1.1
retrieving revision 1.1.1.1.2.1
diff -C2 -d -r1.1.1.1 -r1.1.1.1.2.1
*** BagAttribute.java 13 Feb 2003 22:19:10 -0000 1.1.1.1
--- BagAttribute.java 4 Dec 2003 22:07:03 -0000 1.1.1.1.2.1
***************
*** 67,75 ****
/**
* Creates a new <code>BagAttribute</code> that represents
! * the <code>Set</code> supplied. If the set is null or empty, then
! * the new bag is empty.
*
* @param type the data type of all the attributes in the set
! * @param bag the <code>Collection</code> value to be represented
*/
public BagAttribute(URI type, Collection bag) {
--- 67,75 ----
/**
* Creates a new <code>BagAttribute</code> that represents
! * the <code>Collection</code> of <code>AttributeValue</code>s supplied.
! * If the set is null or empty, then the new bag is empty.
*
* @param type the data type of all the attributes in the set
! * @param bag a <code>Collection</code> of <code>AttributeValue</code>s
*/
public BagAttribute(URI type, Collection bag) {
|