212223242526272829
* * @throws SWFParserException Thrown if parsing the tag failed. */ public static SetBackgroundColorTag parse(final RecordHeader header, final SWFBinaryParser parser) throws SWFParserException { final RGB backgroundColor = RGBParser.parse(parser, "SetBackgroundColor::BackgroundColor"); return new SetBackgroundColorTag(header, backgroundColor); }
282930313233343536
addNode("Blue", getUserObject().getBlue()); } @Override public String toString() { final RGB rgb = getUserObject(); return String.format("%s: RGB (#%02X%02X%02X)", getName(), rgb.getRed().value(), rgb.getGreen().value(), rgb.getBlue().value()); }