How do I order the menus added to org.eclipse.ui.preferencePages?

29 Views Asked by At

org.eclipse.ui.preferencePages Extensions에 Added the following pages.

foo, bar, test

At this time, the menu appears in the order of bar, foot, and test, so it seems to be written in alphabetical order.

Can I specify this order display?

<page
   category="fooCategory"
   class="fooClass"
   id="fooId"
   name="foo">
</page>
<page
   category="barCategory"
   class="barClass"
   id="barId"
   name="bar">
</page>
<page
   category="testCategory"
   class="testClass"
   id="testId"
   name="test">
</page>
0

There are 0 best solutions below