Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[Dltk-dev] IMethod changes

Hi all,

I want to perform the following change, as some languages might have types for method parameters:

public interface IParameter {
	String getName();
	String getType();
	String getDefaultValue();
}

 public interface IMethod extends IMember {
 
-	public String[] getParameters() throws ModelException;
+	public String[] getParameterNames() throws ModelException;
 
-	public String[] getParameterInitializers() throws ModelException;
+	public IParameter[] getParameters() throws ModelException;
 
 	boolean isConstructor() throws ModelException;
...

Are there any objections/other naming ideas?

Regards,
Alex


Back to the top