[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units Tag.java,1.3,1.4
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2004-08-30 03:00:05
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29424/src/net/sourceforge/idrs/deploy/compile/units Modified Files: Tag.java Log Message: * Added getXMLObjects to idrsshell * Added an "ns" attribute to the "tag" tag so a namespace can be specified Index: Tag.java =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Tag.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Tag.java 29 Aug 2004 05:01:38 -0000 1.3 --- Tag.java 30 Aug 2004 02:59:54 -0000 1.4 *************** *** 36,40 **** this.atts = atts; name = atts.getValue("name"); ! this.tagLine = new TagLine(name,true); } --- 36,40 ---- this.atts = atts; name = atts.getValue("name"); ! this.tagLine = new TagLine(name,true,atts.getValue("ns")); } |