org.virbo.dataset
Interface WritableDataSet

All Superinterfaces:
MutablePropertyDataSet, QDataSet
All Known Implementing Classes:
BDataSet, DDataSet, FDataSet, IDataSet, SDataSet

public interface WritableDataSet
extends MutablePropertyDataSet

Mutable datasets warning: No dataset should be mutable once it is accessible to the rest of the system. This would require clients make defensive copies which would seriously degrade performance.


Field Summary
 
Fields inherited from interface org.virbo.dataset.QDataSet
CACHE_TAG, CADENCE, COORDINATE_FRAME, DELTA_MINUS, DELTA_PLUS, DEPEND_0, DEPEND_1, DEPEND_2, FILL_VALUE, LABEL, MAX_PLANE_COUNT, MAX_RANK, MONOTONIC, NAME, PLANE_0, QUBE, RENDER_TYPE, SCALE_TYPE, TITLE, TYPICAL_MAX, TYPICAL_MIN, UNITS, USER_PROPERTIES, VALID_MAX, VALID_MIN, WEIGHTS_PLANE
 
Method Summary
 void putProperty(java.lang.String name, int i0, int i1, java.lang.Object object)
           
 void putProperty(java.lang.String name, int i0, java.lang.Object object)
           
 void putProperty(java.lang.String name, java.lang.Object object)
           
 void putValue(int i0, double d)
           
 void putValue(int i0, int i1, double d)
           
 void putValue(int i0, int i1, int i2, double d)
           
 
Methods inherited from interface org.virbo.dataset.QDataSet
length, length, length, property, property, property, rank, value, value, value
 

Method Detail

putValue

void putValue(int i0,
              double d)

putValue

void putValue(int i0,
              int i1,
              double d)

putValue

void putValue(int i0,
              int i1,
              int i2,
              double d)

putProperty

void putProperty(java.lang.String name,
                 java.lang.Object object)
Specified by:
putProperty in interface MutablePropertyDataSet

putProperty

void putProperty(java.lang.String name,
                 int i0,
                 java.lang.Object object)
Specified by:
putProperty in interface MutablePropertyDataSet

putProperty

void putProperty(java.lang.String name,
                 int i0,
                 int i1,
                 java.lang.Object object)
Specified by:
putProperty in interface MutablePropertyDataSet