/* 790 */ if (isValid(256)) {
/* 791 */ Object object = in.readObject();
/* 792 */ if (!(object instanceof SerializableState)) {
/* 793 */ this.sampleModel = null;
/* */ }
/* 795 */ SerializableState ss = (SerializableState)object;
/* 796 */ Class c = ss.getObjectClass();
/* 797 */ if (SampleModel.class.isAssignableFrom(c))
/* 798 */ this.sampleModel = ((SampleModel)ss.getObject());
/* */ else {
/* 800 */ this.sampleModel = null;
/* */ }
/* */ }
/* */
/* 804 */ if (isValid(512)) {
/* 805 */ Object object = in.readObject();
/* 806 */ if (!(object instanceof SerializableState)) {
/* 807 */ this.colorModel = null;
/* */ }
/* 809 */ SerializableState ss = (SerializableState)object;
/* 810 */ Class c = ss.getObjectClass();
/* 811 */ if (ColorModel.class.isAssignableFrom(c))
/* 812 */ this.colorModel = ((ColorModel)ss.getObject());
/* */ else
/* 814 */ this.colorModel = null;
/* */ }
/* */ }