- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 18 Sep 2009 17:16:26 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/contract
In directory hutz:/tmp/cvs-serv18208/src/org/w3c/unicorn/contract
Modified Files:
Observer.java
Log Message:
added outputParamName to Observer object
Index: Observer.java
===================================================================
RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/contract/Observer.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Observer.java 28 Aug 2009 12:40:09 -0000 1.2
+++ Observer.java 18 Sep 2009 17:16:24 -0000 1.3
@@ -57,6 +57,8 @@
* The name of the language for the observer
*/
private String sParamLangName = null;
+
+ private String sParamOutputName = null;
/**
* The response type of the observer
@@ -270,4 +272,12 @@
this.responseType = responseType;
}
+ public String getParamOutputName() {
+ return sParamOutputName;
+ }
+
+ public void setParamOutputName(String sParamOutputName) {
+ this.sParamOutputName = sParamOutputName;
+ }
+
}
Received on Friday, 18 September 2009 17:16:34 UTC