Package com.googlecode.gwt.test.internal.patchers

Source Code of com.googlecode.gwt.test.internal.patchers.FramePatcher

package com.googlecode.gwt.test.internal.patchers;

import com.google.gwt.dom.client.IFrameElement;
import com.google.gwt.user.client.ui.Frame;
import com.googlecode.gwt.test.patchers.PatchClass;
import com.googlecode.gwt.test.patchers.PatchMethod;

@PatchClass(Frame.class)
class FramePatcher {

   @PatchMethod
   static String getUrl(Frame frame) {
      IFrameElement e = frame.getElement().cast();
      return e.getSrc();
   }

   @PatchMethod
   static void setUrl(Frame frame, String url) {
      IFrameElement e = frame.getElement().cast();
      e.setSrc(url);
   }

}
TOP

Related Classes of com.googlecode.gwt.test.internal.patchers.FramePatcher

TOP
Copyright © 2018 www.massapi.com. 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.