[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units Db.java,1.3,1.4 Head.java,
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2002-08-22 20:07:08
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units
In directory usw-pr-cvs1:/tmp/cvs-serv21727/dev/src/net/sourceforge/idrs/deploy/compile/units
Modified Files:
Db.java Head.java
Log Message:
Synced development
Index: Db.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Db.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Db.java 23 Mar 2002 04:48:28 -0000 1.3
--- Db.java 22 Aug 2002 20:06:34 -0000 1.4
***************
*** 77,81 ****
}
! public void dirrection(String val, Attributes att) throws Exception {
db.setDirection( val.equalsIgnoreCase("INPUT") ? DB.INPUT : DB.OUTPUT);
}
--- 77,81 ----
}
! public void direction(String val, Attributes att) throws Exception {
db.setDirection( val.equalsIgnoreCase("INPUT") ? DB.INPUT : DB.OUTPUT);
}
Index: Head.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/compile/units/Head.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Head.java 4 Mar 2002 23:05:35 -0000 1.2
--- Head.java 22 Aug 2002 20:06:34 -0000 1.3
***************
*** 73,77 ****
public void text(java.lang.String val, Attributes atts) throws Exception {
! this.state.getReport().getHead().addText(val);
}
--- 73,79 ----
public void text(java.lang.String val, Attributes atts) throws Exception {
! if (val.length() != 0) {
! this.state.getReport().getHead().addText(val);
! }
}
|