oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/tar/index/IndexEntryV1.java [31:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.index = index;
        this.position = position;
    }

    @Override
    public long getMsb() {
        return index.getLong(position);
    }

    @Override
    public long getLsb() {
        return index.getLong(position + 8);
    }

    @Override
    public int getPosition() {
        return index.getInt(position + 16);
    }

    @Override
    public int getLength() {
        return index.getInt(position + 20);
    }

    @Override
    public int getGeneration() {
        return index.getInt(position + 24);
    }

    @Override
    public int getFullGeneration() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/tar/index/IndexEntryV2.java [31:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.index = index;
        this.position = position;
    }

    @Override
    public long getMsb() {
        return index.getLong(position);
    }

    @Override
    public long getLsb() {
        return index.getLong(position + 8);
    }

    @Override
    public int getPosition() {
        return index.getInt(position + 16);
    }

    @Override
    public int getLength() {
        return index.getInt(position + 20);
    }

    @Override
    public int getGeneration() {
        return index.getInt(position + 24);
    }

    @Override
    public int getFullGeneration() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



