Project: engagement_generation License: BSD Dependencies:
Used by:
None |
engagement_generation/srv_gen/java/ros/pkg/roscpp/srv/Empty.javaGo to the documentation of this file.00001 /* Auto-generated by genmsg_cpp for file /opt/ros/diamondback/stacks/ros_comm/clients/cpp/roscpp/srv/Empty.srv */ 00002 00003 package ros.pkg.roscpp.srv; 00004 00005 import java.nio.ByteBuffer; 00006 00007 00008 public class Empty extends ros.communication.Service<Empty.Request, Empty.Response> { 00009 00010 public static java.lang.String __s_getDataType() { return "roscpp/Empty"; } 00011 public static java.lang.String __s_getMD5Sum() { return "d41d8cd98f00b204e9800998ecf8427e"; } 00012 00013 public java.lang.String getDataType() { return Empty.__s_getDataType(); } 00014 public java.lang.String getMD5Sum() { return Empty.__s_getMD5Sum(); } 00015 00016 public Empty.Request createRequest() { 00017 return new Empty.Request(); 00018 } 00019 00020 public Empty.Response createResponse() { 00021 return new Empty.Response(); 00022 } 00023 00024 static public class Request extends ros.communication.Message { 00025 00026 00027 public Request() { 00028 } 00029 00030 public static java.lang.String __s_getDataType() { return "roscpp/EmptyRequest"; } 00031 public java.lang.String getDataType() { return __s_getDataType(); } 00032 public static java.lang.String __s_getMD5Sum() { return "d41d8cd98f00b204e9800998ecf8427e"; } 00033 public java.lang.String getMD5Sum() { return __s_getMD5Sum(); } 00034 public static java.lang.String __s_getServerMD5Sum() { return "d41d8cd98f00b204e9800998ecf8427e"; } 00035 public java.lang.String getServerMD5Sum() { return __s_getServerMD5Sum(); } 00036 public static java.lang.String __s_getMessageDefinition() { return "\n" + 00037 ""; } 00038 public java.lang.String getMessageDefinition() { return __s_getMessageDefinition(); } 00039 00040 public Request clone() { 00041 Request c = new Request(); 00042 c.deserialize(serialize(0)); 00043 return c; 00044 } 00045 00046 public void setTo(ros.communication.Message m) { 00047 deserialize(m.serialize(0)); 00048 } 00049 00050 public int serializationLength() { 00051 int __l = 0; 00052 return __l; 00053 } 00054 00055 public void serialize(ByteBuffer bb, int seq) { 00056 } 00057 00058 public void deserialize(ByteBuffer bb) { 00059 } 00060 00061 @SuppressWarnings("all") 00062 public boolean equals(Object o) { 00063 if(!(o instanceof Request)) 00064 return false; 00065 Request other = (Request) o; 00066 return 00067 true; 00068 } 00069 00070 @SuppressWarnings("all") 00071 public int hashCode() { 00072 final int prime = 31; 00073 int result = 1; 00074 long tmp; 00075 return result; 00076 } 00077 } // class Request 00078 00079 static public class Response extends ros.communication.Message { 00080 00081 00082 public Response() { 00083 } 00084 00085 public static java.lang.String __s_getDataType() { return "roscpp/EmptyResponse"; } 00086 public java.lang.String getDataType() { return __s_getDataType(); } 00087 public static java.lang.String __s_getMD5Sum() { return "d41d8cd98f00b204e9800998ecf8427e"; } 00088 public java.lang.String getMD5Sum() { return __s_getMD5Sum(); } 00089 public static java.lang.String __s_getServerMD5Sum() { return "d41d8cd98f00b204e9800998ecf8427e"; } 00090 public java.lang.String getServerMD5Sum() { return __s_getServerMD5Sum(); } 00091 public static java.lang.String __s_getMessageDefinition() { return "\n" + 00092 ""; } 00093 public java.lang.String getMessageDefinition() { return __s_getMessageDefinition(); } 00094 00095 public Response clone() { 00096 Response c = new Response(); 00097 c.deserialize(serialize(0)); 00098 return c; 00099 } 00100 00101 public void setTo(ros.communication.Message m) { 00102 deserialize(m.serialize(0)); 00103 } 00104 00105 public int serializationLength() { 00106 int __l = 0; 00107 return __l; 00108 } 00109 00110 public void serialize(ByteBuffer bb, int seq) { 00111 } 00112 00113 public void deserialize(ByteBuffer bb) { 00114 } 00115 00116 @SuppressWarnings("all") 00117 public boolean equals(Object o) { 00118 if(!(o instanceof Response)) 00119 return false; 00120 Response other = (Response) o; 00121 return 00122 true; 00123 } 00124 00125 @SuppressWarnings("all") 00126 public int hashCode() { 00127 final int prime = 31; 00128 int result = 1; 00129 long tmp; 00130 return result; 00131 } 00132 } // class Response 00133 00134 } //class 00135 |