Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [Dltk-dev] question related to problem markers

Hi,

I’m usign problem markers in PDT Core-Plugin extension semantic analysis plugin [1]

I’m reporting problems with IProblemIdentifier (enum), extended by IProblemIdentifierExtension. 

getMarkerType() returns for.ex : org.pdtextensions.semanticanalysis.problem

My marker configuration:
<extension
        id="org.pdtextensions.semanticanalysis.problem"
        name="PHP Semantic analysis"
        point="org.eclipse.core.resources.markers">
        <persistent value="true"/>
        <super type="org.eclipse.dltk.core.problem" />
    </extension>

In theory you don’t have to extend “org.eclipse.dltk.core.problem”, but without this you will have to remember about cleaning markers in IBuildParticipant.

[1] - https://github.com/pdt-eg/Core-Plugin

--
Dawid Pakuła 
+48 795 996 064

From: Jae Gangemi jgangemi@xxxxxxxxx
Reply: DLTK Developer Discussions dltk-dev@xxxxxxxxxxx
Date: 1 maja 2014 at 00:29:05
To: DLTK Developer Discussions dltk-dev@xxxxxxxxxxx
Subject:  [Dltk-dev] question related to problem markers

hello all -

  quick question about problem markers...

  the markers successfully show in the editor sidebar, etc but they don't appear in the problems view itself. i checked the settings and the view is set to display all warnings/errors. the same hold true for 'todo' tasks.

  can anyone point me in a direction to investigate this. i'd imagine i probably have some wiring issue that i'm overlooking.

  thanks!!

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

Back to the top