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: /**
13: * A basic element (color, font) of a theme must implement this
14: * interface.
15: *
16: * @since 3.0
17: */
18: public interface IThemeElementDefinition {
19:
20: /**
21: * Returns the name for this element.
22: *
23: * @return the name for this element
24: */
25: public String getName();
26:
27: /**
28: * Returns the id for this element.
29: *
30: * @return the id for this element. This will never be <code>null</code>.
31: */
32: public String getId();
33:
34: /**
35: * Returns the description for this element.
36: *
37: * @return the description for this element. This may be <code>null</code>.
38: */
39: public String getDescription();
40:
41: }
|