prasadtalasila/BITS-Darshini

View on GitHub
src/main/java/in/ac/bits/protocolanalyzer/analyzer/event/PacketTypeDetectionEvent.java

Summary

Maintainability
A
0 mins
Test Coverage
package in.ac.bits.protocolanalyzer.analyzer.event;

import lombok.Getter;

@Getter
public class PacketTypeDetectionEvent {

    private String nextPacketType;
    private int startByte;
    private int endByte;

    public PacketTypeDetectionEvent(String nextPacketType, int startByte,
            int endByte) {
        this.nextPacketType = nextPacketType;
        this.startByte = startByte;
        this.endByte = endByte;
    }
}