1 /******************************************************************************* 2 * Copyright (c) 2004, 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.ui.internal.themes; 12 13 import java.util.Map; 14 15 /** 16 * Interface for the Theme descriptors 17 * 18 * @since 3.0 19 */ 20 public interface IThemeDescriptor extends IThemeElementDefinition { 21 public static final String TAB_BORDER_STYLE = "TAB_BORDER_STYLE"; //$NON-NLS-1$ 22 23 /** 24 * Returns the color overrides for this theme. 25 * @return ColorDefinition [] 26 */ 27 public ColorDefinition[] getColors(); 28 29 /** 30 * Returns the font overrides for this theme. 31 * @return GradientDefinition [] 32 */ 33 public FontDefinition[] getFonts(); 34 35 /** 36 * Returns the data map for this theme. 37 * 38 * @return the data map. This will be read only. 39 */ 40 public Map getData(); 41 } 42