Instantiates a new LookupTable with the specified offset value and number
of components.
if (offset < 0) {
// awt.232=Offset should be not less than zero
throw new IllegalArgumentException(Messages.getString("awt.232")); //$NON-NLS-1$
}
if (numComponents < 1) {
// awt.233=Number of components should be positive
throw new IllegalArgumentException(Messages.getString("awt.233")); //$NON-NLS-1$
}
this.offset = offset;
this.numComponents = numComponents;