Ejemplo n.º 1
0
 @Override
 protected void doAddEventContent(
     Object o, XMLEventParserContext ctx, XMLEvent event, Object... args) {
   if (o instanceof KMLChange) this.addChange((KMLChange) o);
   else if (o instanceof KMLCreate) this.addCreate((KMLCreate) o);
   else if (o instanceof KMLDelete) this.addDelete((KMLDelete) o);
   else super.doAddEventContent(o, ctx, event, args);
 }
Ejemplo n.º 2
0
 @Override
 protected void doAddEventContent(
     Object o, XMLEventParserContext ctx, XMLEvent event, Object... args) {
   if (o instanceof KMLAlias) this.addAlias((KMLAlias) o);
   else super.doAddEventContent(o, ctx, event, args);
 }