[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/core/report IDRSHead.java,1.13,1.14
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2003-02-17 02:48:52
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report
In directory sc8-pr-cvs1:/tmp/cvs-serv8260/dev/src/net/sourceforge/idrs/core/report
Modified Files:
IDRSHead.java
Log Message:
Added methods to assist in file upload
Index: IDRSHead.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IDRSHead.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** IDRSHead.java 6 Feb 2003 20:13:44 -0000 1.13
--- IDRSHead.java 17 Feb 2003 02:48:48 -0000 1.14
***************
*** 50,53 ****
--- 50,57 ----
protected transient HashMap connsInfo;
protected transient String digest;
+
+ protected transient ObjectStore currStore;
+
+
/*
public void preBuild(HashMap connsInfo) throws Exception {
***************
*** 186,189 ****
--- 190,194 ----
//obj = (ObjectStore) objects.get((String) keys.next());
obj = (ObjectStore) objects.get(objNames[l]);
+ this.currStore = obj;
obj.setIdrs(this);
varTypes = obj.getTypes();
***************
*** 724,727 ****
--- 729,737 ----
public ServletContext getServletContext() {
return this.context;
+ }
+
+ /** retrieves the name of the last property set */
+ public String getPropParamName() {
+ return this.currStore.getPromParam();
}
|