예제 #1
0
                public bool isEqual(EventRec value)
                {
                    if (this.getEventID() != value.getEventID())
                    {
                        return(false);
                    }
                    if (this.getCommandResult() != value.getCommandResult())
                    {
                        return(false);
                    }

                    return(true);
                }
예제 #2
0
                public bool isEqual(EventRec value)
                {
                    if (this.getEventID() != value.getEventID())
                    {
                        return(false);
                    }
                    if (this.getSequenceNumber() != value.getSequenceNumber())
                    {
                        return(false);
                    }

                    if (!this.getReportMessage().isEqual(value.getReportMessage()))
                    {
                        return(false);
                    }

                    return(true);
                }
예제 #3
0
                public bool isEqual(EventRec value)
                {
                    if (this.getEventID() != value.getEventID())
                    {
                    return false;
                    }
                    if (this.getSequenceNumber() != value.getSequenceNumber())
                    {
                    return false;
                    }

                    if (!this.getReportMessage().isEqual(value.getReportMessage()))
                    {
                    return false;
                    }

                    return true;
                }
예제 #4
0
                public bool isEqual(EventRec value)
                {
                    if (this.getEventID() != value.getEventID())
                    {
                    return false;
                    }
                    if (this.getCommandResult() != value.getCommandResult())
                    {
                    return false;
                    }

                    return true;
                }