addRefIndex method

void addRefIndex(
  1. int start,
  2. int count,
  3. String text
)

Implementation

void addRefIndex(int start, int count, String text) {
  for (int i = 0; i < count; i++) {
    super.referenceMap[start + i] = text;
  }
}