1 11 package org.eclipse.ui.presentations; 12 13 import org.eclipse.swt.graphics.Rectangle; 14 15 21 public final class StackDropResult { 22 23 private Rectangle snapRectangle; 24 25 private Object cookie; 26 27 36 public StackDropResult(Rectangle snapRectangle, Object cookie) { 37 this.snapRectangle = snapRectangle; 38 this.cookie = cookie; 39 } 40 41 48 public Rectangle getSnapRectangle() { 49 return snapRectangle; 50 } 51 52 59 public Object getCookie() { 60 return cookie; 61 } 62 63 } 64 | Popular Tags |