/******************************************************************************* * Copyright (c) 2000, 2010, 2012 IBM Corporation, Gerhardt Informatics Kft. 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: * IBM Corporation - initial API and implementation * Gerhardt Informatics Kft. - GEFGWT port *******************************************************************************/ package org.eclipse.gef.requests; import org.eclipse.gef.EditPart; import org.eclipse.gef.Request; /** * A Request to be forwarded to another EditPart. */ public class ForwardedRequest extends Request { private EditPart sender; /** * Creates a ForwardRequest with the given type. * * @param type * The type of Request */ public ForwardedRequest(Object type) { setType(type); } /** * Creates a ForwardRequest with the given type and sets the sender. * * @param type * The type of Request * @param sender * The EditPart that forwarded this Request */ public ForwardedRequest(Object type, EditPart sender) { setType(type); this.sender = sender; } /** * Returns the EditPart that forwarded this Request. * * @return The EditPart that forwarded this Request */ public EditPart getSender() { return sender; } }