[MOBY-guts] biomoby commit
Paul Gordon
gordonp at dev.open-bio.org
Mon Aug 17 21:08:43 UTC 2009
gordonp
Mon Aug 17 17:08:43 EDT 2009
Update of /home/repository/moby/moby-live/Java/src/main/ca/ucalgary/services/util
In directory dev.open-bio.org:/tmp/cvs-serv25513/src/main/ca/ucalgary/services/util
Modified Files:
XHTMLForm.java
Log Message:
Corrected javadoc
moby-live/Java/src/main/ca/ucalgary/services/util XHTMLForm.java,1.8,1.9
===================================================================
RCS file: /home/repository/moby/moby-live/Java/src/main/ca/ucalgary/services/util/XHTMLForm.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- /home/repository/moby/moby-live/Java/src/main/ca/ucalgary/services/util/XHTMLForm.java 2009/06/09 19:13:29 1.8
+++ /home/repository/moby/moby-live/Java/src/main/ca/ucalgary/services/util/XHTMLForm.java 2009/08/17 21:08:43 1.9
@@ -88,20 +88,20 @@
* @param url the location of the remote Web form that will be wrapped into a Moby Service
*/
public XHTMLForm(URL url) throws Exception{
- formURL = url;
-
formFiles = new HashMap<String,List<String>>();
formEncType = new HashMap<String,String>();
formAction = new HashMap<String,String>();
formMethod = new HashMap<String,String>();
formSubmitOptions = new HashMap<String,Map<String,String>>();
formImageOptions = new HashMap<String,Map<String,String>>();
+ formURL = url;
+
setSpecURL(formURL);
parse(formURL.openStream());
}
/**
- * We run XPaths on the XML document, rather than reading line-by-line as in the parent class.
+ * We run XPaths on the XML document, rather than reading line-by-line
*/
protected void parse(InputStream is) throws Exception{
xhtmlDoc = docBuilder.parse(is);
More information about the MOBY-guts
mailing list