/* */ }
/* */ catch (IOException e) {
/* 204 */ throw new ParsingErrorException(e.getMessage());
/* */ }
/* 206 */ if (fieldLength != 4) {
/* 207 */ throw new IncorrectFormatException(J3dUtilsI18N.getString("LwoSurface0"));
/* */ }
/* */ }
/* 210 */ else if (tokenString.equals("FLAG")) {
/* 211 */ debugOutputLn(8, " FLAG");
/* 212 */ this.theReader.skipLength(fieldLength);
/* */ }
/* 214 */ else if (tokenString.equals("VLUM")) {
/* 215 */ debugOutputLn(8, " VLUM");
/* 216 */ this.luminosity = this.theReader.getFloat();
/* 217 */ gotLuminosityFloat = true;
/* */ }
/* 219 */ else if (tokenString.equals("LUMI")) {
/* 220 */ debugOutputLn(8, " LUMI");
/* 221 */ if (gotLuminosityFloat)
/* 222 */ this.theReader.skipLength(fieldLength);
/* */ else
/* 224 */ this.luminosity = (this.theReader.getShortInt() / 255.0F);
/* */ }
/* 226 */ else if (tokenString.equals("VDIF")) {
/* 227 */ debugOutputLn(8, " VDIF");
/* 228 */ if (fieldLength != 4)
/* 229 */ throw new IncorrectFormatException("VDIF problem");
/* 230 */ this.diffuse = this.theReader.getFloat();
/* 231 */ gotDiffuseFloat = true;
/* 232 */ debugOutputLn(2, "diff = " + this.diffuse);
/* */ }
/* 234 */ else if (tokenString.equals("DIFF")) {