[jboss-jira] [JBoss JIRA] Commented: (JBMICROCONT-25) Configurator tidyup
Ales Justin (JIRA)
jira-events at jboss.com
Tue Aug 29 09:45:20 EDT 2006
[ http://jira.jboss.com/jira/browse/JBMICROCONT-25?page=comments#action_12342205 ]
Ales Justin commented on JBMICROCONT-25:
----------------------------------------
Applied isStatic and isPublic where it was tagged as fixme.
Added
if (name.equals(methods[i].getName()) &&
equals(paramTypes, methods[i].getParameterTypes()) &&
methods[i].isStatic() == isStatic &&
methods[i].isPublic() == isPublic)
return methods[i];
into Config.locateMethodInfo().
Also added was default method with no such boolean params:
public static MethodInfo findMethodInfo(ClassInfo classInfo, String name, String[] paramTypes) throws JoinpointException
{
return findMethodInfo(classInfo, name, paramTypes, false, true);
}
> Configurator tidyup
> -------------------
>
> Key: JBMICROCONT-25
> URL: http://jira.jboss.com/jira/browse/JBMICROCONT-25
> Project: JBoss MicroContainer
> Issue Type: Task
> Components: Configurator
> Reporter: Adrian Brock
> Assigned To: Ales Justin
> Priority: Minor
> Fix For: JBossMC_2_0_0RC1
>
>
> The Configurator api is largely being replaced by the JoinPointFactory api.
> There is still a usecase for some of the Configurator api as a convenience mechanism
> on top of the JoinPointFactory.
> This needs cleaning up.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list