intial source from ttp://www.sf.net/projects/wdte
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.js.ui / src / net / sourceforge / phpeclipse / js / ui / model / JSElementCategories.java
1 /*
2  * Created on May 20, 2003
3  *========================================================================
4  * Modifications history
5  *========================================================================
6  * $Log: not supported by cvs2svn $
7  * Revision 1.1  2004/02/26 02:25:58  agfitzp
8  * renamed packages to match xml & css
9  *
10  * Revision 1.1  2004/02/14 18:36:30  ayashi
11  * More UI-Core refactoring... still doesn't work though...
12  *
13  * Revision 1.1  2004/02/05 03:13:29  agfitzp
14  * Initial submission, outline view is broken due to refactoring
15  *
16  * Revision 1.1.2.1  2003/12/12 21:37:24  agfitzp
17  * Experimental work for Classes view
18  *
19  * Revision 1.2  2003/05/30 20:53:09  agfitzp
20  * 0.0.2 : Outlining is now done as the user types. Some other bug fixes.
21  *
22  *========================================================================
23  */
24 package net.sourceforge.phpeclipse.js.ui.model;
25
26 /**
27  * @author fitzpata
28  *
29  */
30 public interface JSElementCategories
31 {
32         static final int CLASS = 1;
33         static final int FUNCTION = 2;
34         static final int VARIABLE = 3;
35         static final int CLASS_VARIABLE = 4;
36         static final int INSTANCE_VARIABLE = 5;
37         static final int CLASS_METHOD = 6;
38         static final int INSTANCE_METHOD = 7;
39 }