package de.ugoe.cs.swe.bnftools.ui.formatter; public class MetaTextEntry { private String text; private int offset; public MetaTextEntry(String text, int offset) { this.text = text; this.offset = offset; } public String getText() { return text; } public void setText(String text) { this.text = text; } public int getOffset() { return offset; } public void setOffset(int offset) { this.offset = offset; } @Override public String toString() { return "MetaTextEntry [text=" + text + ", offset=" + offset + "]"; } }