The deal is that I am making a project eclipse RCP programmatically. Then I add some permanent properties to it. Now I want to right-click on the project in Project Explorer view and then click on the Properties tab. My property page should be here What do I have here:
& lt; Extension point = "org.eclipse.ui.propertyPages" & gt; & Lt; Page adaptable = "wrong" class = "bg.bulsi.rcp.first.properties.SamplePropertyPage" id = "bg.bulsi.rcp.first.properties.samplePropertyPage" name = "sample page" nameFilter = "*. *" Object Class = "org.eclipse.core.resources.IProject" selectionFilter = "single" & gt; & Lt; EnabledWhen & gt; & Lt; Example value = "org.eclipse.core.resources.IProject" & gt; & Lt; / Instanceof & gt; & Lt; / EnabledWhen & gt; & Lt; / Page & gt; & Lt; / Extension & gt; Why is this page not shown in property properties? Try removing the "nameFilter" attribute from the page tag until a dot in your project's name.
Comments
Post a Comment