Package com.flagstone.transform

Examples of com.flagstone.transform.DoAction


    return movie;
  }

  private MovieTag rewriteTag(SWFUrlRewriter rw, MovieTag tag) {
    if (tag instanceof DoAction) {
      DoAction doAction = (DoAction) tag;
      doAction.setActions(rewriteActions(rw, doAction.getActions()));
    } else if (tag instanceof DefineButton2) {

      DefineButton2 defButton2 = (DefineButton2) tag;
      defButton2.setEvents(rewriteEventHandlers(rw,
          defButton2.getEvents()));
View Full Code Here

TOP

Related Classes of com.flagstone.transform.DoAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.