blob: a3684a485b5bb732f37dfc2ba832614b44406e99 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 Soyatec (http://www.soyatec.com) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Soyatec - initial API and implementation
*******************************************************************************/
package org.eclipse.xwt.tools.ui.designer.editor.dnd;
import org.eclipse.draw2d.geometry.Dimension;
import org.eclipse.gef.requests.CreateRequest;
/**
* @author jliu (jin.liu@soyatec.com)
*/
public class EntryCreateRequest extends CreateRequest {
private Dimension initSize;
public void setInitSize(Dimension initSize) {
this.initSize = initSize;
}
public Dimension getInitSize() {
return initSize;
}
}