blob: afa9f4b01859493fb1a545f55cd8e42fd3dbb01b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Rushan R. Gilmullin and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Rushan R. Gilmullin - initial API and implementation
*******************************************************************************/
package org.eclipse.osbp.vaaclipse.publicapi.theme;
import java.io.InputStream;
import java.util.List;
public interface Theme extends ThemeEntry {
/**
* Theme label displayed to user
*/
String getLabel();
/**
* Theme description displayed to user
*/
String getDescription();
/**
* List of inherited themes
*/
List<Theme> getInheritedThemes();
/**
* List of contributions to this theme
*/
List<ThemeContribution> getContributions();
/**
* Get list of resource location URI including resource URI of this theme,
* contribution URIs and inherited theme's URI
*/
List<String> getAllResourceLocationURIs();
/**
* Get CSS list including CSS of this theme, contribution CSS and inherited
* theme's CSS
*/
List<String> getAllCssURIs();
/**
* Get CSS of this theme as stream
*/
InputStream getCssAsStream();
/**
* Returns all image URIs contained in any of the registered resource
* locations.
*/
List<String> getImageURIs();
/**
* Get theme resource as stream
*
* @param themeResourceUri
* resource uri relative to this theme
*/
InputStream getThemeResourceAsStream(String themeResourceUri);
}