|
From: Christopher W. <caw...@us...> - 2006-02-10 18:30:04
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4093/src/org/rubypeople/rdt/core Modified Files: IMethod.java Log Message: add new interface methods for determining if a method is a constructor, a singleton, and getting the parameter names Index: IMethod.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core/IMethod.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IMethod.java 12 Mar 2005 15:30:03 -0000 1.1 --- IMethod.java 10 Feb 2006 18:29:51 -0000 1.2 *************** *** 38,40 **** --- 38,46 ---- public int getVisibility() throws RubyModelException; + public boolean isConstructor(); + + public String[] getParameterNames() throws RubyModelException; + + public boolean isSingleton(); + } \ No newline at end of file |