13 lines
188 B
Java
13 lines
188 B
Java
|
|
package jxl.common;
|
||
|
|
|
||
|
|
public class BaseUnit {
|
||
|
|
private int index;
|
||
|
|
|
||
|
|
protected BaseUnit(int ind) {
|
||
|
|
this.index = ind;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected int getIndex() {
|
||
|
|
return this.index;
|
||
|
|
}
|
||
|
|
}
|