|
From: Christopher W. <caw...@us...> - 2006-03-25 02:37:50
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/viewsupport In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11479/src/org/rubypeople/rdt/internal/ui/viewsupport Modified Files: RubyElementImageProvider.java Log Message: my initial working version of a Ruby Browsing Perspective Index: RubyElementImageProvider.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/viewsupport/RubyElementImageProvider.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RubyElementImageProvider.java 10 Feb 2006 19:54:46 -0000 1.1 --- RubyElementImageProvider.java 25 Mar 2006 02:37:44 -0000 1.2 *************** *** 191,195 **** return RubyPluginImages.DESC_OBJS_INSTANCE_VAR; ! case IRubyElement.IMPORT: return RubyPluginImages.DESC_OBJS_IMPDECL; --- 191,195 ---- return RubyPluginImages.DESC_OBJS_INSTANCE_VAR; ! case IRubyElement.IMPORT_DECLARATION: return RubyPluginImages.DESC_OBJS_IMPDECL; *************** *** 208,212 **** return RubyPluginImages.DESC_OBJS_SCRIPT; ! case IRubyElement.PROJECT: IRubyProject jp = (IRubyProject) element; if (jp.getProject().isOpen()) { --- 208,212 ---- return RubyPluginImages.DESC_OBJS_SCRIPT; ! case IRubyElement.RUBY_PROJECT: IRubyProject jp = (IRubyProject) element; if (jp.getProject().isOpen()) { |