- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 19 Oct 2009 17:14:56 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/contract In directory hutz:/tmp/cvs-serv26639/src/org/w3c/unicorn/contract Modified Files: Observer.java Log Message: added String indexURI which represents the index page uri of this observer Index: Observer.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/contract/Observer.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Observer.java 19 Oct 2009 12:50:24 -0000 1.5 +++ Observer.java 19 Oct 2009 17:14:54 -0000 1.6 @@ -77,6 +77,8 @@ private List<MimeType> supportedMimeTypes; + private String indexURI; + /** * Creates the observer * @@ -280,4 +282,12 @@ this.sParamOutputName = sParamOutputName; } + public String getIndexURI() { + return indexURI; + } + + public void setIndexURI(String indexURI) { + this.indexURI = indexURI; + } + }
Received on Monday, 19 October 2009 17:14:59 UTC