00001
00002
00003
00004
00005
00006
00007 package oh;
00008
00013 public class ISAxis {
00017 public int is_type;
00018
00022 public String is_label;
00023
00027 public double[] is_axis;
00028
00029 public ISAxis() {
00030 is_type = ISHistogram.IS_FIXED;
00031 }
00032
00033 public void publishGuts( is.Ostream out ) {
00034 out.put( is_type, true ).put( is_label );
00035 out.put( is_axis );
00036 }
00037
00038 public void refreshGuts( is.Istream in ){
00039 is_type = in.getInt( );
00040 is_label = in.getString( );
00041 is_axis = in.getDoubleArray( );
00042 }
00043
00044 }
00045