blob: 2eacaffa5226942acb2735ae7fe5f7c817c44bc6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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.xwt.ui.views;
import java.net.URL;
import org.eclipse.xwt.ILoadingContext;
public interface IContentProvider {
/**
*
* @return
*/
ILoadingContext getLoadingContext();
/**
* Content URL
*
* @return
*/
URL getContentURL();
}