intial source from ttp://www.sf.net/projects/wdte
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.css.core / src / net / sourceforge / phpeclipse / css / core / profiles / IProfileDescriptor.java
1 /*
2  * Copyright (c) 2003-2004 Christopher Lenz and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     Christopher Lenz - initial API
10  * 
11  * $Id: IProfileDescriptor.java,v 1.1 2004-09-02 18:07:14 jsurfer Exp $
12  */
13
14 package net.sourceforge.phpeclipse.css.core.profiles;
15
16
17 /**
18  * 
19  */
20 public interface IProfileDescriptor {
21
22         // Constants ---------------------------------------------------------------
23
24         /**
25          * Symbolic constant for the profiles extension point ID.
26          */
27         String EXTENSION_POINT_ID =
28                 "net.sourceforge.phpeclipse.css.core.profiles"; //$NON-NLS-1$
29
30         // Methods -----------------------------------------------------------------
31
32         /**
33          * @return The ID of the extension
34          */
35         String getId();
36
37         /**
38          * @return The display name of the profile
39          */
40         String getName();
41
42         /**
43          * @return A description of the profile
44          */
45         String getDescription();
46
47         /**
48          * @return The name of the class implementing the profile
49          */
50         String getClassName();
51
52 }