package vrml.fields;

import vrml.*;
import vrml.exceptions.*;

public class SFImage extends Field {
  public native byte[] getValue(int[] dims);
  public native void setValue(byte[] data, int[] dims)
    throws ArrayIndexOutOfBoundsException;
}
