>> So your 'def' is null, right?
Actually it's the case that componenthelper.getTaskDefinitions().get(mymacroname); returns a object of type Class: Class C = (Class) componenthelper.getTaskDefinitions().get(mymacroname); In case 'mymacroname' contanis the name of a macrodef I'm getting C.getName() => 'org.apache.tools.ant.taskdefs.MacroInstance' Still no clue how to get hold of my macro's definition. Peter, any hint? "Dominique Devienne" <[EMAIL PROTECTED]> 06-06-2006 19:41 Please respond to "Ant Developers List" <dev@ant.apache.org> To "Ant Developers List" <dev@ant.apache.org> cc Subject Re: how to access a MacroDef? > I tried something like > > ComponentHelper componenthelper = > ComponentHelper.getComponentHelper(project()); > MacroDef def = (MacroDef) > componenthelper.getTaskDefinitions().get(mymacroname); > > just in order to understand that Hastable getTaskDefinitions() contains a > String => Class relation. > > So where are those MacroDef's hidden? So your 'def' is null, right? Try not casting it to MacroDef, and see which kind of Java Class is returned, if any. It may be an UnknownElement (my guess), a MacroInstance, etc... >From the UE, you may be able to get a MacroInstance or a MacroDef, and if the later, configure it into a MacroInstance, which is what you want to run. I vaguely know this code only. Peter's the expert. --D --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]