HI
one more question how can i use an objectId which is written in precondition class of my_action.xml to another behaviour class
public boolean queryExecute(String strAction, IConfigElement config, ArgumentList args, Context contxt, Component comp)
{
boolean success = false;
String objID = args.get("objectId");
System.out.println("objectId=>"+args.get("objectId"));
return success;
}
this is the code written in my precondition class how can i use "objectId" in to another class.
Thanks in Advance.