blob: 73b84c81f33542ed6f17bc140c1c9ceb666225d9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Martin Reiterer.
* 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:
* Martin Reiterer - initial API and implementation
******************************************************************************/
package org.eclipse.babel.tapiji.tools.core.model.manager;
import java.util.Collection;
import org.eclipse.core.resources.IResource;
public class ResourceExclusionEvent {
private Collection<IResource> changedResources;
public ResourceExclusionEvent(final Collection<IResource> changedResources) {
super();
this.changedResources = changedResources;
}
public void setChangedResources(final Collection<IResource> changedResources) {
this.changedResources = changedResources;
}
public Collection<IResource> getChangedResources() {
return changedResources;
}
}