Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 20f3e4036fcd8008bbec4b10b5b73eb708dd6dd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*******************************************************************************
 * Copyright (c) 2008 Borland Software Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v20.html
 *   
 * Contributors:
 *     Borland Software Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.common.resourcesetprovider;

import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.m2m.internal.qvt.oml.common.io.CFile;

/**
 * @author aigdalov
 * Created on Feb 26, 2008
 */
public interface IResourceSetProvider {
    public ResourceSet getResourceSet(CFile script);
    public void dispose(ResourceSet resourceSet);
    public void addResourceSetProviderListener(IResourceSetProviderListener listener);
    public boolean removeResourceSetProviderListener(IResourceSetProviderListener listener);
}

Back to the top