i have some problem with the RPC

[WARN] greetServlet: An IncompatibleRemoteServiceException was thrown
while processing this call.
com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException:
Invalid type signature for com.gpac.cmtid.client.UI.VO.ParametreVO

 her it is my class ParametreVO :


package com.gpac.cmtid.client.UI.VO;

import com.google.gwt.user.client.rpc.IsSerializable;

public class ParametreVO implements IsSerializable{

        private static final long serialVersionUID = -5216120643768806605L;

        private String temperature;
        private String tad;
        private String tas;
        private String poids;
        private String pouls;

        public ParametreVO() {

        }

        public ParametreVO(String temperature, String tension, String
tad,String tas, String poids, String pouls) {
                this.temperature = temperature;
                this.tad = tad;
                this.tas = tas;
                this.poids = poids;
                this.pouls = pouls;
        }

        public String getTad() {
                return tad;
        }

        public void setTad(String tad) {
                this.tad = tad;
        }

        public String getTas() {
                return tas;
        }

        public void setTas(String tas) {
                this.tas = tas;
        }

        public String getTemperature() {
                return temperature;
        }
        public void setTemperature(String string) {
                this.temperature = string;
        }
        public String getPoids() {
                return poids;
        }
        public void setPoids(String poids) {
                this.poids = poids;
        }
        public String getPouls() {
                return pouls;
        }
        public void setPouls(String pouls) {
                this.pouls = pouls;
        }
}

please help me

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to