|
From: Christopher W. <caw...@us...> - 2006-02-10 18:31:48
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5182/src/org/rubypeople/rdt/core Modified Files: IType.java Log Message: modify a method to receive a new arg Index: IType.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core/IType.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IType.java 12 Mar 2005 15:30:03 -0000 1.1 --- IType.java 10 Feb 2006 18:31:38 -0000 1.2 *************** *** 33,37 **** public interface IType extends IRubyElement, IMember { ! public RubyMethod getMethod(String name); /** --- 33,37 ---- public interface IType extends IRubyElement, IMember { ! public RubyMethod getMethod(String name, String[] parameterNames); /** *************** *** 136,138 **** --- 136,140 ---- String[] getIncludedModuleNames() throws RubyModelException; + public boolean isMember() throws RubyModelException; + } \ No newline at end of file |