com.acrolinx.sidebar.pojo.document.AbstractMatch Maven / Gradle / Ivy
/* Copyright (c) 2018 Acrolinx GmbH */
package com.acrolinx.sidebar.pojo.document;
public abstract class AbstractMatch {
public abstract IntRange getRange();
public abstract String getContent();
public abstract AbstractMatch setRange(IntRange intRange);
public abstract AbstractMatch copy();
}