Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pdt-dev] Extending PDT 2.2 examples

Basiclly i mainly modified two places:

1.MANIFEST.MF(maybe you need not to modify)
2.XYZGoalEvaluatorFactory(line 46),I add the following code

                    if(className.startsWith("'") && className.endsWith("'")
                            || className.startsWith("\"") && className.endsWith("\"")){
                        className = className.substring(1, className.length() - 1);
                    }
transform 'MyClass' to MyClass,or there is no such class named 'MyClass':)

On Sat, Mar 13, 2010 at 4:31 AM, Jacques Fuentes <jpfuentes2@xxxxxxxxx> wrote:
I have created a plug-in and believe I have faithfully reproduced the examples provided here, but I cannot seem to get the Code Assist example to work. When I go to the Testing and Launch a new eclipse (I've also made sure it's enabling my plugin) and then create files based on the example, I do not get any code assist. I do get code assist if I do $obj = new MyClass. Any help is much appreciated. Thanks. 
_______________________________________________
pdt-dev mailing list
pdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/pdt-dev




--

Thanks!

Best Regards!

Zhao

Attachment: php-orm.zip
Description: Zip archive


Back to the top