Re: [pdt-dev] goalEvaluatorFactories extension point — plugin is not activated

2009-07-21 Thread 赵忠伟
you can try to add breakpoint in class PHPGoalEvaluatorFactory public GoalEvaluator createEvaluator(IGoal goal) { if (factoryInfos == null) { return null; } for (int i = 0; i < factoryInfos.length; i++) { GoalEvaluator evaluator = factoryInfos[i].factory.createEvaluator(goal); if (evaluator != nul

RE: [pdt-dev] goalEv aluatorFactories ext ension point — plugi n is not activated

2009-07-21 Thread Sjaak Eenhuis
Hi, Try this one: Unfortunately, this doesn't work also. No breakpoints are touched, the whole plugin doesn't seem to be invoked. A priority of 10 doesn't work either. Should I edit the manifest manually too? BTW: why is the extension editor not able to provide any fields fo

Re: [pdt-dev] goalEvaluatorFactories extension point — plugin is not activated

2009-07-21 Thread Michael Spector
Try this one: On Tue, Jul 21, 2009 at 1:29 AM, Sjaak Eenhuis wrote: > I have a plugin that needs to add code completion for an undeclared > variable. To do so I try to implement my own goal factory. > > I am able to set break points, and start a debugging session. But it see