blob: 36d197819477fa1176a89bb3a0f8575ff82e3378 [file] [log] [blame]
package org.robolectric.shadows;
import android.graphics.Rect;
import android.view.TouchDelegate;
import android.view.View;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.annotation.RealObject;
@Implements(TouchDelegate.class)
public class ShadowTouchDelegate {
@RealObject private TouchDelegate realObject;
private Rect bounds;
private View delegateView;
@Implementation
protected void __constructor__(Rect bounds, View delegateView) {
this.bounds = bounds;
this.delegateView = delegateView;
}
public Rect getBounds() {
return this.bounds;
}
public View getDelegateView() {
return this.delegateView;
}
}