blob: bf733c882ddca81ca9795ab120941d059f3e115c [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 IBM Corporation 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
****************************************************************************/
package org.eclipse.gmf.runtime.common.ui.services.elementselection;
/**
* A matching object event for the element selection service.
* <p>
* The element selection service returns IMatchingObjectEvent to the
* IElementSelectionListener. If there are ten matching objects, then eleven
* IMatchingObjectEvent will be sent to the listener. The first ten will have
* type MatchingObjectEventType.MATCH and will have a matching object. The
* eleventh event will have type MatchingObjectEventType.END_OF_MATCHES.
*
* @author Anthony Hunter
*/
public class MatchingObjectEvent
implements IMatchingObjectEvent {
/**
* the matching object event type.
*/
private MatchingObjectEventType eventType;
/**
* the matching object.
*/
private IMatchingObject matchingObject;
/**
* Constructor for a MatchingObjectEvent.
*
* @param eventType
* the matching object event type.
* @param matchingObject
* the matching object.
*/
public MatchingObjectEvent(MatchingObjectEventType eventType,
IMatchingObject matchingObject) {
super();
this.eventType = eventType;
this.matchingObject = matchingObject;
}
/**
* {@inheritDoc}
*/
public MatchingObjectEventType getEventType() {
return eventType;
}
/**
* {@inheritDoc}
*/
public IMatchingObject getMatchingObject() {
return matchingObject;
}
}