FreeWRL/FreeX3D  3.0.0
MFDouble.java
1 package org.web3d.x3d.sai;
2 
3 public interface MFDouble extends MField {
4  public void getValue(double[] values);
5  public double get1Value(int index) throws ArrayIndexOutOfBoundsException;
6  public void setValue(int size, double[] value);
7  public void set1Value(int index, double value) throws ArrayIndexOutOfBoundsException;
8  public void append(double[] value);
9  public void insertValue(int index, double[] value);
10 }