Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [Dltk-dev] DLTK can not show error information in problem view

Hi Jack,

Sorry for the late answer - most of the DLTK team was on the Eclipse Summit 2008 and it requires some time to catch the things up.

Since 1.0M3 you should use org.eclipse.dltk.core.buildParticipant extension point.

The simple case is something like the following (it does not require application specific code, just correct the nature).

   <extension
		point="org.eclipse.dltk.core.buildParticipant">
		<buildParticipant
			class="org.eclipse.dltk.core.builder.ParserBuildParticipantFactory"
			id="org.eclipse.dltk.examples.python.parser"
			name="Example Python parser"
			nature="org.eclipse.dltk.examples.python.nature">
		</buildParticipant>
   </extension>

Also you can provide other implementations to perform validations/semantic checks.

I have updated the python example also.

Regards,
Alex

----- Original Message -----
From: "chenshl" <chenshl07@xxxxxxxxx>
To: "dltk-dev" <dltk-dev@xxxxxxxxxxx>
Sent: Saturday, November 15, 2008 6:03:46 PM GMT +06:00 Almaty, Novosibirsk
Subject: [Dltk-dev] DLTK can not show error information in problem view



Hi, everybody! I have found that DLTK can not show any error information in problem view when I choose the required plugins to run the application. But if I choose the all plugins to run the application sometimes it will be ok. My program is completely following the python example. Now I use the eclipse 3.4 and DLtk 1.0. More I confused is that the program I coded few weeks ago can run success, but now it can not do correctly any more. During this time , I allways use the same platform and DLTK. 

2008-11-15 

Jack 
_______________________________________________
dltk-dev mailing list
dltk-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/dltk-dev


Back to the top