22 lines
434 B
Java
22 lines
434 B
Java
package jxl.biff;
|
|
|
|
import common.Logger;
|
|
|
|
public final class IndexMapping {
|
|
private static Logger logger = Logger.getLogger(IndexMapping.class);
|
|
|
|
private int[] newIndices;
|
|
|
|
IndexMapping(int size) {
|
|
this.newIndices = new int[size];
|
|
}
|
|
|
|
void setMapping(int oldIndex, int newIndex) {
|
|
this.newIndices[oldIndex] = newIndex;
|
|
}
|
|
|
|
public int getNewIndex(int oldIndex) {
|
|
return this.newIndices[oldIndex];
|
|
}
|
|
}
|