} else if (obj instanceof OutputContainer) {
jgen.writeObject(obj);
} else if (obj instanceof XYChart) {
jgen.writeObject((XYChart) obj);
} else if (obj instanceof XYGraphics) {
jgen.writeObject(new Plot().add((XYGraphics) obj));
} else if (obj instanceof CombinedPlot) {
jgen.writeObject((CombinedPlot) obj);
} else {
jgen.writeObject(obj.toString());
}