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