Project: engagement_generation License: BSD Dependencies:
Used by:
None |
engagement_generation/msg_gen/java/ros/pkg/engagement_msgs/msg/Empty.javaGo to the documentation of this file.00001 /* Auto-generated by genmsg_java.py for file /home/mel/workspace/ros_stacks/engagement/engagement_msgs/msg/Empty.msg */ 00002 00003 package ros.pkg.engagement_msgs.msg; 00004 00005 import java.nio.ByteBuffer; 00006 00007 public class Empty extends ros.communication.Message { 00008 00009 00010 public Empty() { 00011 } 00012 00013 public static java.lang.String __s_getDataType() { return "engagement_msgs/Empty"; } 00014 public java.lang.String getDataType() { return __s_getDataType(); } 00015 public static java.lang.String __s_getMD5Sum() { return "d41d8cd98f00b204e9800998ecf8427e"; } 00016 public java.lang.String getMD5Sum() { return __s_getMD5Sum(); } 00017 public static java.lang.String __s_getMessageDefinition() { return "\n" + 00018 ""; } 00019 public java.lang.String getMessageDefinition() { return __s_getMessageDefinition(); } 00020 00021 public Empty clone() { 00022 Empty c = new Empty(); 00023 c.deserialize(serialize(0)); 00024 return c; 00025 } 00026 00027 public void setTo(ros.communication.Message m) { 00028 deserialize(m.serialize(0)); 00029 } 00030 00031 public int serializationLength() { 00032 int __l = 0; 00033 return __l; 00034 } 00035 00036 public void serialize(ByteBuffer bb, int seq) { 00037 } 00038 00039 public void deserialize(ByteBuffer bb) { 00040 } 00041 00042 @SuppressWarnings("all") 00043 public boolean equals(Object o) { 00044 if(!(o instanceof Empty)) 00045 return false; 00046 Empty other = (Empty) o; 00047 return 00048 true; 00049 } 00050 00051 @SuppressWarnings("all") 00052 public int hashCode() { 00053 final int prime = 31; 00054 int result = 1; 00055 long tmp; 00056 return result; 00057 } 00058 } // class Empty 00059 |