super(dis, dos, commandID, objectID, varID);
}
@Override
protected Color readValue(Command resp) throws TraCIException {
Storage content = resp.content();
Utils.checkType(content, Constants.TYPE_COLOR);
int r = content.readUnsignedByte();
int g = content.readUnsignedByte();
int b = content.readUnsignedByte();
int a = content.readUnsignedByte();
return new Color(r, g, b, a);
}