Subversion Repositories eFlore/Applications.coel

Rev

Rev 749 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 749 Rev 756
Line 1... Line 1...
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles;
Line 2... Line 2...
2
 
2
 
3
import java.util.Iterator;
-
 
4
import java.util.Map;
3
import java.util.Iterator;
Line 5... Line -...
5
import java.util.Set;
-
 
6
 
-
 
7
import com.google.gwt.core.client.GWT;
4
import java.util.Set;
Line 8... Line 5...
8
import com.google.gwt.http.client.URL;
5
 
Line 9... Line 6...
9
import com.google.gwt.json.client.JSONObject;
6
import com.google.gwt.json.client.JSONObject;
Line 129... Line 126...
129
	}
126
	}
Line 130... Line 127...
130
	
127
	
131
	public String getMeta() {
128
	public String getMeta() {
132
		return (String) renvoyerValeurCorrecte("ce_meta");
129
		return (String) renvoyerValeurCorrecte("ce_meta");
133
	}
-
 
134
	
-
 
135
	
-
 
136
	public String toReqString() {
-
 
137
		String reqString = "" ;
-
 
138
		
-
 
139
		Map<String,Object> clesValeurs = getProperties() ;
-
 
140
		for(Iterator<String> it = clesValeurs.keySet().iterator(); it.hasNext();) {
-
 
141
			String cle = it.next();
-
 
142
				reqString += "&"+PREFIXE+cle+"="+URL.encode(renvoyerValeurCorrecte(cle));
-
 
143
		}
-
 
144
		GWT.log(reqString, null);
-
 
145
		return reqString;
-
 
146
	}
130
	}
147
}
131
}