X-Git-Url: http://git.phpeclipse.com diff --git a/archive/net.sourceforge.phpeclipse.js.ui/src/net/sourceforge/phpeclipse/js/ui/model/JSElementCategories.java b/archive/net.sourceforge.phpeclipse.js.ui/src/net/sourceforge/phpeclipse/js/ui/model/JSElementCategories.java new file mode 100644 index 0000000..b42aea1 --- /dev/null +++ b/archive/net.sourceforge.phpeclipse.js.ui/src/net/sourceforge/phpeclipse/js/ui/model/JSElementCategories.java @@ -0,0 +1,39 @@ +/* + * Created on May 20, 2003 + *======================================================================== + * Modifications history + *======================================================================== + * $Log: not supported by cvs2svn $ + * Revision 1.1 2004/02/26 02:25:58 agfitzp + * renamed packages to match xml & css + * + * Revision 1.1 2004/02/14 18:36:30 ayashi + * More UI-Core refactoring... still doesn't work though... + * + * Revision 1.1 2004/02/05 03:13:29 agfitzp + * Initial submission, outline view is broken due to refactoring + * + * Revision 1.1.2.1 2003/12/12 21:37:24 agfitzp + * Experimental work for Classes view + * + * Revision 1.2 2003/05/30 20:53:09 agfitzp + * 0.0.2 : Outlining is now done as the user types. Some other bug fixes. + * + *======================================================================== + */ +package net.sourceforge.phpeclipse.js.ui.model; + +/** + * @author fitzpata + * + */ +public interface JSElementCategories +{ + static final int CLASS = 1; + static final int FUNCTION = 2; + static final int VARIABLE = 3; + static final int CLASS_VARIABLE = 4; + static final int INSTANCE_VARIABLE = 5; + static final int CLASS_METHOD = 6; + static final int INSTANCE_METHOD = 7; +}