diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/49/40a567e8a1c50013163daf73e505be76 b/.metadata/.plugins/org.eclipse.core.resources/.history/49/40a567e8a1c50013163daf73e505be76 new file mode 100644 index 0000000000000000000000000000000000000000..c890a835d1291b1e4665a77ed9bbf6a0d944f59b --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/49/40a567e8a1c50013163daf73e505be76 @@ -0,0 +1,143 @@ +package api; + +/** + * An IEvaluator is a utility for evaluating groups of cards in + * card games based on ranking of hands. Each evaluator + * represents a type of hand based on some evaluation criteria, + * such as pairs of matching cards or consecutive runs. + * An evaluator also has a ranking relative to other evaluators + * that might be used in a given game. In traditional poker games, + * ranking of hands is based on mathematical probability, but + * there is no particular requirement here other than that + * different evaluators are constructed with different rankings. + * + * Within a given ranking the hands are also ordered. The ordering + * is defined by the Hand class. Each hand consists of an array of + * <em>main</em> cards and a (possibly empty) array of <em>side cards</em>. + * The Hand class orders hands within the same ranking by first + * lexicographically comparing the main cards, and if they are the same, + * lexicographically comparing the side cards. Therefore, it is + * up to the evaluator to correctly order the cards in these groups. + * The side cards can always be sorted according to the Card class + * compareTo method, which orders cards in descending order with + * higher cards first. In most cases it is sufficient to sort the main cards + * using the Card class; however, this may not work for particular + * evaluators. For example, in a traditional full house there is a + * group of three cards and a group of two cards, and they are + * ordered based on the group of three, even if the group of two + * consists of cards of higher rank. Thus, when creating a Hand, + * the main cards would have to be listed with the group of three + * first, e.g., [3 3 3 5 5] should defeat [2 2 2 10 10]. + */ +public interface IEvaluator +{ + /** + * Returns a name for this evaluator. + * @return + * name of this evaluator + */ + String getName(); + + /** + * Returns the ranking for this evaluator, where a lower number + * is considered "better". + * @return + * ranking for this evaluator + */ + int getRanking(); + + /** + * Returns the minimum number of cards needed for a hand + * produced by this evaluator (main cards only). + * @return + */ + int cardsRequired(); + + /** + * Returns the number of cards in a hand. This value is generally + * defined by a game, and is not necessarily the same as + * the value returned by <code>cardsRequired</code> + * (main cards plus side cards). + * @return + * number of cards in a hand + */ + int handSize(); + + /** + * Determines whether the given group of cards satisfies the + * criteria this evaluator. The length + * of the given array must exactly match the value + * returned by <code>cardsRequired()</code>. The + * given array must be sorted with highest-ranked card first + * according to <code>Card.compareTo()</code>. The array + * is not modified by this operation. + * @param mainCards + * array of cards + * @return + * true if the given cards satisfy this evaluator + */ + boolean canSatisfy(Card[] mainCards); + + /** + * Determines whether there exists a subset of the given cards + * that satisfies the criteria for this evaluator. The length of + * the given array must be greater than or equal to the value + * returned by <code>cardsRequired()</code>. The + * given array must be sorted with highest-ranked card first + * according to <code>Card.compareTo()</code>. The array + * is not modified by this operation. + * @param allCards + * list of cards to evaluate + * @return + * true if some subset of the given cards satisfy this evaluator + */ + boolean canSubsetSatisfy(Card[] allCards); + + /** + * Returns a hand whose main cards consist of the indicated subset + * of the given cards. If the indicated subset does + * not satisfy the criteria for this evaluator, this + * method returns null. The subset is described as + * an ordered array of indices to be selected from the given + * Card array. The number of main cards in the hand + * will be the value of <code>getRequiredCards()</code> + * and the total number of cards in the hand will + * be the value of <code>handSize()</code>. If the length + * of the given array of cards is less than <code>handSize()</code>, + * this method returns null. The + * given array must be sorted with highest-ranked card first + * according to <code>Card.compareTo()</code>. The array + * is not modified by this operation. + * + * @param allCards + * list of cards from which to select the main cards for the hand + * @param subset + * list of indices of cards to be selected, in ascending order + * @return + * hand whose main cards consist of the indicated subset, or null + * if the indicated subset does not satisfy this evaluator + */ + Hand createHand(Card[] allCards, int[] subset); + + /** + * Returns the best possible hand satisfying this evaluator's + * criteria that can be formed from the given list of cards. + * "Best" is defined to be first according to the compareTo() method of + * Hand. Returns null if there is no such hand. The number of main cards + * in the hand will be the value of <code>getRequiredCards()</code> + * and the total number of cards in the hand will + * be the value of <code>handSize()</code>. If the length + * of the given array of cards is less than <code>totalCards()</code>, + * this method returns null. The + * given array must be sorted with highest-ranked card first + * according to <code>Card.compareTo()</code>. The array + * is not modified by this operation. + * + * @param allCards + * list of cards from which to create the hand + * @return + * best possible hand satisfying this evaluator that can be formed + * from the given cards + */ + Hand getBestHand(Card[] allCards); +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/a9/5006bf599fc50013163daf73e505be76 b/.metadata/.plugins/org.eclipse.core.resources/.history/a9/5006bf599fc50013163daf73e505be76 new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/exam1/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/exam1/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..66558154af02c6107e8cb7f8c85a8de66e1d6175 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/exam1/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/exam1/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/exam1/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/exam1/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.indexes/e4/4/history.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.indexes/e4/4/history.index new file mode 100644 index 0000000000000000000000000000000000000000..eee4bb11d982d2030e38994c54a2a506560766b9 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.indexes/e4/4/history.index differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..15b729aa4c67ad29515ca636edcc8b3bd610d116 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/mini1/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/mini1/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/mini1/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/mini1/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/mini1/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/mini1/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project1/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project1/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project1/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project1/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project1/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project1/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project10/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project10/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..3c49ce405932aa1c6c741c17a7eb3c1743b71c32 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project10/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project10/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project10/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project10/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project2/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project2/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..67debff0f2afaa22b2bdaed9983e3347f389144e Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project2/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project2/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project2/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project2/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project3/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project3/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..69c9d1cb745cbfde74278b5a56b0a0e9e4187984 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project3/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project3/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project3/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project3/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project4/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project4/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..d5e5b848402783bf656d27949ce9706cdec12e99 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project4/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project4/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project4/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project4/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project5/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project5/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project5/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project5/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project5/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project5/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project6/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project6/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..f5773e1d06ca5d8298ac1a5d242be8f7bb9186cb Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project6/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project6/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project6/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project6/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project7/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project7/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..1f6c76fa8d5ded54b688f1f8d43613da7a289326 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project7/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project7/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project7/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project7/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project8/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project8/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..92f6458d666896011cd86ce0f9b4404016e5b42c Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project8/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/project8/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/project8/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/project8/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/temp/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/temp/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..879b1fcad58eb68f2cefa3872a826ee1dc16d62a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/temp/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/temp/.syncinfo.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/temp/.syncinfo.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.projects/temp/.syncinfo.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..3ab70838bdbb239a6c57fe759b7cff8d61e5a443 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources b/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources index 0a72b26e9f040add277be779c55bcbfea5902e89..d177bcf13960ef06847a1613fd59da956921631f 100644 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and b/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.snap b/.metadata/.plugins/org.eclipse.core.resources/.snap new file mode 100644 index 0000000000000000000000000000000000000000..0b2ba9f89b8535f95f74300a74b8a2158c817d5a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.snap differ diff --git a/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi index 215cf19bc34cff3a8441601978ad6943dafe7419..ae141b9bed52f3eac3800376d906956d44578fbb 100644 --- a/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ b/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi @@ -1,18 +1,18 @@ <?xml version="1.0" encoding="ASCII"?> -<application:Application xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:advanced="http://www.eclipse.org/ui/2010/UIModel/application/ui/advanced" xmlns:application="http://www.eclipse.org/ui/2010/UIModel/application" xmlns:basic="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic" xmlns:menu="http://www.eclipse.org/ui/2010/UIModel/application/ui/menu" xmi:id="_REUyoMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_REUyocRFEeOsdtank6IHbg" bindingContexts="_REkDScRFEeOsdtank6IHbg"> - <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="GroupPhoto.java" tooltip="project10/src/lab10/GroupPhoto.java">
<persistable path="/project10/src/lab10/GroupPhoto.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Portrait7SL.java" tooltip="project10/src/lab10/Portrait7SL.java">
<persistable path="/project10/src/lab10/Portrait7SL.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="IntLister.java" tooltip="project10/src/lab10/IntLister.java">
<persistable path="/project10/src/lab10/IntLister.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="IntListSorted.java" tooltip="project10/src/lab10/IntListSorted.java">
<persistable path="/project10/src/lab10/IntListSorted.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="IntList.java" tooltip="project10/src/lab10/IntList.java">
<persistable path="/project10/src/lab10/IntList.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Portrait.java" tooltip="project10/src/lab10/Portrait.java">
<persistable path="/project10/src/lab10/Portrait.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Portrait0CRJ.java" tooltip="project10/src/lab10/Portrait0CRJ.java">
<persistable path="/project10/src/lab10/Portrait0CRJ.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="FirstSwingExample.java" tooltip="project10/src/lab10/FirstSwingExample.java">
<persistable path="/project10/src/lab10/FirstSwingExample.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="SwingGraphicsExample.java" tooltip="project10/src/lab10/SwingGraphicsExample.java">
<persistable path="/project10/src/lab10/SwingGraphicsExample.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="PasswordReader.java" tooltip="exam1/src/exam2/PasswordReader.java">
<persistable path="/exam1/src/exam2/PasswordReader.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Contact.java" tooltip="exam1/src/exam2/Contact.java">
<persistable path="/exam1/src/exam2/Contact.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ContactDirectory.java" tooltip="exam1/src/exam2/ContactDirectory.java">
<persistable path="/exam1/src/exam2/ContactDirectory.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ProcessorTester.java" tooltip="exam1/src/exam2/ProcessorTester.java">
<persistable path="/exam1/src/exam2/ProcessorTester.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="RangeCounter.java" tooltip="exam1/src/exam2/RangeCounter.java">
<persistable path="/exam1/src/exam2/RangeCounter.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="MaxProcessor.java" tooltip="exam1/src/exam2/MaxProcessor.java">
<persistable path="/exam1/src/exam2/MaxProcessor.java"/>
</file>
</mruList>
</workbench>"/> +<application:Application xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:advanced="http://www.eclipse.org/ui/2010/UIModel/application/ui/advanced" xmlns:application="http://www.eclipse.org/ui/2010/UIModel/application" xmlns:basic="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic" xmlns:menu="http://www.eclipse.org/ui/2010/UIModel/application/ui/menu" xmi:id="_JWZDAMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_JWZDAcW4EeORw5cz-AoFKA" bindingContexts="_JWr9-8W4EeORw5cz-AoFKA"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="IEvaluator.java" tooltip="homework/src/api/IEvaluator.java">
<persistable path="/homework/src/api/IEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Card.java" tooltip="homework/src/api/Card.java">
<persistable path="/homework/src/api/Card.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Hand.java" tooltip="homework/src/api/Hand.java">
<persistable path="/homework/src/api/Hand.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="AbstractEvaluator.java" tooltip="homework/src/hw3/AbstractEvaluator.java">
<persistable path="/homework/src/hw3/AbstractEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="FullHouseEvaluator.java" tooltip="homework/src/hw3/FullHouseEvaluator.java">
<persistable path="/homework/src/hw3/FullHouseEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="CatchAllEvaluator.java" tooltip="homework/src/hw3/CatchAllEvaluator.java">
<persistable path="/homework/src/hw3/CatchAllEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="StraightEvaluator.java" tooltip="homework/src/hw3/StraightEvaluator.java">
<persistable path="/homework/src/hw3/StraightEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="OnePairEvaluator.java" tooltip="homework/src/hw3/OnePairEvaluator.java">
<persistable path="/homework/src/hw3/OnePairEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="FourOfAKindEvaluator.java" tooltip="homework/src/hw3/FourOfAKindEvaluator.java">
<persistable path="/homework/src/hw3/FourOfAKindEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="AllPrimesEvaluator.java" tooltip="homework/src/hw3/AllPrimesEvaluator.java">
<persistable path="/homework/src/hw3/AllPrimesEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="EvaluatorTest.java" tooltip="homework/src/hw3/EvaluatorTest.java">
<persistable path="/homework/src/hw3/EvaluatorTest.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Suit.java" tooltip="homework/src/api/Suit.java">
<persistable path="/homework/src/api/Suit.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ThreeOfAKindEvaluator.java" tooltip="homework/src/hw3/ThreeOfAKindEvaluator.java">
<persistable path="/homework/src/hw3/ThreeOfAKindEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="StraightFlushEvaluator.java" tooltip="homework/src/hw3/StraightFlushEvaluator.java">
<persistable path="/homework/src/hw3/StraightFlushEvaluator.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="GameTest.java" tooltip="homework/src/hw2/GameTest.java">
<persistable path="/homework/src/hw2/GameTest.java"/>
</file>
</mruList>
</workbench>"/> <tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags> <tags>ModelMigrationProcessor.001</tags> - <children xsi:type="basic:TrimmedWindow" xmi:id="_REUyocRFEeOsdtank6IHbg" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_REUyosRFEeOsdtank6IHbg" label="%trimmedwindow.label.eclipseSDK" x="0" y="0" width="1024" height="768"> + <children xsi:type="basic:TrimmedWindow" xmi:id="_JWZDAcW4EeORw5cz-AoFKA" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_JWZDAsW4EeORw5cz-AoFKA" label="%trimmedwindow.label.eclipseSDK" x="0" y="0" width="1280" height="800"> <persistedState key="coolBarVisible" value="true"/> <persistedState key="perspectiveBarVisible" value="true"/> <persistedState key="workingSets" value="<?xml version="1.0" encoding="UTF-8"?>
<workingSets/>"/> <persistedState key="aggregateWorkingSetId" value="Aggregate for window 1395868172708"/> <tags>topLevel</tags> <tags>shellMaximized</tags> - <children xsi:type="basic:PartSashContainer" xmi:id="_REUyosRFEeOsdtank6IHbg" selectedElement="_REUyo8RFEeOsdtank6IHbg" horizontal="true"> - <children xsi:type="advanced:PerspectiveStack" xmi:id="_REUyo8RFEeOsdtank6IHbg" elementId="PerspectiveStack" containerData="7500" selectedElement="_REUypMRFEeOsdtank6IHbg"> - <children xsi:type="advanced:Perspective" xmi:id="_REUypMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavaPerspective" selectedElement="_REUypcRFEeOsdtank6IHbg" label="Java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/jperspective.gif"> + <children xsi:type="basic:PartSashContainer" xmi:id="_JWZDAsW4EeORw5cz-AoFKA" selectedElement="_JWZDA8W4EeORw5cz-AoFKA" horizontal="true"> + <children xsi:type="advanced:PerspectiveStack" xmi:id="_JWZDA8W4EeORw5cz-AoFKA" elementId="PerspectiveStack" containerData="7500" selectedElement="_JWZDBMW4EeORw5cz-AoFKA"> + <children xsi:type="advanced:Perspective" xmi:id="_JWZDBMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavaPerspective" selectedElement="_JWZDBcW4EeORw5cz-AoFKA" label="Java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/jperspective.gif"> <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/> <tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags> <tags>persp.actionSet:org.eclipse.search.searchActionSet</tags> @@ -76,50 +76,50 @@ <tags>persp.viewSC:org.eclipse.wb.core.StructureView</tags> <tags>persp.viewSC:org.eclipse.wb.core.PaletteView</tags> <tags>persp.perspSC:org.eclipse.wst.jsdt.ui.JavaPerspective</tags> - <children xsi:type="basic:PartSashContainer" xmi:id="_REUypcRFEeOsdtank6IHbg" selectedElement="_REUypsRFEeOsdtank6IHbg" horizontal="true"> - <children xsi:type="basic:PartSashContainer" xmi:id="_REUypsRFEeOsdtank6IHbg" containerData="2500" selectedElement="_REUyp8RFEeOsdtank6IHbg"> - <children xsi:type="basic:PartStack" xmi:id="_REUyp8RFEeOsdtank6IHbg" elementId="left" containerData="6000" selectedElement="_REUyqMRFEeOsdtank6IHbg"> + <children xsi:type="basic:PartSashContainer" xmi:id="_JWZDBcW4EeORw5cz-AoFKA" selectedElement="_JWZDEcW4EeORw5cz-AoFKA" horizontal="true"> + <children xsi:type="basic:PartSashContainer" xmi:id="_JWZDBsW4EeORw5cz-AoFKA" containerData="2500" selectedElement="_JWZDB8W4EeORw5cz-AoFKA"> + <children xsi:type="basic:PartStack" xmi:id="_JWZDB8W4EeORw5cz-AoFKA" elementId="left" containerData="6000" selectedElement="_JWZDCMW4EeORw5cz-AoFKA"> <tags>newtablook</tags> <tags>org.eclipse.e4.primaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyqMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_REWoEMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyqcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_REXPGMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyqsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_REXPGcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyq8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_REXPGsRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyrMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.ResultView" ref="_REYdB8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyrcRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.StructureView" toBeRendered="false" ref="_REYdC8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyrsRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.PaletteView" toBeRendered="false" ref="_REYdDMRFEeOsdtank6IHbg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZDCMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_JWcGkMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZDCcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_JWdUkMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZDCsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_JWdUkcW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZDC8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_JWdUksW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZDDMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.ResultView" ref="_JWfwy8W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZDDcW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.StructureView" toBeRendered="false" ref="_JWgXzMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZDDsW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.PaletteView" toBeRendered="false" ref="_JWgXzcW4EeORw5cz-AoFKA"/> </children> - <children xsi:type="basic:PartStack" xmi:id="_REUyr8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewMStack" toBeRendered="false" containerData="4000"> + <children xsi:type="basic:PartStack" xmi:id="_JWZDD8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewMStack" toBeRendered="false" containerData="4000"> <tags>newtablook</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_REUysMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesView" toBeRendered="false" ref="_REYdBsRFEeOsdtank6IHbg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZDEMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesView" toBeRendered="false" ref="_JWfwysW4EeORw5cz-AoFKA"/> </children> </children> - <children xsi:type="basic:PartSashContainer" xmi:id="_REUyscRFEeOsdtank6IHbg" containerData="7500" selectedElement="_REUyssRFEeOsdtank6IHbg"> - <children xsi:type="basic:PartSashContainer" xmi:id="_REUyssRFEeOsdtank6IHbg" containerData="8006" selectedElement="_REUys8RFEeOsdtank6IHbg" horizontal="true"> - <children xsi:type="advanced:Placeholder" xmi:id="_REUys8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_REWA4sRFEeOsdtank6IHbg"/> - <children xsi:type="basic:PartStack" xmi:id="_REUytMRFEeOsdtank6IHbg" elementId="right" containerData="2500" selectedElement="_REUytcRFEeOsdtank6IHbg"> + <children xsi:type="basic:PartSashContainer" xmi:id="_JWZDEcW4EeORw5cz-AoFKA" containerData="7500" selectedElement="_JWZqEMW4EeORw5cz-AoFKA"> + <children xsi:type="basic:PartSashContainer" xmi:id="_JWZqEMW4EeORw5cz-AoFKA" containerData="8006" selectedElement="_JWZqEcW4EeORw5cz-AoFKA" horizontal="true"> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqEcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_JWaRSMW4EeORw5cz-AoFKA"/> + <children xsi:type="basic:PartStack" xmi:id="_JWZqEsW4EeORw5cz-AoFKA" elementId="right" containerData="2500" selectedElement="_JWZqE8W4EeORw5cz-AoFKA"> <tags>newtablook</tags> <tags>org.eclipse.e4.secondaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_REUytcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ContentOutline" ref="_REXPQcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUytsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.texteditor.TemplatesView" toBeRendered="false" ref="_REYdBMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyt8RFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_REYdBcRFEeOsdtank6IHbg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqE8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ContentOutline" ref="_JWd7hMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqFMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.texteditor.TemplatesView" toBeRendered="false" ref="_JWfwyMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqFcW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_JWfwycW4EeORw5cz-AoFKA"/> </children> </children> - <children xsi:type="basic:PartStack" xmi:id="_REUyuMRFEeOsdtank6IHbg" elementId="bottom" containerData="1994" selectedElement="_REUyvcRFEeOsdtank6IHbg"> + <children xsi:type="basic:PartStack" xmi:id="_JWZqFsW4EeORw5cz-AoFKA" elementId="bottom" containerData="1994" selectedElement="_JWZqG8W4EeORw5cz-AoFKA"> <tags>newtablook</tags> <tags>org.eclipse.e4.secondaryDataStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyucRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProblemView" ref="_REXPG8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyusRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavadocView" ref="_REXPIMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyu8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.SourceView" ref="_REXPIcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyvMRFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_REXPIsRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyvcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.console.ConsoleView" ref="_REXPI8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyvsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_REXPPcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyv8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProgressView" ref="_REXPPsRFEeOsdtank6IHbg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqF8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProblemView" ref="_JWdUk8W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqGMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavadocView" ref="_JWdUmcW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqGcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.SourceView" ref="_JWdUmsW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqGsW4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_JWdUm8W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqG8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.console.ConsoleView" ref="_JWdUnMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqHMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_JWd7gMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqHcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProgressView" ref="_JWd7gcW4EeORw5cz-AoFKA"/> </children> </children> </children> </children> - <children xsi:type="advanced:Perspective" xmi:id="_REUywMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.DebugPerspective" selectedElement="_REUywcRFEeOsdtank6IHbg" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_persp.gif"> + <children xsi:type="advanced:Perspective" xmi:id="_JWZqHsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.DebugPerspective" selectedElement="_JWZqH8W4EeORw5cz-AoFKA" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_persp.gif"> <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/> <tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags> <tags>persp.actionSet:org.eclipse.search.searchActionSet</tags> @@ -185,3791 +185,4261 @@ <tags>persp.perspSC:org.eclipse.wst.jsdt.ui.JavaPerspective</tags> <tags>persp.showIn:org.eclipse.wst.jsdt.ui.PackageExplorer</tags> <tags>persp.perspSC:org.eclipse.wst.xml.ui.perspective</tags> - <children xsi:type="basic:PartSashContainer" xmi:id="_REUywcRFEeOsdtank6IHbg" selectedElement="_REUy28RFEeOsdtank6IHbg"> - <children xsi:type="basic:PartSashContainer" xmi:id="_REUywsRFEeOsdtank6IHbg" containerData="7500" selectedElement="_REUy1MRFEeOsdtank6IHbg"> - <children xsi:type="basic:PartSashContainer" xmi:id="_REUyw8RFEeOsdtank6IHbg" containerData="4500" selectedElement="_REUyxMRFEeOsdtank6IHbg" horizontal="true"> - <children xsi:type="basic:PartStack" xmi:id="_REUyxMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.internal.ui.NavigatorFolderView" containerData="5000" selectedElement="_REUyxcRFEeOsdtank6IHbg"> + <children xsi:type="basic:PartSashContainer" xmi:id="_JWZqH8W4EeORw5cz-AoFKA" selectedElement="_JWZqOcW4EeORw5cz-AoFKA"> + <children xsi:type="basic:PartSashContainer" xmi:id="_JWZqIMW4EeORw5cz-AoFKA" containerData="7500" selectedElement="_JWZqMsW4EeORw5cz-AoFKA"> + <children xsi:type="basic:PartSashContainer" xmi:id="_JWZqIcW4EeORw5cz-AoFKA" containerData="4500" selectedElement="_JWZqIsW4EeORw5cz-AoFKA" horizontal="true"> + <children xsi:type="basic:PartStack" xmi:id="_JWZqIsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.internal.ui.NavigatorFolderView" containerData="5000" selectedElement="_JWZqI8W4EeORw5cz-AoFKA"> <tags>newtablook</tags> <tags>org.eclipse.e4.primaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyxcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.DebugView" ref="_REYdD8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyxsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_REXPGcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyx8RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.ScriptExplorer" toBeRendered="false" ref="_REYdI8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyyMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_REWoEMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyycRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_REXPGMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyysRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.ui.ServersView" ref="_REYdLMRFEeOsdtank6IHbg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqI8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.DebugView" ref="_JWgX0MW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqJMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_JWdUkcW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqJcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.ScriptExplorer" toBeRendered="false" ref="_JWgX5MW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqJsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_JWcGkMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqJ8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_JWdUkMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqKMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.ui.ServersView" ref="_JWg-2MW4EeORw5cz-AoFKA"/> </children> - <children xsi:type="basic:PartStack" xmi:id="_REUyy8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.internal.ui.ToolsFolderView" containerData="5000" selectedElement="_REUyzMRFEeOsdtank6IHbg"> + <children xsi:type="basic:PartStack" xmi:id="_JWZqKcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.internal.ui.ToolsFolderView" containerData="5000" selectedElement="_JWZqKsW4EeORw5cz-AoFKA"> <tags>newtablook</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyzMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.VariableView" ref="_REYdEsRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyzcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.BreakpointView" ref="_REYdFcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyzsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.RegisterView" toBeRendered="false" ref="_REYdG8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUyz8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.SignalsView" toBeRendered="false" ref="_REYdHMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy0MRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ModuleView" toBeRendered="false" ref="_REYdHcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy0cRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ExpressionView" ref="_REYdGMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy0sRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" ref="_REYdJMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy08RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.PHPStackView" toBeRendered="false" ref="_REYdKcRFEeOsdtank6IHbg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqKsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.VariableView" ref="_JWgX08W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqK8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.BreakpointView" ref="_JWgX1sW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqLMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.RegisterView" toBeRendered="false" ref="_JWgX3MW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqLcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.SignalsView" toBeRendered="false" ref="_JWgX3cW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqLsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ModuleView" toBeRendered="false" ref="_JWgX3sW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqL8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ExpressionView" ref="_JWgX2cW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqMMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" ref="_JWg-0MW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqMcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.PHPStackView" toBeRendered="false" ref="_JWg-1cW4EeORw5cz-AoFKA"/> </children> </children> - <children xsi:type="basic:PartSashContainer" xmi:id="_REUy1MRFEeOsdtank6IHbg" containerData="5500" selectedElement="_REUy1cRFEeOsdtank6IHbg" horizontal="true"> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy1cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_REWA4sRFEeOsdtank6IHbg"/> - <children xsi:type="basic:PartStack" xmi:id="_REUy1sRFEeOsdtank6IHbg" elementId="org.eclipse.debug.internal.ui.OutlineFolderView" containerData="2500" selectedElement="_REUy18RFEeOsdtank6IHbg"> + <children xsi:type="basic:PartSashContainer" xmi:id="_JWZqMsW4EeORw5cz-AoFKA" containerData="5500" selectedElement="_JWZqM8W4EeORw5cz-AoFKA" horizontal="true"> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqM8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_JWaRSMW4EeORw5cz-AoFKA"/> + <children xsi:type="basic:PartStack" xmi:id="_JWZqNMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.internal.ui.OutlineFolderView" containerData="2500" selectedElement="_JWZqNcW4EeORw5cz-AoFKA"> <tags>newtablook</tags> <tags>org.eclipse.e4.secondaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy18RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ContentOutline" ref="_REXPQcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy2MRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_REYdBcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy2cRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" toBeRendered="false" ref="_REYdIMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy2sRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" toBeRendered="false" ref="_REYdIcRFEeOsdtank6IHbg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqNcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ContentOutline" ref="_JWd7hMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqNsW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_JWfwycW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqN8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" toBeRendered="false" ref="_JWgX4cW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqOMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" toBeRendered="false" ref="_JWgX4sW4EeORw5cz-AoFKA"/> </children> </children> </children> - <children xsi:type="basic:PartStack" xmi:id="_REUy28RFEeOsdtank6IHbg" elementId="org.eclipse.debug.internal.ui.ConsoleFolderView" containerData="2500" selectedElement="_REUy3MRFEeOsdtank6IHbg"> + <children xsi:type="basic:PartStack" xmi:id="_JWZqOcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.internal.ui.ConsoleFolderView" containerData="2500" selectedElement="_JWZqOsW4EeORw5cz-AoFKA"> <tags>newtablook</tags> <tags>org.eclipse.e4.secondaryDataStack</tags> <tags>active</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy3MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.console.ConsoleView" ref="_REXPI8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy3cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.TaskList" ref="_REYdDcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy3sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_REXPPcRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy38RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.PropertySheet" toBeRendered="false" ref="_REYdDsRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy4MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProblemView" ref="_REXPG8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy4cRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.executablesView" ref="_REYdHsRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy4sRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser" toBeRendered="false" ref="_REYdH8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy48RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.result.resultView" toBeRendered="false" ref="_REYdIsRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy5MRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.DisplayView" toBeRendered="false" ref="_REYdJ8RFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy5cRFEeOsdtank6IHbg" elementId="org.eclipse.search.SearchResultView" toBeRendered="false" ref="_REYdKMRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy5sRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.PHPDebugOutput" ref="_REYdKsRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy58RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.PHPBrowserOutput" ref="_REYdK8RFEeOsdtank6IHbg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqOsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.console.ConsoleView" ref="_JWdUnMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqO8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.TaskList" ref="_JWgXzsW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqPMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_JWd7gMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqPcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.PropertySheet" toBeRendered="false" ref="_JWgXz8W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqPsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProblemView" ref="_JWdUk8W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqP8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.executablesView" ref="_JWgX38W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqQMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser" toBeRendered="false" ref="_JWgX4MW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqQcW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.result.resultView" toBeRendered="false" ref="_JWgX48W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqQsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.DisplayView" toBeRendered="false" ref="_JWg-08W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.search.SearchResultView" toBeRendered="false" ref="_JWg-1MW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqRMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.PHPDebugOutput" ref="_JWg-1sW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqRcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.PHPBrowserOutput" ref="_JWg-18W4EeORw5cz-AoFKA"/> </children> </children> </children> </children> - <children xsi:type="basic:PartStack" xmi:id="_REUy6MRFEeOsdtank6IHbg" elementId="stickyFolderRight" toBeRendered="false" containerData="2500"> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy6cRFEeOsdtank6IHbg" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_REWA3cRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy6sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_REWA3sRFEeOsdtank6IHbg"/> - <children xsi:type="advanced:Placeholder" xmi:id="_REUy68RFEeOsdtank6IHbg" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_REWA4cRFEeOsdtank6IHbg"/> + <children xsi:type="basic:PartStack" xmi:id="_JWZqRsW4EeORw5cz-AoFKA" elementId="stickyFolderRight" toBeRendered="false" containerData="2500"> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqR8W4EeORw5cz-AoFKA" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_JWaRQ8W4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqSMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_JWaRRMW4EeORw5cz-AoFKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_JWZqScW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_JWaRR8W4EeORw5cz-AoFKA"/> </children> </children> - <sharedElements xsi:type="basic:Part" xmi:id="_REWA3cRFEeOsdtank6IHbg" elementId="org.eclipse.help.ui.HelpView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWaRQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.help.ui.HelpView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Help</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REWA3sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.internal.introview" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWaRRMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.internal.introview" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" tooltip="" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> - <menus xmi:id="_REWA38RFEeOsdtank6IHbg" elementId="org.eclipse.ui.internal.introview"> + <menus xmi:id="_JWaRRcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.internal.introview"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_REWA4MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.internal.introview" visible="false"/> + <toolbar xmi:id="_JWaRRsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.internal.introview" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REWA4cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWaRR8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Help</tags> </sharedElements> - <sharedElements xsi:type="advanced:Area" xmi:id="_REWA4sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.editorss" selectedElement="_REWA48RFEeOsdtank6IHbg"> - <children xsi:type="basic:PartStack" xmi:id="_REWA48RFEeOsdtank6IHbg" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_REWoDMRFEeOsdtank6IHbg"> + <sharedElements xsi:type="advanced:Area" xmi:id="_JWaRSMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editorss" selectedElement="_JWaRScW4EeORw5cz-AoFKA"> + <children xsi:type="basic:PartStack" xmi:id="_JWaRScW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_JWbfTsW4EeORw5cz-AoFKA"> <tags>newtablook</tags> <tags>org.eclipse.e4.primaryDataStack</tags> <tags>EditorStack</tags> - <children xsi:type="basic:Part" xmi:id="_REWA5MRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="GameTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/GameTest.java" closeable="true"> - <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/GameTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="646" selectionTopPixel="0"/>
</editor>"/> + <tags>active</tags> + <children xsi:type="basic:Part" xmi:id="_JWaRSsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="GameTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/GameTest.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/GameTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="16" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA5cRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRS8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA5sRFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRTMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA58RFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRTcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRTsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRT8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRUMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWA6MRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HideableChar.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/HideableChar.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRUcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HideableChar.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/HideableChar.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/HideableChar.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="23" selectionOffset="772" selectionTopPixel="2100"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA6cRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRUsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA6sRFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRU8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA68RFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRVMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWA7MRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Game.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/Game.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRVcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Game.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/Game.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/Game.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="5156" selectionTopPixel="6441"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA7cRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRVsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA7sRFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRV8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA78RFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRWMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWA8MRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="TextUIMain.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/TextUIMain.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRWcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="TextUIMain.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/TextUIMain.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/TextUIMain.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="5" selectionOffset="1784" selectionTopPixel="1092"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA8cRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRWsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA8sRFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRW8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWA88RFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRXMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWA9MRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HideableCharTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/HideableCharTest.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRXcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HideableCharTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/HideableCharTest.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/HideableCharTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="7" selectionOffset="7437" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA9cRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="GameTest2.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/GameTest2.java" closeable="true"> - <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/GameTest2.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="541" selectionTopPixel="1092"/>
</editor>"/> + <children xsi:type="basic:Part" xmi:id="_JWaRXsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="GameTest2.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/GameTest2.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/GameTest2.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="541" selectionTopPixel="1092"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRX8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRYMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRYcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWA9sRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="PhraseSelectorTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/PhraseSelectorTest.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRYsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="PhraseSelectorTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/PhraseSelectorTest.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/PhraseSelectorTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="1686" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA98RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Generate.class" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/classf_obj.gif" tooltip="hw2.Generate" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRY8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Generate.class" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/classf_obj.gif" tooltip="hw2.Generate" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.ClassFileEditorNoSource">
<input factoryID="org.eclipse.jdt.ui.ClassFileEditorInputFactory" org.eclipse.jdt.ui.ClassFileIdentifier="=homework/src\/hw2\/speccheck_hw2.jar&lt;hw2(Generate.class"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.ClassFileEditorNoSource</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA-MRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="GameTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/GameTest.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRZMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="GameTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/GameTest.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/temp/src/hw2/GameTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="6" selectionOffset="17280" selectionTopPixel="12623"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA-cRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Game.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/Game.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRZcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Game.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/Game.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/temp/src/hw2/Game.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="12" selectionOffset="5839" selectionTopPixel="6328"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA-sRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HideableCharTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/HideableCharTest.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRZsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HideableCharTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/HideableCharTest.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/temp/src/hw2/HideableCharTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="104" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA-8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HangmanUI.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/HangmanUI.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRZ8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HangmanUI.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/HangmanUI.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/temp/src/hw2/HangmanUI.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA_MRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="TextUIMain.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/TextUIMain.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRaMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="TextUIMain.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/TextUIMain.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/temp/src/hw2/TextUIMain.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="482" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA_cRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="PhraseSelector.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/PhraseSelector.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRacW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="PhraseSelector.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/PhraseSelector.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/temp/src/hw2/PhraseSelector.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA_sRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HideableChar.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/HideableChar.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRasW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="HideableChar.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/HideableChar.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/temp/src/hw2/HideableChar.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWA_8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="UIMain.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/UIMain.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRa8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="UIMain.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="temp/src/hw2/UIMain.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/temp/src/hw2/UIMain.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="388" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBAMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="CommentsRemover.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/CommentsRemover.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRbMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="CommentsRemover.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/CommentsRemover.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/CommentsRemover.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="527" selectionTopPixel="252"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBAcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="LineNumberer.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/LineNumberer.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRbcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="LineNumberer.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/LineNumberer.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project7/src/lab7/LineNumberer.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="43" selectionOffset="980" selectionTopPixel="560"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBAsRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="LineNumberer2.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/LineNumberer2.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRbsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="LineNumberer2.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/LineNumberer2.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project7/src/lab7/LineNumberer2.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBA8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="TestPlotter.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/TestPlotter.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRb8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="TestPlotter.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/TestPlotter.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project7/src/lab7/TestPlotter.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="84"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBBMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="TextEditor.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/TextEditor.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRcMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="TextEditor.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/TextEditor.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project7/src/lab7/TextEditor.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="556" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBBcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="DrawingFromTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/DrawingFromTest.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRccW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="DrawingFromTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/DrawingFromTest.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project7/src/lab7/DrawingFromTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="212" selectionOffset="1921" selectionTopPixel="1176"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBBsRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="QuizAverager.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/QuizAverager.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRcsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="QuizAverager.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project7/src/lab7/QuizAverager.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project7/src/lab7/QuizAverager.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="5" selectionOffset="958" selectionTopPixel="308"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBB8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="PasswordReader.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/PasswordReader.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRc8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="PasswordReader.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/PasswordReader.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/PasswordReader.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="643" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBCMRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRdMW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBCcRFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRdcW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBCsRFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRdsW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWBC8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Contact.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/Contact.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRd8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Contact.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/Contact.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/Contact.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="515" selectionTopPixel="308"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBDMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ContactDirectory.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/ContactDirectory.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaReMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ContactDirectory.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/ContactDirectory.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/ContactDirectory.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="1045" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBDcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="PhraseSelector.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/PhraseSelector.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRecW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="PhraseSelector.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw2/PhraseSelector.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw2/PhraseSelector.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="1212" selectionTopPixel="448"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBDsRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="StringTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project2/src/lab2/StringTest.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaResW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="StringTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project2/src/lab2/StringTest.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project2/src/lab2/StringTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBD8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="StringTester.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project3/src/lab3/StringTester.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRe8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="StringTester.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project3/src/lab3/StringTester.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project3/src/lab3/StringTester.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBEMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="StringFormat.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project3/src/lab3/StringFormat.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRfMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="StringFormat.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project3/src/lab3/StringFormat.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project3/src/lab3/StringFormat.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBEcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ScannerTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project4/src/lab4/ScannerTest.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRfcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ScannerTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project4/src/lab4/ScannerTest.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project4/src/lab4/ScannerTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="268" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBEsRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="UsingDelimiter.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project4/src/lab4/UsingDelimiter.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRfsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="UsingDelimiter.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project4/src/lab4/UsingDelimiter.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project4/src/lab4/UsingDelimiter.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="17" selectionOffset="206" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBE8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ArrayProcessor.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/ArrayProcessor.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRf8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ArrayProcessor.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/ArrayProcessor.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/ArrayProcessor.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="220" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBFMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Processor.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/Processor.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRgMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Processor.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/Processor.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/Processor.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="126" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBFcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="MaxProcessor.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/MaxProcessor.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRgcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="MaxProcessor.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/MaxProcessor.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/MaxProcessor.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="241" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBFsRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ArrayExamples.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/ArrayExamples.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRgsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ArrayExamples.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/ArrayExamples.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/ArrayExamples.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="175" selectionTopPixel="504"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBF8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="RangeCounter.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/RangeCounter.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRg8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="RangeCounter.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/RangeCounter.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/RangeCounter.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="100" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBGMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ProcessorTester.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/ProcessorTester.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRhMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ProcessorTester.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="exam1/src/exam2/ProcessorTester.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/exam1/src/exam2/ProcessorTester.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="449" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> </children> - <children xsi:type="basic:Part" xmi:id="_REWBGcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="IntList.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/IntList.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRhcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="IntList.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/IntList.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project10/src/lab10/IntList.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="180" selectionTopPixel="588"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBGsRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRhsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBG8RFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRh8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBHMRFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRiMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWBHcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="IntListSorted.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/IntListSorted.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRicW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="IntListSorted.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/IntListSorted.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project10/src/lab10/IntListSorted.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="952" selectionTopPixel="420"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBHsRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRisW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBH8RFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRi8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBIMRFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRjMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWBIcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="IntLister.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/IntLister.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRjcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="IntLister.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/IntLister.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project10/src/lab10/IntLister.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="439" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBIsRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRjsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBI8RFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRj8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBJMRFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRkMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWBJcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="SwingGraphicsExample.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/SwingGraphicsExample.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRkcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="SwingGraphicsExample.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/SwingGraphicsExample.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project10/src/lab10/SwingGraphicsExample.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="8" selectionOffset="805" selectionTopPixel="1540"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBJsRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRksW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBJ8RFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRk8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBKMRFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRlMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWBKcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="FirstSwingExample.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/FirstSwingExample.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRlcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="FirstSwingExample.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/FirstSwingExample.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project10/src/lab10/FirstSwingExample.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="2974" selectionTopPixel="140"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBKsRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRlsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBK8RFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRl8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBLMRFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRmMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWBLcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Portrait.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/Portrait.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWaRmcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Portrait.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/Portrait.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project10/src/lab10/Portrait.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="10" selectionOffset="2302" selectionTopPixel="996"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBLsRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWaRmsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBL8RFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4MMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBMMRFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4McW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWBMcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Portrait7SL.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/Portrait7SL.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWa4MsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Portrait7SL.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/Portrait7SL.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project10/src/lab10/Portrait7SL.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="133" selectionTopPixel="252"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWBMsRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4M8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoBsRFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4NMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoB8RFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4NcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWoCMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Portrait0CRJ.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/Portrait0CRJ.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWa4NsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Portrait0CRJ.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/Portrait0CRJ.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project10/src/lab10/Portrait0CRJ.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="11" selectionOffset="716" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoCcRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4N8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoCsRFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4OMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoC8RFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4OcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> - <children xsi:type="basic:Part" xmi:id="_REWoDMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="GroupPhoto.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/GroupPhoto.java" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_JWa4OsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="GroupPhoto.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="project10/src/lab10/GroupPhoto.java" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/project10/src/lab10/GroupPhoto.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="529" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoDcRFEeOsdtank6IHbg" elementId="#CompilationUnitEditorContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4O8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitEditorContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> <tags>popup:#AbstractTextEditorContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoDsRFEeOsdtank6IHbg" elementId="#CompilationUnitRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4PMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#CompilationUnitRulerContext</tags> <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> <tags>popup:#AbstractTextEditorRulerContext</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoD8RFEeOsdtank6IHbg" elementId="#OverviewRulerContext"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4PcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4PsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4P8W4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4QMW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWa4QcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Card.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/api/Card.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/api/Card.java"/>
<editorState selectionHorizontalPixel="8" selectionLength="0" selectionOffset="3760" selectionTopPixel="3267"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWa4QsW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfSMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfScW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWbfSsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Hand.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/api/Hand.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/api/Hand.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="1340" selectionTopPixel="641"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfS8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfTMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfTcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWbfTsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="IEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/api/IEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/api/IEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="5600" selectionTopPixel="2478"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <tags>active</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfT8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfUMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfUcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWbfUsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Suit.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/api/Suit.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/api/Suit.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfU8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfVMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfVcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWbfVsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="SubsetFinder.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/util/SubsetFinder.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/util/SubsetFinder.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="1409"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfV8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfWMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfWcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWbfWsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="AbstractEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/AbstractEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/AbstractEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="283" selectionTopPixel="0"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfW8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfXMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfXcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWbfXsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="AllPrimesEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/AllPrimesEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/AllPrimesEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="347" selectionTopPixel="0"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfX8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfYMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfYcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWbfYsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="FourOfAKindEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/FourOfAKindEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/FourOfAKindEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="0"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfY8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfZMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfZcW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWbfZsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="FullHouseEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/FullHouseEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/FullHouseEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="2" selectionOffset="613" selectionTopPixel="0"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfZ8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfaMW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfacW4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWbfasW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="StraightFlushEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/StraightFlushEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/StraightFlushEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="60" selectionOffset="240" selectionTopPixel="357"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWbfa8W4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGesW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGe8W4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWcGfMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ThreeOfAKindEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/ThreeOfAKindEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/ThreeOfAKindEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="0" selectionTopPixel="11"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGfcW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGfsW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGf8W4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWcGgMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="CatchAllEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/CatchAllEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/CatchAllEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="518" selectionTopPixel="0"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGgcW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGgsW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGg8W4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWcGhMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="OnePairEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/OnePairEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/OnePairEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="16" selectionOffset="501" selectionTopPixel="0"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGhcW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGhsW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGh8W4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWcGiMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="StraightEvaluator.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/StraightEvaluator.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/StraightEvaluator.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="6" selectionOffset="702" selectionTopPixel="294"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGicW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGisW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGi8W4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_JWcGjMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="EvaluatorTest.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="homework/src/hw3/EvaluatorTest.java" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/homework/src/hw3/EvaluatorTest.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="43" selectionTopPixel="0"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGjcW4EeORw5cz-AoFKA" elementId="#CompilationUnitEditorContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitEditorContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> + <tags>popup:#AbstractTextEditorContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGjsW4EeORw5cz-AoFKA" elementId="#CompilationUnitRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#CompilationUnitRulerContext</tags> + <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> + <tags>popup:#AbstractTextEditorRulerContext</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWcGj8W4EeORw5cz-AoFKA" elementId="#OverviewRulerContext"> <tags>menuContribution:popup</tags> <tags>popup:#OverviewRulerContext</tags> </menus> </children> </children> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REWoEMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.PackageExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.gif" tooltip="Workspace" closeable="true"> - <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view group_libraries="1" layout="2" linkWithEditor="0" rootMode="1" workingSetName="Aggregate for window 1395868172708">
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.pde.ui.ExternalPluginLibrariesFilter1" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.pde.ui.BinaryProjectFilter1" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
</xmlDefinedFilters>
</customFilters>
</view>"/> + <sharedElements xsi:type="basic:Part" xmi:id="_JWcGkMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackageExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.gif" tooltip="Working Sets" closeable="true"> + <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view configured="true" group_libraries="1" layout="2" linkWithEditor="0" rootMode="2" sortWorkingSets="false" workingSetName="Aggregate for window 1395868172708">
<localWorkingSetManager>
<workingSet editPageId="org.eclipse.jdt.internal.ui.OthersWorkingSet" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1397610546253_1" label="Other Projects" name="Other Projects">
<item elementID="=exam1" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=homework" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=mini1" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=project1" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=project10" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=project2" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=project3" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=project4" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=project5" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=project6" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=project7" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=project8" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
<item elementID="=temp" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
</workingSet>
</localWorkingSetManager>
<activeWorkingSet workingSetName="Other Projects"/>
<activeWorkingSet workingSetName="HW03"/>
<allWorkingSets workingSetName="Other Projects"/>
<allWorkingSets workingSetName="HW03"/>
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.pde.ui.ExternalPluginLibrariesFilter1" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.pde.ui.BinaryProjectFilter1" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
</xmlDefinedFilters>
</customFilters>
</view>"/> <tags>View</tags> <tags>categoryTag:Java</tags> - <tags>activeOnClose</tags> - <menus xmi:id="_REWoEcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.PackageExplorer"> + <menus xmi:id="_JWcGkcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackageExplorer"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoJ8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.PackageExplorer"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWctcsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackageExplorer"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.PackageExplorer</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REWoKMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.PackageExplorer"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWctc8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackageExplorer"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.PackageExplorer</tags> </menus> - <toolbar xmi:id="_REXPFMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.PackageExplorer" visible="false"/> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWctdMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackageExplorer"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.PackageExplorer</tags> + </menus> + <toolbar xmi:id="_JWdUjMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackageExplorer"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPGMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.TypeHierarchy" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWdUkMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.TypeHierarchy" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Java</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPGcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ResourceNavigator" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWdUkcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ResourceNavigator" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPGsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigator.ProjectExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWdUksW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigator.ProjectExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPG8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProblemView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.gif" tooltip="0 errors, 55 warnings, 0 others" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWdUk8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProblemView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.gif" tooltip="0 errors, 57 warnings, 0 others" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view PRIMARY_SORT_FIELD="org.eclipse.ui.ide.severityAndDescriptionField" categoryGroup="org.eclipse.ui.ide.severity" markerContentGenerator="org.eclipse.ui.ide.problemsGenerator" partName="Problems">
<expanded>
<category IMemento.internal.id="Warnings (55 items)"/>
</expanded>
<columnWidths org.eclipse.ui.ide.locationField="90" org.eclipse.ui.ide.markerType="90" org.eclipse.ui.ide.pathField="120" org.eclipse.ui.ide.resourceField="90" org.eclipse.ui.ide.severityAndDescriptionField="300"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.severityAndDescriptionField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.resourceField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.pathField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.locationField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.markerType"/>
</view>"/> <tags>View</tags> <tags>categoryTag:General</tags> - <menus xmi:id="_REXPHMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProblemView"> + <menus xmi:id="_JWdUlMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProblemView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REXPHcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProblemView"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWdUlcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProblemView"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.ui.views.ProblemView</tags> + <tags>popup:org.eclipse.ui.ide.MarkersView</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWdUlsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProblemView"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.ui.views.ProblemView</tags> <tags>popup:org.eclipse.ui.ide.MarkersView</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REXPHsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProblemView"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWdUl8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProblemView"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.ui.views.ProblemView</tags> <tags>popup:org.eclipse.ui.ide.MarkersView</tags> </menus> - <toolbar xmi:id="_REXPH8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProblemView" visible="false"/> + <toolbar xmi:id="_JWdUmMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProblemView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPIMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavadocView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWdUmcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavadocView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Java</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPIcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.SourceView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWdUmsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.SourceView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Java</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPIsRFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.views.SearchView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWdUm8W4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.views.SearchView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPI8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.console.ConsoleView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWdUnMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.console.ConsoleView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.gif" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:General</tags> - <menus xmi:id="_REXPJMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.console.ConsoleView"> + <menus xmi:id="_JWdUncW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.console.ConsoleView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REXPJcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWdUnsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REXPJsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWdUn8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REXPJ8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWdUoMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu</tags> </menus> - <toolbar xmi:id="_REXPKMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.console.ConsoleView" visible="false"/> + <toolbar xmi:id="_JWdUocW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.console.ConsoleView"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPPcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.BookmarkView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWd7gMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.BookmarkView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPPsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProgressView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWd7gcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProgressView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.gif" tooltip="" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:General</tags> - <menus xmi:id="_REXPP8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProgressView"> + <menus xmi:id="_JWd7gsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProgressView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_REXPQMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProgressView" visible="false"/> + <toolbar xmi:id="_JWd7g8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProgressView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REXPQcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ContentOutline" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWd7hMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ContentOutline" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.gif" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:General</tags> - <menus xmi:id="_REXPQsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ContentOutline"> + <menus xmi:id="_JWd7hcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ContentOutline"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX18cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7jsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7j8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7kMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7kcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7ksW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7k8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7lMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7lcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7lsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7l8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7mMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7mcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7msW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7m8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7nMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7ncW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX18sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7nsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX188RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7n8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX19MRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7oMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX19cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7ocW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX19sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7osW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX198RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7o8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX1-MRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7pMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX1-cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7pcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX1-sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7psW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX1-8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7p8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX1_MRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7qMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX1_cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7qcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REX1_sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.outline"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7qsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.outline</tags> </menus> - <toolbar xmi:id="_REX1_8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ContentOutline" visible="false"/> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7q8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7rMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWd7rcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <toolbar xmi:id="_JWd7rsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ContentOutline"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdBMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.texteditor.TemplatesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Templates" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/templates.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWfwyMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.texteditor.TemplatesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Templates" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/templates.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdBcRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.views.AntView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWfwycW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.views.AntView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Ant</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdBsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWfwysW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Git</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdB8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.ResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWfwy8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.ResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.gif" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view failuresOnly="false" layout="1" orientation="2" ratio="500" scroll="false" time="true"/>"/> <tags>View</tags> <tags>categoryTag:Java</tags> - <menus xmi:id="_REYdCMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.ResultView"> + <menus xmi:id="_JWfwzMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.ResultView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_REYdCcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.ResultView"> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWgXwMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.ResultView"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.junit.ResultView</tags> + </menus> + <menus xsi:type="menu:PopupMenu" xmi:id="_JWgXwcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.ResultView"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.junit.ResultView</tags> </menus> - <toolbar xmi:id="_REYdCsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.ResultView" visible="false"/> + <toolbar xmi:id="_JWgXwsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.ResultView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdC8RFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.StructureView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Structure" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/properties_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgXzMW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.StructureView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Structure" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/properties_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:WindowBuilder</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdDMRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.PaletteView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Palette" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/palette.png" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgXzcW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.PaletteView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Palette" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/palette.png" closeable="true"> <tags>View</tags> <tags>categoryTag:WindowBuilder</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdDcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.TaskList" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgXzsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.TaskList" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdDsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.PropertySheet" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgXz8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.PropertySheet" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdD8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.DebugView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX0MW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.DebugView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.gif" tooltip="" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:Debug</tags> - <menus xmi:id="_REYdEMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.DebugView"> + <menus xmi:id="_JWgX0cW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.DebugView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_REYdEcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.DebugView" visible="false"/> + <toolbar xmi:id="_JWgX0sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.DebugView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdEsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.VariableView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX08W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.VariableView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.gif" tooltip="" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:Debug</tags> - <menus xmi:id="_REYdE8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.VariableView"> + <menus xmi:id="_JWgX1MW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.VariableView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_REYdFMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.VariableView" visible="false"/> + <toolbar xmi:id="_JWgX1cW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.VariableView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdFcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.BreakpointView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX1sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.BreakpointView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.gif" tooltip="" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:Debug</tags> - <menus xmi:id="_REYdFsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.BreakpointView"> + <menus xmi:id="_JWgX18W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.BreakpointView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_REYdF8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.BreakpointView" visible="false"/> + <toolbar xmi:id="_JWgX2MW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.BreakpointView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdGMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ExpressionView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX2cW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ExpressionView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.gif" tooltip="" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:Debug</tags> - <menus xmi:id="_REYdGcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ExpressionView"> + <menus xmi:id="_JWgX2sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ExpressionView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_REYdGsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ExpressionView" visible="false"/> + <toolbar xmi:id="_JWgX28W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ExpressionView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdG8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.RegisterView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX3MW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.RegisterView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdHMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.SignalsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Signals" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/view16/signals_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX3cW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.SignalsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Signals" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/view16/signals_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdHcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ModuleView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX3sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ModuleView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdHsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.executablesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Executables" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/obj16/exec_view_obj.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX38W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.executablesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Executables" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/obj16/exec_view_obj.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdH8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Memory Browser" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui.memory.memorybrowser/icons/memorybrowser_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX4MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Memory Browser" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui.memory.memorybrowser/icons/memorybrowser_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdIMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Trace Control" iconURI="platform:/plugin/org.eclipse.cdt.dsf.gdb.ui/icons/full/view16/tracecontrol_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX4cW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Trace Control" iconURI="platform:/plugin/org.eclipse.cdt.dsf.gdb.ui/icons/full/view16/tracecontrol_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdIcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Disassembly" iconURI="platform:/plugin/org.eclipse.cdt.dsf.ui/icons/disassembly.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX4sW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Disassembly" iconURI="platform:/plugin/org.eclipse.cdt.dsf.ui/icons/disassembly.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdIsRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.result.resultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="SQL Results" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.result.ui/icons/sqlresult.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX48W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.result.resultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="SQL Results" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.result.ui/icons/sqlresult.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Data Management</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdI8RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.ScriptExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/package.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWgX5MW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.ScriptExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/package.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Dynamic Languages</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdJMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Interactive Console" iconURI="platform:/plugin/org.eclipse.dltk.debug.ui/icons/full/eview16/debug_console.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWg-0MW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Interactive Console" iconURI="platform:/plugin/org.eclipse.dltk.debug.ui/icons/full/eview16/debug_console.gif" tooltip="" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:Dynamic Languages</tags> - <menus xmi:id="_REYdJcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView"> + <menus xmi:id="_JWg-0cW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_REYdJsRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" visible="false"/> + <toolbar xmi:id="_JWg-0sW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdJ8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.DisplayView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWg-08W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.DisplayView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdKMRFEeOsdtank6IHbg" elementId="org.eclipse.search.SearchResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWg-1MW4EeORw5cz-AoFKA" elementId="org.eclipse.search.SearchResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdKcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.PHPStackView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Parameter Stack" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/phpfile.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWg-1cW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.PHPStackView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Parameter Stack" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/phpfile.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:PHP Tools</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdKsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.PHPDebugOutput" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Debug Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/debug_output.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWg-1sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.PHPDebugOutput" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Debug Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/debug_output.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:PHP Tools</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdK8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.PHPBrowserOutput" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Browser Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/browser_output.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWg-18W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.PHPBrowserOutput" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Browser Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/browser_output.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:PHP Tools</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_REYdLMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.ui.ServersView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_JWg-2MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.ui.ServersView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" closeable="true"> <tags>View</tags> <tags>categoryTag:Server</tags> </sharedElements> - <trimBars xmi:id="_REYdLcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.main.toolbar"> - <children xsi:type="menu:ToolBar" xmi:id="_REYdLsRFEeOsdtank6IHbg" elementId="group.file" toBeRendered="false"> + <trimBars xmi:id="_JWg-2cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.main.toolbar"> + <children xsi:type="menu:ToolBar" xmi:id="_JWg-2sW4EeORw5cz-AoFKA" elementId="group.file" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_REYdL8RFEeOsdtank6IHbg" elementId="group.file" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_JWg-28W4EeORw5cz-AoFKA" elementId="group.file" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REYdMMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.workbench.file"> + <children xsi:type="menu:ToolBar" xmi:id="_JWg-3MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.workbench.file"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVdW8MTWEeO-CfRxHWQfBg" elementId="new.group"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVd-AMTWEeO-CfRxHWQfBg" elementId="newWizardDropDown"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVd-AcTWEeO-CfRxHWQfBg" elementId="new.ext" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVelEMTWEeO-CfRxHWQfBg" elementId="save.group" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVelEcTWEeO-CfRxHWQfBg" elementId="save"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVelEsTWEeO-CfRxHWQfBg" elementId="saveAll"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVelE8TWEeO-CfRxHWQfBg" elementId="save.ext" visible="false"/> - <children xsi:type="menu:HandledToolItem" xmi:id="_vVfMIMTWEeO-CfRxHWQfBg" elementId="print" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.gif" tooltip="Print" enabled="false" command="_RFyyScRFEeOsdtank6IHbg"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVkrsMTWEeO-CfRxHWQfBg" elementId="print.ext" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVlSwMTWEeO-CfRxHWQfBg" elementId="build.group"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVlSwcTWEeO-CfRxHWQfBg" elementId="build.ext" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVlSwsTWEeO-CfRxHWQfBg" elementId="additions"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-3cW4EeORw5cz-AoFKA" elementId="new.group"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-3sW4EeORw5cz-AoFKA" elementId="newWizardDropDown"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-38W4EeORw5cz-AoFKA" elementId="new.ext" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-4MW4EeORw5cz-AoFKA" elementId="save.group" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-4cW4EeORw5cz-AoFKA" elementId="save"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-4sW4EeORw5cz-AoFKA" elementId="saveAll"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-48W4EeORw5cz-AoFKA" elementId="save.ext" visible="false"/> + <children xsi:type="menu:HandledToolItem" xmi:id="_JWg-5MW4EeORw5cz-AoFKA" elementId="print" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.gif" tooltip="Print" command="_JX9JQMW4EeORw5cz-AoFKA"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-5cW4EeORw5cz-AoFKA" elementId="print.ext" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-5sW4EeORw5cz-AoFKA" elementId="build.group"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-58W4EeORw5cz-AoFKA" elementId="build.ext" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWg-6MW4EeORw5cz-AoFKA" elementId="additions"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZEE8RFEeOsdtank6IHbg" elementId="additions" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_JWg-6cW4EeORw5cz-AoFKA" elementId="additions" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_REZEFMRFEeOsdtank6IHbg" elementId="additions" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_JWg-6sW4EeORw5cz-AoFKA" elementId="additions" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrI8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.actionSet.presentation"> + <children xsi:type="menu:ToolBar" xmi:id="_JWhl58W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.actionSet.presentation"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vziaEMTWEeO-CfRxHWQfBg" elementId="Presentation"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vziaEcTWEeO-CfRxHWQfBg" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vzjBIMTWEeO-CfRxHWQfBg" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vzjBIcTWEeO-CfRxHWQfBg" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vzjBIsTWEeO-CfRxHWQfBg" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vzjBI8TWEeO-CfRxHWQfBg" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl6MW4EeORw5cz-AoFKA" elementId="Presentation"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl6cW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl6sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl68W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl7MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl7cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrKsRFEeOsdtank6IHbg" elementId="com_sysdeo_eclipse_tomcat_actionSet" visible="false"> + <children xsi:type="menu:ToolBar" xmi:id="_JWhl7sW4EeORw5cz-AoFKA" elementId="com_sysdeo_eclipse_tomcat_actionSet" visible="false"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qva7kcS4EeOCkZhASJVLuw" elementId="additions"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qva7ksS4EeOCkZhASJVLuw" elementId="com.sysdeo.eclipse.tomcat.start"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qva7k8S4EeOCkZhASJVLuw" elementId="com.sysdeo.eclipse.tomcat.stop"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_qva7lMS4EeOCkZhASJVLuw" elementId="com.sysdeo.eclipse.tomcat.restart"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl78W4EeORw5cz-AoFKA" elementId="additions"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl8MW4EeORw5cz-AoFKA" elementId="com.sysdeo.eclipse.tomcat.start"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl8cW4EeORw5cz-AoFKA" elementId="com.sysdeo.eclipse.tomcat.stop"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl8sW4EeORw5cz-AoFKA" elementId="com.sysdeo.eclipse.tomcat.restart"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrL8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.breakpointActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_JWhl88W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.breakpointActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXSi8MTWEeO-CfRxHWQfBg" elementId="breakpointGroup"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXSi8cTWEeO-CfRxHWQfBg" elementId="org.eclipse.debug.ui.actions.SkipAllBreakpoints"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl9MW4EeORw5cz-AoFKA" elementId="breakpointGroup"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl9cW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.actions.SkipAllBreakpoints"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrMsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.launchActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_JWhl9sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.launchActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXSi8sTWEeO-CfRxHWQfBg" elementId="debug"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXTKAMTWEeO-CfRxHWQfBg" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXTKAcTWEeO-CfRxHWQfBg" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXTKAsTWEeO-CfRxHWQfBg" elementId="org.eclipse.debug.internal.ui.actions.ProfileDropDownAction"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXTKA8TWEeO-CfRxHWQfBg" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl98W4EeORw5cz-AoFKA" elementId="debug"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl-MW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl-cW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl-sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.internal.ui.actions.ProfileDropDownAction"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl-8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrOMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_JWhl_MW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXTxEMTWEeO-CfRxHWQfBg" elementId="JavaWizards"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXTxEcTWEeO-CfRxHWQfBg" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXTxEsTWEeO-CfRxHWQfBg" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXTxE8TWEeO-CfRxHWQfBg" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl_cW4EeORw5cz-AoFKA" elementId="JavaWizards"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl_sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhl_8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWhmAMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrPcRFEeOsdtank6IHbg" elementId="org.eclipse.search.searchActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_JWiM8MW4EeORw5cz-AoFKA" elementId="org.eclipse.search.searchActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXUYIMTWEeO-CfRxHWQfBg" elementId="Search"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXUYIcTWEeO-CfRxHWQfBg" elementId="openType"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXUYIsTWEeO-CfRxHWQfBg" elementId="org.eclipse.search.OpenSearchDialogPage"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM8cW4EeORw5cz-AoFKA" elementId="Search"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM8sW4EeORw5cz-AoFKA" elementId="openType"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM88W4EeORw5cz-AoFKA" elementId="org.eclipse.search.OpenSearchDialogPage"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrQcRFEeOsdtank6IHbg" elementId="group.nav" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_JWiM9MW4EeORw5cz-AoFKA" elementId="group.nav" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_REZrQsRFEeOsdtank6IHbg" elementId="group.nav" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_JWiM9cW4EeORw5cz-AoFKA" elementId="group.nav" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrQ8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.workbench.navigate"> + <children xsi:type="menu:ToolBar" xmi:id="_JWiM9sW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.workbench.navigate"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVlSw8TWEeO-CfRxHWQfBg" elementId="history.group"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVlSxMTWEeO-CfRxHWQfBg" elementId="group.application" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVlSxcTWEeO-CfRxHWQfBg" elementId="backardHistory"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVl50MTWEeO-CfRxHWQfBg" elementId="forwardHistory"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVl50cTWEeO-CfRxHWQfBg" elementId="pin.group"/> - <children xsi:type="menu:HandledToolItem" xmi:id="_vVl50sTWEeO-CfRxHWQfBg" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.gif" tooltip="Pin Editor" enabled="false" command="_RFkIxMRFEeOsdtank6IHbg"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXU_MMTWEeO-CfRxHWQfBg" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXU_McTWEeO-CfRxHWQfBg" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vXU_MsTWEeO-CfRxHWQfBg" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM98W4EeORw5cz-AoFKA" elementId="history.group"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM-MW4EeORw5cz-AoFKA" elementId="group.application" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM-cW4EeORw5cz-AoFKA" elementId="backardHistory"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM-sW4EeORw5cz-AoFKA" elementId="forwardHistory"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM-8W4EeORw5cz-AoFKA" elementId="pin.group"/> + <children xsi:type="menu:HandledToolItem" xmi:id="_JWiM_MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.gif" tooltip="Pin Editor" enabled="false" command="_JXkHssW4EeORw5cz-AoFKA"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM_cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM_sW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiM_8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrTsRFEeOsdtank6IHbg" elementId="group.editor" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_JWiNAMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.CompilationUnitEditor" visible="false"> + <tags>Draggable</tags> + </children> + <children xsi:type="menu:ToolBar" xmi:id="_JWiNAcW4EeORw5cz-AoFKA" elementId="group.editor" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_REZrT8RFEeOsdtank6IHbg" elementId="group.editor" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_JWiNAsW4EeORw5cz-AoFKA" elementId="group.editor" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrUMRFEeOsdtank6IHbg" elementId="group.help" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_JWiNA8W4EeORw5cz-AoFKA" elementId="group.help" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_REZrUcRFEeOsdtank6IHbg" elementId="group.help" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_JWiNBMW4EeORw5cz-AoFKA" elementId="group.help" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_REZrUsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.workbench.help" visible="false"> + <children xsi:type="menu:ToolBar" xmi:id="_JWiNBcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.workbench.help" visible="false"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVmg4MTWEeO-CfRxHWQfBg" elementId="group.help"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_vVmg4cTWEeO-CfRxHWQfBg" elementId="group.application" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiNBsW4EeORw5cz-AoFKA" elementId="group.help"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_JWiNB8W4EeORw5cz-AoFKA" elementId="group.application" visible="false"/> </children> - <children xsi:type="menu:ToolControl" xmi:id="_REZrVcRFEeOsdtank6IHbg" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"> + <children xsi:type="menu:ToolControl" xmi:id="_JWiNCMW4EeORw5cz-AoFKA" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"> <tags>stretch</tags> </children> - <children xsi:type="menu:ToolControl" xmi:id="_REZrVsRFEeOsdtank6IHbg" elementId="Spacer Glue" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"> + <children xsi:type="menu:ToolControl" xmi:id="_JWiNCcW4EeORw5cz-AoFKA" elementId="Spacer Glue" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"> <tags>glue</tags> </children> - <children xsi:type="menu:ToolControl" xmi:id="_REZrV8RFEeOsdtank6IHbg" elementId="SearchField" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.quickaccess.SearchField"/> - <children xsi:type="menu:ToolControl" xmi:id="_REZrWMRFEeOsdtank6IHbg" elementId="Search-PS Glue" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"> + <children xsi:type="menu:ToolControl" xmi:id="_JWiNCsW4EeORw5cz-AoFKA" elementId="SearchField" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.quickaccess.SearchField"/> + <children xsi:type="menu:ToolControl" xmi:id="_JWiNC8W4EeORw5cz-AoFKA" elementId="Search-PS Glue" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"> <tags>glue</tags> </children> - <children xsi:type="menu:ToolControl" xmi:id="_REZrWcRFEeOsdtank6IHbg" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher"> + <children xsi:type="menu:ToolControl" xmi:id="_JWiNDMW4EeORw5cz-AoFKA" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher"> <tags>Draggable</tags> </children> </trimBars> - <trimBars xmi:id="_REZrWsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.trim.status" side="Bottom"> - <children xsi:type="menu:ToolControl" xmi:id="_REZrW8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.StatusLine" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> + <trimBars xmi:id="_JWiNDcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.trim.status" side="Bottom"> + <children xsi:type="menu:ToolControl" xmi:id="_JWiNDsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.StatusLine" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> <tags>stretch</tags> </children> - <children xsi:type="menu:ToolControl" xmi:id="_REZrXMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.HeapStatus" toBeRendered="false" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"/> - <children xsi:type="menu:ToolControl" xmi:id="_REZrXcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> + <children xsi:type="menu:ToolControl" xmi:id="_JWiND8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.HeapStatus" toBeRendered="false" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"/> + <children xsi:type="menu:ToolControl" xmi:id="_JWiNEMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> <tags>Draggable</tags> </children> </trimBars> - <trimBars xmi:id="_REaSMMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left"> - <children xsi:type="menu:ToolControl" xmi:id="_REaSMcRFEeOsdtank6IHbg" elementId="PerspectiveStack(minimized)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> + <trimBars xmi:id="_JWi0AMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left"> + <children xsi:type="menu:ToolControl" xmi:id="_JWi0AcW4EeORw5cz-AoFKA" elementId="PerspectiveStack(minimized)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> + <tags>TrimStack</tags> + </children> + <children xsi:type="menu:ToolControl" xmi:id="_JWi0AsW4EeORw5cz-AoFKA" elementId="left(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> <tags>TrimStack</tags> </children> </trimBars> - <trimBars xmi:id="_REaSMsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.trim.vertical2" toBeRendered="false" side="Right"> - <children xsi:type="menu:ToolControl" xmi:id="_REaSM8RFEeOsdtank6IHbg" elementId="right(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> + <trimBars xmi:id="_JWi0A8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.trim.vertical2" toBeRendered="false" side="Right"> + <children xsi:type="menu:ToolControl" xmi:id="_JWi0BMW4EeORw5cz-AoFKA" elementId="right(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> <tags>TrimStack</tags> </children> - <children xsi:type="menu:ToolControl" xmi:id="_REaSNMRFEeOsdtank6IHbg" elementId="bottom(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> + <children xsi:type="menu:ToolControl" xmi:id="_JWi0BcW4EeORw5cz-AoFKA" elementId="bottom(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> <tags>TrimStack</tags> </children> - <children xsi:type="menu:ToolControl" xmi:id="_REaSNcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.editorss(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> + <children xsi:type="menu:ToolControl" xmi:id="_JWi0BsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editorss(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> <tags>TrimStack</tags> </children> </trimBars> </children> - <handlers xmi:id="_jhqVkcTSEeO088oenCNcTw" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.ArrangeWindowHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.ArrangeWindowHandler" command="_jhqVkMTSEeO088oenCNcTw"/> - <handlers xmi:id="_jhq8ocTSEeO088oenCNcTw" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.MinimizeWindowHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.MinimizeWindowHandler" command="_jhq8oMTSEeO088oenCNcTw"/> - <handlers xmi:id="_jhrjsMTSEeO088oenCNcTw" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.FullscreenWindowHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.FullscreenWindowHandler" command="_jhq8osTSEeO088oenCNcTw"/> - <handlers xmi:id="_jhrjs8TSEeO088oenCNcTw" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.ZoomWindowHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.ZoomWindowHandler" command="_jhrjssTSEeO088oenCNcTw"/> - <handlers xmi:id="_jhsKwcTSEeO088oenCNcTw" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CloseDialogHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CloseDialogHandler" command="_jhsKwMTSEeO088oenCNcTw"/> - <bindingTables xmi:id="_REaSOsRFEeOsdtank6IHbg" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_REkDScRFEeOsdtank6IHbg"> - <bindings xmi:id="_REaSPsRFEeOsdtank6IHbg" keySequence="ALT+SHIFT+F2" command="_RFU4PsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REaSQsRFEeOsdtank6IHbg" keySequence="ALT+SHIFT+F1" command="_RFNjdMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REaSQ8RFEeOsdtank6IHbg" keySequence="CTRL+SPACE" command="_RFrdjsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REaSRMRFEeOsdtank6IHbg" keySequence="CTRL+SHIFT+SPACE" command="_RFdbGcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REaSTMRFEeOsdtank6IHbg" keySequence="ALT+SHIFT+F3" command="_RF447cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REaSUcRFEeOsdtank6IHbg" keySequence="ALT+PAGE_UP" command="_RFrdiMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REaSU8RFEeOsdtank6IHbg" keySequence="ALT+PAGE_DOWN" command="_RFX7jcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhRUA8TSEeO088oenCNcTw" keySequence="COMMAND+F10" command="_RFq2dcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhVlccTSEeO088oenCNcTw" keySequence="COMMAND+1" command="_RFWGYMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhVlcsTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+L" command="_RFlW58RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWzlsTSEeO088oenCNcTw" keySequence="COMMAND+V" command="_RFl99cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhXaoMTSEeO088oenCNcTw" keySequence="COMMAND+X" command="_RFvu-cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhXaocTSEeO088oenCNcTw" keySequence="COMMAND+Z" command="_RFP_vMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhZP08TSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+Z" command="_RFaXxcRFEeOsdtank6IHbg"> - <tags>platform:cocoa</tags> - </bindings> - <bindings xmi:id="_jhZP1cTSEeO088oenCNcTw" keySequence="SHIFT+F10" command="_RFOxm8RFEeOsdtank6IHbg"> - <tags>platform:cocoa</tags> - </bindings> - <bindings xmi:id="_jhad8MTSEeO088oenCNcTw" keySequence="COMMAND+C" command="_RFpoUsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhbsE8TSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+I" command="_RFkIx8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhcTJcTSEeO088oenCNcTw" keySequence="COMMAND+A" command="_RFpBTsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhiZxcTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+D" command="_RFZwv8RFEeOsdtank6IHbg"/> + <handlers xmi:id="_JWi0B8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.ArrangeWindowHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.ArrangeWindowHandler" command="_JYJ9lMW4EeORw5cz-AoFKA"/> + <handlers xmi:id="_JWi0CMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.MinimizeWindowHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.MinimizeWindowHandler" command="_JYJ9lcW4EeORw5cz-AoFKA"/> + <handlers xmi:id="_JWi0CcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.FullscreenWindowHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.FullscreenWindowHandler" command="_JYJ9lsW4EeORw5cz-AoFKA"/> + <handlers xmi:id="_JWi0CsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.ZoomWindowHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.ZoomWindowHandler" command="_JYJ9l8W4EeORw5cz-AoFKA"/> + <handlers xmi:id="_JWi0C8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CloseDialogHandler" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CloseDialogHandler" command="_JYJ9mMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWi0DMW4EeORw5cz-AoFKA" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_JWr9-8W4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWi0DcW4EeORw5cz-AoFKA" keySequence="ALT+SHIFT+F2" command="_JXQlucW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0DsW4EeORw5cz-AoFKA" keySequence="ALT+SHIFT+F1" command="_JXHby8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0D8W4EeORw5cz-AoFKA" keySequence="CTRL+SPACE" command="_JXxjE8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0EMW4EeORw5cz-AoFKA" keySequence="CTRL+SHIFT+SPACE" command="_JXa9zMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0EcW4EeORw5cz-AoFKA" keySequence="ALT+SHIFT+F3" command="_JYGTOcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0EsW4EeORw5cz-AoFKA" keySequence="ALT+PAGE_UP" command="_JXw8CMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0E8W4EeORw5cz-AoFKA" keySequence="ALT+PAGE_DOWN" command="_JXUQHMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0FMW4EeORw5cz-AoFKA" keySequence="COMMAND+F10" command="_JXvt6cW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0FcW4EeORw5cz-AoFKA" keySequence="COMMAND+1" command="_JXSa5MW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0FsW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+L" command="_JXmj9sW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0F8W4EeORw5cz-AoFKA" keySequence="COMMAND+V" command="_JXnyFcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0GMW4EeORw5cz-AoFKA" keySequence="COMMAND+X" command="_JX3ptsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0GcW4EeORw5cz-AoFKA" keySequence="COMMAND+Z" command="_JXKfHcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0GsW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+Z" command="_JXXTZMW4EeORw5cz-AoFKA"> + <tags>platform:cocoa</tags> + </bindings> + <bindings xmi:id="_JWi0G8W4EeORw5cz-AoFKA" keySequence="SHIFT+F10" command="_JXJQ-MW4EeORw5cz-AoFKA"> + <tags>platform:cocoa</tags> + </bindings> + <bindings xmi:id="_JWi0HMW4EeORw5cz-AoFKA" keySequence="COMMAND+C" command="_JXt4t8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0HcW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+I" command="_JXkHtcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0HsW4EeORw5cz-AoFKA" keySequence="COMMAND+A" command="_JXt4s8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWi0H8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+D" command="_JXWsW8W4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REaSVMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.contexts.window" bindingContext="_REkDSsRFEeOsdtank6IHbg"> - <bindings xmi:id="_REa5RcRFEeOsdtank6IHbg" keySequence="SHIFT+F5" command="_RFmlCcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REa5S8RFEeOsdtank6IHbg" keySequence="F4" command="_RFt5xsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REa5Y8RFEeOsdtank6IHbg" keySequence="SHIFT+F2" command="_RF11mMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REa5ZMRFEeOsdtank6IHbg" keySequence="F3" command="_RFX7i8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_REa5ccRFEeOsdtank6IHbg" keySequence="ALT+CR" command="_RFbl6MRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REa5csRFEeOsdtank6IHbg" keySequence="F5" command="_RFnMGMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REa5c8RFEeOsdtank6IHbg" keySequence="DEL" command="_RFPYosRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REbgV8RFEeOsdtank6IHbg" keySequence="ALT+F7" command="_RFug0cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REbgWMRFEeOsdtank6IHbg" keySequence="ALT+SHIFT+F7" command="_RFqPZcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REbgXsRFEeOsdtank6IHbg" keySequence="CTRL+Q" command="_RFZJqMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REbgX8RFEeOsdtank6IHbg" keySequence="F2" command="_RFoaOMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REbgY8RFEeOsdtank6IHbg" keySequence="CTRL+H" command="_RF0ncMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REcHeMRFEeOsdtank6IHbg" keySequence="ALT+CTRL+H" command="_RFP_ssRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhMbgMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+NUMPAD_MULTIPLY" command="_RFjhs8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhNCkcTSEeO088oenCNcTw" keySequence="COMMAND+E" command="_RFlW78RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhNpocTSEeO088oenCNcTw" keySequence="COMMAND+]" command="_RFaXysRFEeOsdtank6IHbg"> + <bindingTables xmi:id="_JWjbEMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.contexts.window" bindingContext="_JWr9_MW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWjbEcW4EeORw5cz-AoFKA" keySequence="SHIFT+F5" command="_JXpnQsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbEsW4EeORw5cz-AoFKA" keySequence="F4" command="_JX0mY8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbE8W4EeORw5cz-AoFKA" keySequence="SHIFT+F2" command="_JYCBwMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbFMW4EeORw5cz-AoFKA" keySequence="F3" command="_JXUQGsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbFcW4EeORw5cz-AoFKA" keySequence="ALT+CR" command="_JXZIkcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbFsW4EeORw5cz-AoFKA" keySequence="F5" command="_JXq1YcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbF8W4EeORw5cz-AoFKA" keySequence="DEL" command="_JXJ4AcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbGMW4EeORw5cz-AoFKA" keySequence="ALT+F7" command="_JX1NdsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbGcW4EeORw5cz-AoFKA" keySequence="ALT+SHIFT+F7" command="_JXvG08W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbGsW4EeORw5cz-AoFKA" keySequence="CTRL+Q" command="_JXWFQMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbG8W4EeORw5cz-AoFKA" keySequence="F2" command="_JXsqk8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbHMW4EeORw5cz-AoFKA" keySequence="CTRL+H" command="_JX_lgcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbHcW4EeORw5cz-AoFKA" keySequence="ALT+CTRL+H" command="_JXKfE8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbHsW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+NUMPAD_MULTIPLY" command="_JXi5lsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbH8W4EeORw5cz-AoFKA" keySequence="COMMAND+E" command="_JXnLB8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbIMW4EeORw5cz-AoFKA" keySequence="COMMAND+]" command="_JXXTacW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhOQscTSEeO088oenCNcTw" keySequence="ALT+COMMAND+ARROW_LEFT" command="_RFug1MRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWjbIcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+ARROW_LEFT" command="_JX1NecW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhOQssTSEeO088oenCNcTw" keySequence="ALT+COMMAND+C" command="_RFcM8sRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWjbIsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+C" command="_JXZIm8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhPe0cTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+F11" command="_RFa-0cRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWjbI8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+F11" command="_JXX6c8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhQF4MTSEeO088oenCNcTw" keySequence="ALT+COMMAND+L" command="_RF2cqcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWjbJMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+L" command="_JYCo1sW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhQF4cTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Z" command="_RFOKjsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWjbJcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Z" command="_JXIp6cW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhQF4sTSEeO088oenCNcTw" keySequence="ALT+COMMAND+R" command="_RFXUesRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWjbJsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+R" command="_JXTpBcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhQF5cTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+." command="_RFPYsMRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWjbJ8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+." command="_JXKfEMW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhQs8cTSEeO088oenCNcTw" keySequence="ALT+COMMAND+T" command="_RFa-2MRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWjbKMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+T" command="_JXX6esW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhR7E8TSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+U" command="_RFkv08RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhR7FcTSEeO088oenCNcTw" keySequence="COMMAND+G" command="_RFR08cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhSiIMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+T" command="_RFVfS8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhSiJcTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+O" command="_RFYincRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhTJNcTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+N" command="_RFi6oMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhTwQ8TSEeO088oenCNcTw" keySequence="COMMAND+U" command="_RF6uFsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhUXUMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+SHIFT+M" command="_RFnzIsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhUXUsTSEeO088oenCNcTw" keySequence="COMMAND+N" command="_RFTDAMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhUXVMTSEeO088oenCNcTw" keySequence="COMMAND+W" command="_RFScAMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhUXVcTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+W" command="_RF446sRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhUXVsTSEeO088oenCNcTw" keySequence="COMMAND+S" command="_RFtSvMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhUXV8TSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+S" command="_RFTqGcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhU-YMTSEeO088oenCNcTw" keySequence="COMMAND+P" command="_RFyyScRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhU-YcTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+R" command="_RFTqE8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhU-YsTSEeO088oenCNcTw" keySequence="COMMAND+3" command="_RF5f8cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhVldcTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+NUMPAD_DIVIDE" command="_RFZwssRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWMgsTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+F8" command="_RFVfTcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWMg8TSEeO088oenCNcTw" keySequence="COMMAND+F8" command="_RF6HCsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWMhMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+F7" command="_RFVfQ8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWzkMTSEeO088oenCNcTw" keySequence="COMMAND+F7" command="_RFbl5cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWzkcTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+F6" command="_RFq2fsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWzksTSEeO088oenCNcTw" keySequence="COMMAND+F6" command="_RFRN0MRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWzk8TSEeO088oenCNcTw" keySequence="COMMAND+." command="_RFR06cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWzlMTSEeO088oenCNcTw" keySequence="COMMAND+F" command="_RFX7g8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhXao8TSEeO088oenCNcTw" keySequence="COMMAND+I" command="_RFbl6MRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWjbKcW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+U" command="_JXlV0sW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbKsW4EeORw5cz-AoFKA" keySequence="COMMAND+G" command="_JXM7XcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWjbK8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+T" command="_JXRMycW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCIMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+O" command="_JXVeMsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCIcW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+N" command="_JXiSgMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCIsW4EeORw5cz-AoFKA" keySequence="COMMAND+U" command="_JYIvdcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCI8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+SHIFT+M" command="_JXrcc8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCJMW4EeORw5cz-AoFKA" keySequence="COMMAND+N" command="_JXOJcsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCJcW4EeORw5cz-AoFKA" keySequence="COMMAND+W" command="_JXOJccW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCJsW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+W" command="_JYGTNsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCJ8W4EeORw5cz-AoFKA" keySequence="COMMAND+S" command="_JXz_VcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCKMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+S" command="_JXPXkMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCKcW4EeORw5cz-AoFKA" keySequence="COMMAND+P" command="_JX9JQMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCKsW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+R" command="_JXOwiMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCK8W4EeORw5cz-AoFKA" keySequence="COMMAND+3" command="_JYG6QcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCLMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+NUMPAD_DIVIDE" command="_JXWFS8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCLcW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+F8" command="_JXRMy8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCLsW4EeORw5cz-AoFKA" keySequence="COMMAND+F8" command="_JYIIZMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCL8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+F7" command="_JXRMwcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCMMW4EeORw5cz-AoFKA" keySequence="COMMAND+F7" command="_JXYhi8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCMcW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+F6" command="_JXwU98W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCMsW4EeORw5cz-AoFKA" keySequence="COMMAND+F6" command="_JXLtN8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCM8W4EeORw5cz-AoFKA" keySequence="COMMAND+." command="_JXM7VcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCNMW4EeORw5cz-AoFKA" keySequence="COMMAND+F" command="_JXUQEsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkCNcW4EeORw5cz-AoFKA" keySequence="COMMAND+I" command="_JXZIkcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhXapcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+V" command="_RFnMHsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkCNsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+V" command="_JXq1Z8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhYBsMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+W" command="_RFoaM8RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkCN8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+W" command="_JXsDicW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhYBscTSEeO088oenCNcTw" keySequence="COMMAND+F11" command="_RFP_vcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkCOMW4EeORw5cz-AoFKA" keySequence="COMMAND+F11" command="_JXKfHsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhYBs8TSEeO088oenCNcTw" keySequence="COMMAND+[" command="_RFug1MRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkCOcW4EeORw5cz-AoFKA" keySequence="COMMAND+[" command="_JX1NecW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhYowMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+N" command="_RFP_uMRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkCOsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+N" command="_JXKfGcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhYowsTSEeO088oenCNcTw" keySequence="ALT+COMMAND+3" command="_RFw9EsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkCO8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+3" command="_JX5e4cW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZP0MTSEeO088oenCNcTw" keySequence="ALT+COMMAND+M" command="_RF3DtcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkCPMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+M" command="_JYDP5sW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZP0cTSEeO088oenCNcTw" keySequence="COMMAND+F12" command="_RFYinMRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkCPcW4EeORw5cz-AoFKA" keySequence="COMMAND+F12" command="_JXVeMcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZP1MTSEeO088oenCNcTw" keySequence="CTRL+M" command="_RFURKMRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpMMW4EeORw5cz-AoFKA" keySequence="CTRL+M" command="_JXP-ocW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZP1sTSEeO088oenCNcTw" keySequence="ALT+COMMAND+S" command="_RFl9-sRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpMcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+S" command="_JXoZIsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZP18TSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+F10" command="_RFWta8RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpMsW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+F10" command="_JXTB8sW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhad8cTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+H" command="_RFNjfcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhad9MTSEeO088oenCNcTw" keySequence="ALT+COMMAND+I" command="_RFTDA8RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpM8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+H" command="_JXIC1cW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkpNMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+I" command="_JXOJdcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhad9cTSEeO088oenCNcTw" keySequence="ALT+COMMAND+CTRL+D A" command="_RFa-28RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpNcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+CTRL+D A" command="_JXYhgMW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhad9sTSEeO088oenCNcTw" keySequence="ALT+COMMAND+CTRL+D O" command="_RFl998RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpNsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+CTRL+D O" command="_JXnyF8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhbFAMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+CTRL+D E" command="_RFTqHcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpN8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+CTRL+D E" command="_JXPXlMW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhbFAcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+CTRL+D P" command="_RF4R0sRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpOMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+CTRL+D P" command="_JYFFEsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhbFAsTSEeO088oenCNcTw" keySequence="ALT+COMMAND+CTRL+D Q" command="_RFyLMsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpOcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+CTRL+D Q" command="_JX7UFcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhbFA8TSEeO088oenCNcTw" keySequence="ALT+COMMAND+CTRL+D J" command="_RF2cpsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpOsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+CTRL+D J" command="_JYCo08W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhbFBMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+CTRL+D T" command="_RFsrqMRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpO8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+CTRL+D T" command="_JXyxN8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhbFBcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+ARROW_RIGHT" command="_RFaXysRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpPMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+ARROW_RIGHT" command="_JXXTacW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhbsEcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+SHIFT+A" command="_RFkv2MRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhcTIcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+J" command="_RF6uEsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpPcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+SHIFT+A" command="_JXl84MW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkpPsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+J" command="_JYIvccW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhcTJMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+A" command="_RFX7jsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhc6MMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+G" command="_RFlW6sRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhdhQcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+X P" command="_RF0AasRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpP8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+A" command="_JXUQHcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkpQMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+G" command="_JXnLAsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWkpQcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+X P" command="_JX--dcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhdhQsTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q T" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpQsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q T" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhdhQ8TSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/> + <parameters xmi:id="_JWkpQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/> </bindings> - <bindings xmi:id="_jhdhRMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q O" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpRMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q O" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jheIUMTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/> + <parameters xmi:id="_JWkpRcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/> </bindings> - <bindings xmi:id="_jheIUcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q Y" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpRsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q Y" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jheIUsTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.sync.views.SynchronizeView"/> + <parameters xmi:id="_JWkpR8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.sync.views.SynchronizeView"/> </bindings> - <bindings xmi:id="_jheIU8TSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q B" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpSMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q B" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jheIVMTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/> + <parameters xmi:id="_JWkpScW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/> </bindings> - <bindings xmi:id="_jheIVcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q J" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWkpSsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q J" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jheIVsTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/> + <parameters xmi:id="_JWkpS8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/> </bindings> - <bindings xmi:id="_jhevYMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q C" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQQMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q C" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhevYcTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/> + <parameters xmi:id="_JWlQQcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/> </bindings> - <bindings xmi:id="_jhevYsTSEeO088oenCNcTw" keySequence="ALT+COMMAND+X E" command="_RF5f98RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQQsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+X E" command="_JYG6R8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhevY8TSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q Q" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQQ8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q Q" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhevZMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q V" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQRMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q V" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhevZcTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/> + <parameters xmi:id="_JWlQRcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/> </bindings> - <bindings xmi:id="_jhevZsTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q H" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQRsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q H" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhfWcMTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.cheatsheets.views.CheatSheetView"/> + <parameters xmi:id="_JWlQR8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.cheatsheets.views.CheatSheetView"/> </bindings> - <bindings xmi:id="_jhfWccTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q Z" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQSMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q Z" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhfWcsTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/> + <parameters xmi:id="_JWlQScW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/> </bindings> - <bindings xmi:id="_jhfWc8TSEeO088oenCNcTw" keySequence="ALT+COMMAND+X O" command="_RFURLcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQSsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+X O" command="_JXP-psW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhfWdMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+X T" command="_RFbl58RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQS8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+X T" command="_JXZIkMW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhfWdcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q D" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQTMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q D" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhfWdsTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/> + <parameters xmi:id="_JWlQTcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/> </bindings> - <bindings xmi:id="_jhf9gMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+X Q" command="_RFug2sRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQTsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+X Q" command="_JX10hcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhf9gcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q L" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQT8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q L" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhf9gsTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/> + <parameters xmi:id="_JWlQUMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/> </bindings> - <bindings xmi:id="_jhf9g8TSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q S" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQUcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q S" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhf9hMTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.search.ui.views.SearchView"/> + <parameters xmi:id="_JWlQUsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.search.ui.views.SearchView"/> </bindings> - <bindings xmi:id="_jhgkkMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q P" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQU8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q P" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhgkkcTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/> + <parameters xmi:id="_JWlQVMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/> </bindings> - <bindings xmi:id="_jhgkksTSEeO088oenCNcTw" keySequence="ALT+COMMAND+X J" command="_RF0AYMRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQVcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+X J" command="_JX-XY8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhgkk8TSEeO088oenCNcTw" keySequence="ALT+COMMAND+X A" command="_RF6HAcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQVsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+X A" command="_JYHhVcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhgklMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+Q X" command="_RFgeZcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQV8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+Q X" command="_JXfPMsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> - <parameters xmi:id="_jhgklcTSEeO088oenCNcTw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/> + <parameters xmi:id="_JWlQWMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/> </bindings> - <bindings xmi:id="_jhhLocTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+B" command="_RFZJpMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhhLpMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+E" command="_RFVfQcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhhytMTSEeO088oenCNcTw" keySequence="COMMAND+B" command="_RFjhssRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhhytcTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+G" command="_RFPYqMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhiZw8TSEeO088oenCNcTw" keySequence="ALT+COMMAND+F" command="_RF5f9sRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWlQWcW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+B" command="_JXVeOcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3UMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+E" command="_JXQlvcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3UcW4EeORw5cz-AoFKA" keySequence="COMMAND+B" command="_JXi5lcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3UsW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+G" command="_JXJ4B8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3U8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+F" command="_JYG6RsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_vBggMcTWEeO-CfRxHWQfBg" keySequence="COMMAND+CTRL+F" command="_jhq8osTSEeO088oenCNcTw"/> + <bindings xmi:id="_JWl3VMW4EeORw5cz-AoFKA" keySequence="COMMAND+CTRL+F" command="_JYJ9lsW4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REcHecRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.cEditorScope" bindingContext="_RElRU8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REcufcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.textEditorScope" bindingContext="_REkqQ8RFEeOsdtank6IHbg"> - <bindings xmi:id="_REcugMRFEeOsdtank6IHbg" keySequence="CTRL+ARROW_UP" command="_RFyyRsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REcug8RFEeOsdtank6IHbg" keySequence="ALT+ARROW_DOWN" command="_RFvu-8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_REcuhcRFEeOsdtank6IHbg" keySequence="CTRL+ARROW_DOWN" command="_RFyyQsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REcuisRFEeOsdtank6IHbg" keySequence="CTRL+SHIFT+Q" command="_RFX7hcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REculMRFEeOsdtank6IHbg" keySequence="INSERT" command="_RFlW4MRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REculsRFEeOsdtank6IHbg" keySequence="SHIFT+CR" command="_RFrdisRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REcum8RFEeOsdtank6IHbg" keySequence="F2" command="_RFkv3MRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REcun8RFEeOsdtank6IHbg" keySequence="ALT+ARROW_UP" command="_RFbl7MRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhNCkMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+NUMPAD_MULTIPLY" command="_RFkIzsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhNCksTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+J" command="_RFw9GsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhNposTSEeO088oenCNcTw" keySequence="ALT+ARROW_LEFT" command="_RFQmxMRFEeOsdtank6IHbg"> + <bindingTables xmi:id="_JWl3VcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.cEditorScope" bindingContext="_JWslFsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWl3VsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.textEditorScope" bindingContext="_JWr-AcW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWl3V8W4EeORw5cz-AoFKA" keySequence="CTRL+ARROW_UP" command="_JX8iNcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3WMW4EeORw5cz-AoFKA" keySequence="ALT+ARROW_DOWN" command="_JX4QwMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3WcW4EeORw5cz-AoFKA" keySequence="CTRL+ARROW_DOWN" command="_JX8iMcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3WsW4EeORw5cz-AoFKA" keySequence="CTRL+SHIFT+Q" command="_JXUQFMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3W8W4EeORw5cz-AoFKA" keySequence="INSERT" command="_JXl858W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3XMW4EeORw5cz-AoFKA" keySequence="SHIFT+CR" command="_JXw8CsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3XcW4EeORw5cz-AoFKA" keySequence="F2" command="_JXl85MW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3XsW4EeORw5cz-AoFKA" keySequence="ALT+ARROW_UP" command="_JXZIlcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3X8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+NUMPAD_MULTIPLY" command="_JXkuxcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3YMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+J" command="_JX6F8cW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3YcW4EeORw5cz-AoFKA" keySequence="ALT+ARROW_LEFT" command="_JXLGKMW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhO3wcTSEeO088oenCNcTw" keySequence="ALT+ARROW_RIGHT" command="_RF1OgsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWl3YsW4EeORw5cz-AoFKA" keySequence="ALT+ARROW_RIGHT" command="_JYAMmcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhPe0MTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+DEL" command="_RFQm0MRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhQs8MTSEeO088oenCNcTw" keySequence="END" command="_RFOxoMRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWl3Y8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+DEL" command="_JXLtNsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3ZMW4EeORw5cz-AoFKA" keySequence="END" command="_JXJQ_cW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhQs8sTSEeO088oenCNcTw" keySequence="COMMAND+HOME" command="_RF0AbsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhQs88TSEeO088oenCNcTw" keySequence="COMMAND+END" command="_RFOxoMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhRUAMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+Y" command="_RFvH4MRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhRUAcTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+X" command="_RFeCIsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhRUAsTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+CR" command="_RFOKg8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhRUBMTSEeO088oenCNcTw" keySequence="COMMAND+F10" command="_RFt5ysRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhR7EMTSEeO088oenCNcTw" keySequence="COMMAND+L" command="_RFwWCcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhU-Y8TSEeO088oenCNcTw" keySequence="COMMAND+K" command="_RF3qyMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhU-ZMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+K" command="_RFgeZMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhVlcMTSEeO088oenCNcTw" keySequence="COMMAND+J" command="_RFq2esRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhVlc8TSEeO088oenCNcTw" keySequence="COMMAND+NUMPAD_SUBTRACT" command="_RFbl4cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhVldMTSEeO088oenCNcTw" keySequence="COMMAND+NUMPAD_ADD" command="_RFWGUMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhVldsTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+NUMPAD_DIVIDE" command="_RFrdg8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWMgMTSEeO088oenCNcTw" keySequence="COMMAND+NUMPAD_MULTIPLY" command="_RFrdj8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhWMgcTSEeO088oenCNcTw" keySequence="COMMAND+NUMPAD_DIVIDE" command="_RFZwtcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhXapMTSEeO088oenCNcTw" keySequence="CTRL+." command="_RF6HDMRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWl3ZcW4EeORw5cz-AoFKA" keySequence="COMMAND+HOME" command="_JX_lgMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3ZsW4EeORw5cz-AoFKA" keySequence="COMMAND+END" command="_JXJQ_cW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3Z8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+Y" command="_JX2bkMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3aMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+X" command="_JXbk18W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWl3acW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+CR" command="_JXIC3cW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeYMW4EeORw5cz-AoFKA" keySequence="COMMAND+F10" command="_JX1NcMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeYcW4EeORw5cz-AoFKA" keySequence="COMMAND+L" command="_JX4308W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeYsW4EeORw5cz-AoFKA" keySequence="COMMAND+K" command="_JYEeBMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeY8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+K" command="_JXfPMcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeZMW4EeORw5cz-AoFKA" keySequence="COMMAND+J" command="_JXwU88W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeZcW4EeORw5cz-AoFKA" keySequence="COMMAND+NUMPAD_SUBTRACT" command="_JXYhh8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeZsW4EeORw5cz-AoFKA" keySequence="COMMAND+NUMPAD_ADD" command="_JXRz0sW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeZ8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+NUMPAD_DIVIDE" command="_JXw8A8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeaMW4EeORw5cz-AoFKA" keySequence="COMMAND+NUMPAD_MULTIPLY" command="_JXxjFMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeacW4EeORw5cz-AoFKA" keySequence="COMMAND+NUMPAD_DIVIDE" command="_JXWsUcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeasW4EeORw5cz-AoFKA" keySequence="CTRL+." command="_JYIIZsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhYBssTSEeO088oenCNcTw" keySequence="HOME" command="_RF0AbsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmea8W4EeORw5cz-AoFKA" keySequence="HOME" command="_JX_lgMW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZ25MTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+ARROW_LEFT" command="_RFw9FcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmebMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+ARROW_LEFT" command="_JX5e5MW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhad8sTSEeO088oenCNcTw" keySequence="SHIFT+END" command="_RFTqH8RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmebcW4EeORw5cz-AoFKA" keySequence="SHIFT+END" command="_JXPXlsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhad88TSEeO088oenCNcTw" keySequence="COMMAND+ARROW_LEFT" command="_RFtStcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmebsW4EeORw5cz-AoFKA" keySequence="COMMAND+ARROW_LEFT" command="_JXzYScW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhbsEsTSEeO088oenCNcTw" keySequence="COMMAND+D" command="_RFURIcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhbsFMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+INSERT" command="_RFX7isRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhcTIMTSEeO088oenCNcTw" keySequence="COMMAND+ARROW_RIGHT" command="_RFhFdsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmeb8W4EeORw5cz-AoFKA" keySequence="COMMAND+D" command="_JXPXmMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmecMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+INSERT" command="_JXUQGcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeccW4EeORw5cz-AoFKA" keySequence="COMMAND+ARROW_RIGHT" command="_JXf2R8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhcTI8TSEeO088oenCNcTw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_RF447MRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmecsW4EeORw5cz-AoFKA" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_JYGTOMW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhc6NMTSEeO088oenCNcTw" keySequence="ALT+DEL" command="_RFP_usRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmec8W4EeORw5cz-AoFKA" keySequence="ALT+DEL" command="_JXKfG8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhgklsTSEeO088oenCNcTw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_RFXUe8RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmedMW4EeORw5cz-AoFKA" keySequence="ALT+SHIFT+ARROW_LEFT" command="_JXTpBsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhhLosTSEeO088oenCNcTw" keySequence="ALT+COMMAND+ARROW_UP" command="_RFa-0sRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhhLo8TSEeO088oenCNcTw" keySequence="ALT+COMMAND+A" command="_RFtSvcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmedcW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+ARROW_UP" command="_JXX6dMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmedsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+A" command="_JXz_VsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhhLpcTSEeO088oenCNcTw" keySequence="ALT+COMMAND+ARROW_DOWN" command="_RFcM88RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhiZwMTSEeO088oenCNcTw" keySequence="ALT+BS" command="_RFRN2sRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmed8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+ARROW_DOWN" command="_JXZInMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWmeeMW4EeORw5cz-AoFKA" keySequence="ALT+BS" command="_JXMUQsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhiZwcTSEeO088oenCNcTw" keySequence="SHIFT+HOME" command="_RFNje8RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmeecW4EeORw5cz-AoFKA" keySequence="SHIFT+HOME" command="_JXIC08W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhiZxMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+ARROW_RIGHT" command="_RFNjgcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWmeesW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+ARROW_RIGHT" command="_JXIC2cW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> </bindingTables> - <bindingTables xmi:id="_REdVi8RFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.phpEditorScope" bindingContext="_REkqUsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REdVpcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_REkqSMRFEeOsdtank6IHbg"> - <bindings xmi:id="_jhNpoMTSEeO088oenCNcTw" keySequence="COMMAND+CTRL+\" command="_RF5f-cRFEeOsdtank6IHbg"> + <bindingTables xmi:id="_JWnFcMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.phpEditorScope" bindingContext="_JWslCcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnFccW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_JWr-BsW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWnFcsW4EeORw5cz-AoFKA" keySequence="COMMAND+CTRL+\" command="_JYG6ScW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhOQsMTSEeO088oenCNcTw" keySequence="ALT+CTRL+ARROW_UP" command="_RFWtZsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFc8W4EeORw5cz-AoFKA" keySequence="ALT+CTRL+ARROW_UP" command="_JXSa68W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhO3wMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+\" command="_RF5f-cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhR7EcTSEeO088oenCNcTw" keySequence="COMMAND+O" command="_RFR068RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhSiIcTSEeO088oenCNcTw" keySequence="COMMAND+F3" command="_RFtSs8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhSiI8TSEeO088oenCNcTw" keySequence="COMMAND+T" command="_RFqPaMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhSiJMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+P" command="_RFURMMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhTJMMTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+M" command="_RFyyTsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhTJMcTSEeO088oenCNcTw" keySequence="COMMAND+/" command="_RFOxk8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhTJM8TSEeO088oenCNcTw" keySequence="COMMAND+7" command="_RFOxk8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhXaosTSEeO088oenCNcTw" keySequence="COMMAND+I" command="_RFqPYsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhYow8TSEeO088oenCNcTw" keySequence="COMMAND+CTRL+/" command="_RFkIysRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFdMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+\" command="_JYG6ScW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFdcW4EeORw5cz-AoFKA" keySequence="COMMAND+O" command="_JXM7V8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFdsW4EeORw5cz-AoFKA" keySequence="COMMAND+F3" command="_JXzYR8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFd8W4EeORw5cz-AoFKA" keySequence="COMMAND+T" command="_JXvG1sW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFeMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+P" command="_JXP-qcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFecW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+M" command="_JX9JRcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFesW4EeORw5cz-AoFKA" keySequence="COMMAND+/" command="_JXJQ8MW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFe8W4EeORw5cz-AoFKA" keySequence="COMMAND+7" command="_JXJQ8MW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFfMW4EeORw5cz-AoFKA" keySequence="COMMAND+I" command="_JXvG0MW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFfcW4EeORw5cz-AoFKA" keySequence="COMMAND+CTRL+/" command="_JXkuwcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZP0sTSEeO088oenCNcTw" keySequence="ALT+COMMAND+U" command="_RFcM-cRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFfsW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+U" command="_JXZvpcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZ24cTSEeO088oenCNcTw" keySequence="ALT+COMMAND+O" command="_RFNjc8RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFf8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+O" command="_JXHbysW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZ24sTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+C" command="_RFOxk8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhbsEMTSEeO088oenCNcTw" keySequence="CTRL+SHIFT+ARROW_UP" command="_RFug3MRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFgMW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+C" command="_JXJQ8MW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFgcW4EeORw5cz-AoFKA" keySequence="CTRL+SHIFT+ARROW_UP" command="_JX10h8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhcTIsTSEeO088oenCNcTw" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_RF2cq8RFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFgsW4EeORw5cz-AoFKA" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_JYCo2MW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhc6MsTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+F" command="_RFZwvsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhc6NcTSEeO088oenCNcTw" keySequence="COMMAND+2 R" command="_RFQmwsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhc6NsTSEeO088oenCNcTw" keySequence="COMMAND+2 L" command="_RFTqHMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhdhQMTSEeO088oenCNcTw" keySequence="COMMAND+2 F" command="_RFcM8cRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhhLoMTSEeO088oenCNcTw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_RFpBSsRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFg8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+F" command="_JXWsWsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFhMW4EeORw5cz-AoFKA" keySequence="COMMAND+2 R" command="_JXLGJsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFhcW4EeORw5cz-AoFKA" keySequence="COMMAND+2 L" command="_JXPXk8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFhsW4EeORw5cz-AoFKA" keySequence="COMMAND+2 F" command="_JXZImsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnFh8W4EeORw5cz-AoFKA" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_JXtRqcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhhysMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+B" command="_RFyyQcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFiMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+B" command="_JX8iMMW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhhyssTSEeO088oenCNcTw" keySequence="ALT+CTRL+ARROW_DOWN" command="_RF5f9cRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFicW4EeORw5cz-AoFKA" keySequence="ALT+CTRL+ARROW_DOWN" command="_JYG6RcW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhhys8TSEeO088oenCNcTw" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_RFhFdcRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnFisW4EeORw5cz-AoFKA" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_JXf2RsW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> </bindingTables> - <bindingTables xmi:id="_REd8osRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.scriptEditorScope" bindingContext="_RElRVsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REd8tMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_REkqRsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REejssRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_REkqS8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REejw8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" bindingContext="_REl4YsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REfKscRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" bindingContext="_REkqScRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REfKu8RFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_REkqRMRFEeOsdtank6IHbg"> - <bindings xmi:id="_REfKvcRFEeOsdtank6IHbg" keySequence="SHIFT+F2" command="_RFpoXMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REfKvsRFEeOsdtank6IHbg" keySequence="F3" command="_RFWGWMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhQF48TSEeO088oenCNcTw" keySequence="ALT+COMMAND+R" command="_RFkIwMRFEeOsdtank6IHbg"> + <bindingTables xmi:id="_JWnsgMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.scriptEditorScope" bindingContext="_JWtMEcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnsgcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_JWr-BMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnsgsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_JWslAsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnsg8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" bindingContext="_JWtzIcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnshMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" bindingContext="_JWslAMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnshcW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_JWr-AsW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWnshsW4EeORw5cz-AoFKA" keySequence="SHIFT+F2" command="_JXufxsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnsh8W4EeORw5cz-AoFKA" keySequence="F3" command="_JXRz2sW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnsiMW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+R" command="_JXjgp8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhZ24MTSEeO088oenCNcTw" keySequence="ALT+COMMAND+O" command="_RF444cRFEeOsdtank6IHbg"> + <bindings xmi:id="_JWnsicW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+O" command="_JYFsJ8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_jhc6McTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+F" command="_RFZwvsRFEeOsdtank6IHbg"/> + <bindings xmi:id="_JWnsisW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+F" command="_JXWsWsW4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REfKwcRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_RElRV8RFEeOsdtank6IHbg"> - <bindings xmi:id="_jhR7EsTSEeO088oenCNcTw" keySequence="COMMAND+O" command="_RF3DtMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhc6M8TSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+F" command="_RFq2e8RFEeOsdtank6IHbg"/> + <bindingTables xmi:id="_JWnsi8W4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_JWtMEsW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWnsjMW4EeORw5cz-AoFKA" keySequence="COMMAND+O" command="_JYDP5cW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnsjcW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+F" command="_JXwU9MW4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REfKxMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.context.views" bindingContext="_RElRX8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REfK0cRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.cViewScope" bindingContext="_RElRXsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REfxxsRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.java.editorScope" bindingContext="_RElRVcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REfxycRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.xml.editorScope" bindingContext="_RElRUMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REfxzcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_REkqR8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REfx5cRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.debugging" bindingContext="_RElRYcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REgY0MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.serverViewScope" bindingContext="_REkqQcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REgY1cRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.debugging" bindingContext="_RElRZsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REgY28RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.debugging" bindingContext="_RElRYMRFEeOsdtank6IHbg"> - <bindings xmi:id="_REgY4MRFEeOsdtank6IHbg" keySequence="F6" command="_RFOKi8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_REgY4cRFEeOsdtank6IHbg" keySequence="F7" command="_RFhFdMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_REgY4sRFEeOsdtank6IHbg" keySequence="F8" command="_RF6uF8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_REgY48RFEeOsdtank6IHbg" keySequence="F5" command="_RFyyRMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhTwQMTSEeO088oenCNcTw" keySequence="COMMAND+R" command="_RFTDDMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhTwQcTSEeO088oenCNcTw" keySequence="COMMAND+F2" command="_RFU4PMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhYowcTSEeO088oenCNcTw" keySequence="ALT+F5" command="_RFwWAMRFEeOsdtank6IHbg"> + <bindingTables xmi:id="_JWnsjsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.context.views" bindingContext="_JWtMGsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnsj8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.cViewScope" bindingContext="_JWtMGcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnskMW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.java.editorScope" bindingContext="_JWtMEMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnskcW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.xml.editorScope" bindingContext="_JWslE8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnsksW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_JWr-BcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnsk8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.debugging" bindingContext="_JWtMHMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnslMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.serverViewScope" bindingContext="_JWr9_8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnslcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.debugging" bindingContext="_JWtMIcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWnslsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.debugging" bindingContext="_JWtMG8W4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWnsl8W4EeORw5cz-AoFKA" keySequence="F6" command="_JXIp5sW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnsmMW4EeORw5cz-AoFKA" keySequence="F7" command="_JXf2RcW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWnsmcW4EeORw5cz-AoFKA" keySequence="F8" command="_JYIvdsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTkMW4EeORw5cz-AoFKA" keySequence="F5" command="_JX8iM8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTkcW4EeORw5cz-AoFKA" keySequence="COMMAND+R" command="_JXOwgMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTksW4EeORw5cz-AoFKA" keySequence="COMMAND+F2" command="_JXQlt8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTk8W4EeORw5cz-AoFKA" keySequence="ALT+F5" command="_JX4Qw8W4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> </bindingTables> - <bindingTables xmi:id="_REgY5MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" bindingContext="_RElRYsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REgY58RFEeOsdtank6IHbg" elementId="org.eclipse.core.runtime.xml" bindingContext="_REkqUcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REgY6sRFEeOsdtank6IHbg" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" bindingContext="_REkqWcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REgY7cRFEeOsdtank6IHbg" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_REl4asRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REg_5cRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_REkqQsRFEeOsdtank6IHbg"> - <bindings xmi:id="_REg_58RFEeOsdtank6IHbg" keySequence="ALT+CR" command="_RFyyTMRFEeOsdtank6IHbg"/> + <bindingTables xmi:id="_JWoTlMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" bindingContext="_JWtMHcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWoTlcW4EeORw5cz-AoFKA" elementId="org.eclipse.core.runtime.xml" bindingContext="_JWslCMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWoTlsW4EeORw5cz-AoFKA" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" bindingContext="_JWslEMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWoTl8W4EeORw5cz-AoFKA" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_JWtzKcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWoTmMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_JWr-AMW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWoTmcW4EeORw5cz-AoFKA" keySequence="ALT+CR" command="_JX9JQ8W4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REg_6MRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_REkqQMRFEeOsdtank6IHbg"> - <bindings xmi:id="_jhWzlcTSEeO088oenCNcTw" keySequence="COMMAND+V" command="_RFPYrcRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhZ25cTSEeO088oenCNcTw" keySequence="COMMAND+C" command="_RFl9_MRFEeOsdtank6IHbg"/> + <bindingTables xmi:id="_JWoTmsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_JWr9_sW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWoTm8W4EeORw5cz-AoFKA" keySequence="COMMAND+V" command="_JXJ4DMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTnMW4EeORw5cz-AoFKA" keySequence="COMMAND+C" command="_JXoZJMW4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REg_68RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" bindingContext="_REkqRcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REg_78RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_RElRa8RFEeOsdtank6IHbg"> - <bindings xmi:id="_jhSiIsTSEeO088oenCNcTw" keySequence="COMMAND+T" command="_RFZJqsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhUXUcTSEeO088oenCNcTw" keySequence="COMMAND+N" command="_RFWtbsRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhUXU8TSEeO088oenCNcTw" keySequence="COMMAND+W" command="_RFVfScRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhYBtMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+N" command="_RFkv3sRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhYoxMTSEeO088oenCNcTw" keySequence="ALT+COMMAND+M" command="_RFOKj8RFEeOsdtank6IHbg"/> + <bindingTables xmi:id="_JWoTncW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" bindingContext="_JWr-A8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWoTnsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_JWtMJsW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWoTn8W4EeORw5cz-AoFKA" keySequence="COMMAND+T" command="_JXWFQsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoToMW4EeORw5cz-AoFKA" keySequence="COMMAND+N" command="_JXTB9cW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTocW4EeORw5cz-AoFKA" keySequence="COMMAND+W" command="_JXRMx8W4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTosW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+N" command="_JXl85sW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTo8W4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+M" command="_JXIp6sW4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REg_9cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_RElRWcRFEeOsdtank6IHbg"> - <bindings xmi:id="_jhTJMsTSEeO088oenCNcTw" keySequence="COMMAND+/" command="_RFOxk8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhTJNMTSEeO088oenCNcTw" keySequence="COMMAND+7" command="_RFOxk8RFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhZ248TSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+C" command="_RFOxk8RFEeOsdtank6IHbg"/> + <bindingTables xmi:id="_JWoTpMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_JWtMFMW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWoTpcW4EeORw5cz-AoFKA" keySequence="COMMAND+/" command="_JXJQ8MW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTpsW4EeORw5cz-AoFKA" keySequence="COMMAND+7" command="_JXJQ8MW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWoTp8W4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+C" command="_JXJQ8MW4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REhm8cRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_RElRZMRFEeOsdtank6IHbg"> - <bindings xmi:id="_jhQF5MTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+." command="_RFM8ccRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhR7FMTSEeO088oenCNcTw" keySequence="COMMAND+G" command="_RFVfQMRFEeOsdtank6IHbg"/> - <bindings xmi:id="_jhTwQsTSEeO088oenCNcTw" keySequence="COMMAND+SHIFT+," command="_RF4R3cRFEeOsdtank6IHbg"/> + <bindingTables xmi:id="_JWoTqMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_JWtMH8W4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWoTqcW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+." command="_JXHbxsW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWo6oMW4EeORw5cz-AoFKA" keySequence="COMMAND+G" command="_JXQlvMW4EeORw5cz-AoFKA"/> + <bindings xmi:id="_JWo6ocW4EeORw5cz-AoFKA" keySequence="COMMAND+SHIFT+," command="_JYFsJMW4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REhm9cRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.console" bindingContext="_RElRWsRFEeOsdtank6IHbg"> - <bindings xmi:id="_jhiZwsTSEeO088oenCNcTw" keySequence="CTRL+D" command="_RFURL8RFEeOsdtank6IHbg"/> + <bindingTables xmi:id="_JWo6osW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.console" bindingContext="_JWtMFcW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWo6o8W4EeORw5cz-AoFKA" keySequence="CTRL+D" command="_JXP-qMW4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REhm98RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.editor.scope" bindingContext="_REkqSsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhm-cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_REl4Z8RFEeOsdtank6IHbg"> - <bindings xmi:id="_jhhyscTSEeO088oenCNcTw" keySequence="ALT+COMMAND+B" command="_RFyyQcRFEeOsdtank6IHbg"> + <bindingTables xmi:id="_JWo6pMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.editor.scope" bindingContext="_JWslAcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6pcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_JWtzJsW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWo6psW4EeORw5cz-AoFKA" keySequence="ALT+COMMAND+B" command="_JX8iMMW4EeORw5cz-AoFKA"> <tags>platform:cocoa</tags> </bindings> </bindingTables> - <bindingTables xmi:id="_REhm-8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_RElRXcRFEeOsdtank6IHbg"> - <bindings xmi:id="_jhZ25sTSEeO088oenCNcTw" keySequence="COMMAND+C" command="_RFSb_8RFEeOsdtank6IHbg"/> + <bindingTables xmi:id="_JWo6p8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_JWtMGMW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWo6qMW4EeORw5cz-AoFKA" keySequence="COMMAND+C" command="_JXOJcMW4EeORw5cz-AoFKA"/> </bindingTables> - <bindingTables xmi:id="_REhm_cRFEeOsdtank6IHbg" bindingContext="_REl4a8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhm_sRFEeOsdtank6IHbg" bindingContext="_REl4bMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhm_8RFEeOsdtank6IHbg" bindingContext="_REl4bcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnAMRFEeOsdtank6IHbg" bindingContext="_REl4bsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnAcRFEeOsdtank6IHbg" bindingContext="_REl4b8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnAsRFEeOsdtank6IHbg" bindingContext="_REl4cMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnA8RFEeOsdtank6IHbg" bindingContext="_REl4ccRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnBMRFEeOsdtank6IHbg" bindingContext="_REl4csRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnBcRFEeOsdtank6IHbg" bindingContext="_REl4c8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnBsRFEeOsdtank6IHbg" bindingContext="_REl4dMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnB8RFEeOsdtank6IHbg" bindingContext="_REl4dcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnCMRFEeOsdtank6IHbg" bindingContext="_REl4dsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnCcRFEeOsdtank6IHbg" bindingContext="_REl4d8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REhnCsRFEeOsdtank6IHbg" bindingContext="_REl4eMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOAMRFEeOsdtank6IHbg" bindingContext="_REl4ecRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOAcRFEeOsdtank6IHbg" bindingContext="_REl4esRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOAsRFEeOsdtank6IHbg" bindingContext="_REmfcMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOA8RFEeOsdtank6IHbg" bindingContext="_REmfccRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOBMRFEeOsdtank6IHbg" bindingContext="_REmfcsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOBcRFEeOsdtank6IHbg" bindingContext="_REmfc8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOBsRFEeOsdtank6IHbg" bindingContext="_REmfdMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOB8RFEeOsdtank6IHbg" bindingContext="_REmfdcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOCMRFEeOsdtank6IHbg" bindingContext="_REmfdsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOCcRFEeOsdtank6IHbg" bindingContext="_REmfd8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOCsRFEeOsdtank6IHbg" bindingContext="_REmfeMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOC8RFEeOsdtank6IHbg" bindingContext="_REmfecRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiODMRFEeOsdtank6IHbg" bindingContext="_REmfesRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiODcRFEeOsdtank6IHbg" bindingContext="_REmfe8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiODsRFEeOsdtank6IHbg" bindingContext="_REmffMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOD8RFEeOsdtank6IHbg" bindingContext="_REmffcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOEMRFEeOsdtank6IHbg" bindingContext="_REmffsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOEcRFEeOsdtank6IHbg" bindingContext="_REmff8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOEsRFEeOsdtank6IHbg" bindingContext="_REmfgMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOE8RFEeOsdtank6IHbg" bindingContext="_REmfgcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOFMRFEeOsdtank6IHbg" bindingContext="_REmfgsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOFcRFEeOsdtank6IHbg" bindingContext="_REmfg8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOFsRFEeOsdtank6IHbg" bindingContext="_REmfhMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOF8RFEeOsdtank6IHbg" bindingContext="_REmfhcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOGMRFEeOsdtank6IHbg" bindingContext="_REmfhsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOGcRFEeOsdtank6IHbg" bindingContext="_REmfh8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOGsRFEeOsdtank6IHbg" bindingContext="_REmfiMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOG8RFEeOsdtank6IHbg" bindingContext="_REmficRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REiOHMRFEeOsdtank6IHbg" bindingContext="_REmfisRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1EMRFEeOsdtank6IHbg" bindingContext="_REnGgMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1EcRFEeOsdtank6IHbg" bindingContext="_REnGgcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1EsRFEeOsdtank6IHbg" bindingContext="_REnGgsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1E8RFEeOsdtank6IHbg" bindingContext="_REnGg8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1FMRFEeOsdtank6IHbg" bindingContext="_REnGhMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1FcRFEeOsdtank6IHbg" bindingContext="_REnGhcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1FsRFEeOsdtank6IHbg" bindingContext="_REnGhsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1F8RFEeOsdtank6IHbg" bindingContext="_REnGh8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1GMRFEeOsdtank6IHbg" bindingContext="_REnGiMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1GcRFEeOsdtank6IHbg" bindingContext="_REnGicRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1GsRFEeOsdtank6IHbg" bindingContext="_REnGisRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1G8RFEeOsdtank6IHbg" bindingContext="_REnGi8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1HMRFEeOsdtank6IHbg" bindingContext="_REnGjMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1HcRFEeOsdtank6IHbg" bindingContext="_REnGjcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1HsRFEeOsdtank6IHbg" bindingContext="_REnGjsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1H8RFEeOsdtank6IHbg" bindingContext="_REnGj8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1IMRFEeOsdtank6IHbg" bindingContext="_REnGkMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1IcRFEeOsdtank6IHbg" bindingContext="_REnGkcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1IsRFEeOsdtank6IHbg" bindingContext="_REnGksRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1I8RFEeOsdtank6IHbg" bindingContext="_REnGk8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1JMRFEeOsdtank6IHbg" bindingContext="_REnGlMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1JcRFEeOsdtank6IHbg" bindingContext="_REnGlcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1JsRFEeOsdtank6IHbg" bindingContext="_REnGlsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1J8RFEeOsdtank6IHbg" bindingContext="_REnGl8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1KMRFEeOsdtank6IHbg" bindingContext="_REntkMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1KcRFEeOsdtank6IHbg" bindingContext="_REntkcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1KsRFEeOsdtank6IHbg" bindingContext="_REntksRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REi1K8RFEeOsdtank6IHbg" bindingContext="_REntk8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcIMRFEeOsdtank6IHbg" bindingContext="_REntlMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcIcRFEeOsdtank6IHbg" bindingContext="_REntlcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcIsRFEeOsdtank6IHbg" bindingContext="_REntlsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcI8RFEeOsdtank6IHbg" bindingContext="_REntl8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcJMRFEeOsdtank6IHbg" bindingContext="_REntmMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcJcRFEeOsdtank6IHbg" bindingContext="_REntmcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcJsRFEeOsdtank6IHbg" bindingContext="_REntmsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcJ8RFEeOsdtank6IHbg" bindingContext="_REntm8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcKMRFEeOsdtank6IHbg" bindingContext="_REntnMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcKcRFEeOsdtank6IHbg" bindingContext="_REntncRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcKsRFEeOsdtank6IHbg" bindingContext="_REntnsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcK8RFEeOsdtank6IHbg" bindingContext="_REntn8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcLMRFEeOsdtank6IHbg" bindingContext="_REntoMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcLcRFEeOsdtank6IHbg" bindingContext="_REntocRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcLsRFEeOsdtank6IHbg" bindingContext="_REntosRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcL8RFEeOsdtank6IHbg" bindingContext="_REnto8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcMMRFEeOsdtank6IHbg" bindingContext="_REntpMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcMcRFEeOsdtank6IHbg" bindingContext="_REntpcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcMsRFEeOsdtank6IHbg" bindingContext="_REntpsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcM8RFEeOsdtank6IHbg" bindingContext="_REntp8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcNMRFEeOsdtank6IHbg" bindingContext="_REntqMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcNcRFEeOsdtank6IHbg" bindingContext="_REntqcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcNsRFEeOsdtank6IHbg" bindingContext="_REoUoMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcN8RFEeOsdtank6IHbg" bindingContext="_REoUocRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcOMRFEeOsdtank6IHbg" bindingContext="_REoUosRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcOcRFEeOsdtank6IHbg" bindingContext="_REoUo8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcOsRFEeOsdtank6IHbg" bindingContext="_REoUpMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REjcO8RFEeOsdtank6IHbg" bindingContext="_REoUpcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDMMRFEeOsdtank6IHbg" bindingContext="_REoUpsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDMcRFEeOsdtank6IHbg" bindingContext="_REoUp8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDMsRFEeOsdtank6IHbg" bindingContext="_REoUqMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDM8RFEeOsdtank6IHbg" bindingContext="_REoUqcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDNMRFEeOsdtank6IHbg" bindingContext="_REoUqsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDNcRFEeOsdtank6IHbg" bindingContext="_REoUq8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDNsRFEeOsdtank6IHbg" bindingContext="_REoUrMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDN8RFEeOsdtank6IHbg" bindingContext="_REoUrcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDOMRFEeOsdtank6IHbg" bindingContext="_REoUrsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDOcRFEeOsdtank6IHbg" bindingContext="_REoUr8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDOsRFEeOsdtank6IHbg" bindingContext="_REoUsMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDO8RFEeOsdtank6IHbg" bindingContext="_REoUscRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDPMRFEeOsdtank6IHbg" bindingContext="_REoUssRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDPcRFEeOsdtank6IHbg" bindingContext="_REoUs8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDPsRFEeOsdtank6IHbg" bindingContext="_REoUtMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDP8RFEeOsdtank6IHbg" bindingContext="_REoUtcRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDQMRFEeOsdtank6IHbg" bindingContext="_REoUtsRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDQcRFEeOsdtank6IHbg" bindingContext="_REoUt8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDQsRFEeOsdtank6IHbg" bindingContext="_REoUuMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDQ8RFEeOsdtank6IHbg" bindingContext="_REoUucRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDRMRFEeOsdtank6IHbg" bindingContext="_REo7sMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDRcRFEeOsdtank6IHbg" bindingContext="_REo7scRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDRsRFEeOsdtank6IHbg" bindingContext="_REo7ssRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDR8RFEeOsdtank6IHbg" bindingContext="_REo7s8RFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_REkDSMRFEeOsdtank6IHbg" bindingContext="_REo7tMRFEeOsdtank6IHbg"/> - <bindingTables xmi:id="_jhsKwsTSEeO088oenCNcTw" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" bindingContext="_REl4YcRFEeOsdtank6IHbg"> - <bindings xmi:id="_vBhHQMTWEeO-CfRxHWQfBg" keySequence="M1+W" command="_jhsKwMTSEeO088oenCNcTw"/> + <bindingTables xmi:id="_JWo6qcW4EeORw5cz-AoFKA" bindingContext="_JWtzKsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6qsW4EeORw5cz-AoFKA" bindingContext="_JWtzK8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6q8W4EeORw5cz-AoFKA" bindingContext="_JWtzLMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6rMW4EeORw5cz-AoFKA" bindingContext="_JWtzLcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6rcW4EeORw5cz-AoFKA" bindingContext="_JWtzLsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6rsW4EeORw5cz-AoFKA" bindingContext="_JWtzL8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6r8W4EeORw5cz-AoFKA" bindingContext="_JWtzMMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6sMW4EeORw5cz-AoFKA" bindingContext="_JWtzMcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6scW4EeORw5cz-AoFKA" bindingContext="_JWtzMsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6ssW4EeORw5cz-AoFKA" bindingContext="_JWtzM8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6s8W4EeORw5cz-AoFKA" bindingContext="_JWtzNMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6tMW4EeORw5cz-AoFKA" bindingContext="_JWtzNcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6tcW4EeORw5cz-AoFKA" bindingContext="_JWuaMMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6tsW4EeORw5cz-AoFKA" bindingContext="_JWuaMcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6t8W4EeORw5cz-AoFKA" bindingContext="_JWuaMsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6uMW4EeORw5cz-AoFKA" bindingContext="_JWuaM8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWo6ucW4EeORw5cz-AoFKA" bindingContext="_JWuaNMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphsMW4EeORw5cz-AoFKA" bindingContext="_JWuaNcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphscW4EeORw5cz-AoFKA" bindingContext="_JWuaNsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphssW4EeORw5cz-AoFKA" bindingContext="_JWuaN8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphs8W4EeORw5cz-AoFKA" bindingContext="_JWuaOMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphtMW4EeORw5cz-AoFKA" bindingContext="_JWuaOcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphtcW4EeORw5cz-AoFKA" bindingContext="_JWuaOsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphtsW4EeORw5cz-AoFKA" bindingContext="_JWuaO8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWpht8W4EeORw5cz-AoFKA" bindingContext="_JWuaPMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphuMW4EeORw5cz-AoFKA" bindingContext="_JWuaPcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphucW4EeORw5cz-AoFKA" bindingContext="_JWuaPsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphusW4EeORw5cz-AoFKA" bindingContext="_JWuaP8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphu8W4EeORw5cz-AoFKA" bindingContext="_JWuaQMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphvMW4EeORw5cz-AoFKA" bindingContext="_JWuaQcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphvcW4EeORw5cz-AoFKA" bindingContext="_JWuaQsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphvsW4EeORw5cz-AoFKA" bindingContext="_JWuaQ8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphv8W4EeORw5cz-AoFKA" bindingContext="_JWvBQMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphwMW4EeORw5cz-AoFKA" bindingContext="_JWvBQcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphwcW4EeORw5cz-AoFKA" bindingContext="_JWvBQsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphwsW4EeORw5cz-AoFKA" bindingContext="_JWvBQ8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphw8W4EeORw5cz-AoFKA" bindingContext="_JWvBRMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphxMW4EeORw5cz-AoFKA" bindingContext="_JWvBRcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphxcW4EeORw5cz-AoFKA" bindingContext="_JWvBRsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphxsW4EeORw5cz-AoFKA" bindingContext="_JWvBR8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWphx8W4EeORw5cz-AoFKA" bindingContext="_JWvBSMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIwMW4EeORw5cz-AoFKA" bindingContext="_JWvBScW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIwcW4EeORw5cz-AoFKA" bindingContext="_JWvBSsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIwsW4EeORw5cz-AoFKA" bindingContext="_JWvBS8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIw8W4EeORw5cz-AoFKA" bindingContext="_JWvBTMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIxMW4EeORw5cz-AoFKA" bindingContext="_JWvBTcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIxcW4EeORw5cz-AoFKA" bindingContext="_JWvBTsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIxsW4EeORw5cz-AoFKA" bindingContext="_JWvBT8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIx8W4EeORw5cz-AoFKA" bindingContext="_JWvBUMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIyMW4EeORw5cz-AoFKA" bindingContext="_JWvBUcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIycW4EeORw5cz-AoFKA" bindingContext="_JWvBUsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIysW4EeORw5cz-AoFKA" bindingContext="_JWvBU8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIy8W4EeORw5cz-AoFKA" bindingContext="_JWvoUMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIzMW4EeORw5cz-AoFKA" bindingContext="_JWvoUcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIzcW4EeORw5cz-AoFKA" bindingContext="_JWvoUsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIzsW4EeORw5cz-AoFKA" bindingContext="_JWvoU8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqIz8W4EeORw5cz-AoFKA" bindingContext="_JWvoVMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqI0MW4EeORw5cz-AoFKA" bindingContext="_JWvoVcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqI0cW4EeORw5cz-AoFKA" bindingContext="_JWvoVsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqI0sW4EeORw5cz-AoFKA" bindingContext="_JWvoV8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqI08W4EeORw5cz-AoFKA" bindingContext="_JWvoWMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqI1MW4EeORw5cz-AoFKA" bindingContext="_JWvoWcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqI1cW4EeORw5cz-AoFKA" bindingContext="_JWvoWsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqI1sW4EeORw5cz-AoFKA" bindingContext="_JWvoW8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqI18W4EeORw5cz-AoFKA" bindingContext="_JWvoXMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv0MW4EeORw5cz-AoFKA" bindingContext="_JWvoXcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv0cW4EeORw5cz-AoFKA" bindingContext="_JWvoXsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv0sW4EeORw5cz-AoFKA" bindingContext="_JWvoX8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv08W4EeORw5cz-AoFKA" bindingContext="_JWvoYMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv1MW4EeORw5cz-AoFKA" bindingContext="_JWvoYcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv1cW4EeORw5cz-AoFKA" bindingContext="_JWvoYsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv1sW4EeORw5cz-AoFKA" bindingContext="_JWwPYMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv18W4EeORw5cz-AoFKA" bindingContext="_JWwPYcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv2MW4EeORw5cz-AoFKA" bindingContext="_JWwPYsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv2cW4EeORw5cz-AoFKA" bindingContext="_JWwPY8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv2sW4EeORw5cz-AoFKA" bindingContext="_JWwPZMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv28W4EeORw5cz-AoFKA" bindingContext="_JWwPZcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv3MW4EeORw5cz-AoFKA" bindingContext="_JWwPZsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv3cW4EeORw5cz-AoFKA" bindingContext="_JWwPZ8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv3sW4EeORw5cz-AoFKA" bindingContext="_JWwPaMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv38W4EeORw5cz-AoFKA" bindingContext="_JWwPacW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv4MW4EeORw5cz-AoFKA" bindingContext="_JWwPasW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv4cW4EeORw5cz-AoFKA" bindingContext="_JWwPa8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv4sW4EeORw5cz-AoFKA" bindingContext="_JWwPbMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv48W4EeORw5cz-AoFKA" bindingContext="_JWwPbcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv5MW4EeORw5cz-AoFKA" bindingContext="_JWwPbsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv5cW4EeORw5cz-AoFKA" bindingContext="_JWwPb8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv5sW4EeORw5cz-AoFKA" bindingContext="_JWwPcMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv58W4EeORw5cz-AoFKA" bindingContext="_JWwPccW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWqv6MW4EeORw5cz-AoFKA" bindingContext="_JWw2cMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW4MW4EeORw5cz-AoFKA" bindingContext="_JWw2ccW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW4cW4EeORw5cz-AoFKA" bindingContext="_JWw2csW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW4sW4EeORw5cz-AoFKA" bindingContext="_JWw2c8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW48W4EeORw5cz-AoFKA" bindingContext="_JWw2dMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW5MW4EeORw5cz-AoFKA" bindingContext="_JWw2dcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW5cW4EeORw5cz-AoFKA" bindingContext="_JWw2dsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW5sW4EeORw5cz-AoFKA" bindingContext="_JWw2d8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW58W4EeORw5cz-AoFKA" bindingContext="_JWw2eMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW6MW4EeORw5cz-AoFKA" bindingContext="_JWw2ecW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW6cW4EeORw5cz-AoFKA" bindingContext="_JWw2esW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW6sW4EeORw5cz-AoFKA" bindingContext="_JWw2e8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW68W4EeORw5cz-AoFKA" bindingContext="_JWw2fMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW7MW4EeORw5cz-AoFKA" bindingContext="_JWw2fcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW7cW4EeORw5cz-AoFKA" bindingContext="_JWw2fsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW7sW4EeORw5cz-AoFKA" bindingContext="_JWw2f8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW78W4EeORw5cz-AoFKA" bindingContext="_JWw2gMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW8MW4EeORw5cz-AoFKA" bindingContext="_JWw2gcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW8cW4EeORw5cz-AoFKA" bindingContext="_JWw2gsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW8sW4EeORw5cz-AoFKA" bindingContext="_JWxdgMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW88W4EeORw5cz-AoFKA" bindingContext="_JWxdgcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW9MW4EeORw5cz-AoFKA" bindingContext="_JWxdgsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW9cW4EeORw5cz-AoFKA" bindingContext="_JWxdg8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW9sW4EeORw5cz-AoFKA" bindingContext="_JWxdhMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW98W4EeORw5cz-AoFKA" bindingContext="_JWxdhcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWrW-MW4EeORw5cz-AoFKA" bindingContext="_JWxdhsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr98MW4EeORw5cz-AoFKA" bindingContext="_JWxdh8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr98cW4EeORw5cz-AoFKA" bindingContext="_JWxdiMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr98sW4EeORw5cz-AoFKA" bindingContext="_JWxdicW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr988W4EeORw5cz-AoFKA" bindingContext="_JWxdisW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr99MW4EeORw5cz-AoFKA" bindingContext="_JWxdi8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr99cW4EeORw5cz-AoFKA" bindingContext="_JWxdjMW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr99sW4EeORw5cz-AoFKA" bindingContext="_JWxdjcW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr998W4EeORw5cz-AoFKA" bindingContext="_JWxdjsW4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr9-MW4EeORw5cz-AoFKA" bindingContext="_JWxdj8W4EeORw5cz-AoFKA"/> + <bindingTables xmi:id="_JWr9-cW4EeORw5cz-AoFKA" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" bindingContext="_JWtzIMW4EeORw5cz-AoFKA"> + <bindings xmi:id="_JWr9-sW4EeORw5cz-AoFKA" keySequence="M1+W" command="_JYJ9mMW4EeORw5cz-AoFKA"/> </bindingTables> - <rootContext xmi:id="_REkDScRFEeOsdtank6IHbg" elementId="org.eclipse.ui.contexts.dialogAndWindow" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs and Windows" description="Either a dialog or a window is open"> - <children xmi:id="_REkDSsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open"> - <children xmi:id="_REkDS8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/> - <children xmi:id="_REkqQMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/> - <children xmi:id="_REkqQcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/> - <children xmi:id="_REkqQsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/> - <children xmi:id="_REkqQ8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context"> - <children xmi:id="_REkqRMRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/> - <children xmi:id="_REkqRcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" name="Makefile Editor" description="Editor for makefiles"/> - <children xmi:id="_REkqRsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context"> - <children xmi:id="_REkqR8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/> - </children> - <children xmi:id="_REkqSMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/> - <children xmi:id="_REkqScRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" name="Editing SQL" description="Editing SQL Context"/> - <children xmi:id="_REkqSsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.editor.scope" name="Autoconf Editor" description="Editor for Autoconf Configuration Source Files"/> - <children xmi:id="_REkqS8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"> - <children xmi:id="_REkqTMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/> - <children xmi:id="_REkqTcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/> - <children xmi:id="_REkqTsRFEeOsdtank6IHbg" elementId="org.eclipse.jst.jsp.core.jspsource" name="JSP Source" description="JSP Source"/> - <children xmi:id="_REkqT8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/> - <children xmi:id="_REkqUMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/> - <children xmi:id="_REkqUcRFEeOsdtank6IHbg" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/> - <children xmi:id="_REkqUsRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.phpEditorScope" name="Editing PHP source" description="Editing PHP source context"/> - <children xmi:id="_REkqU8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/> - <children xmi:id="_REkqVMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/> - <children xmi:id="_REkqVcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/> - <children xmi:id="_REkqVsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/> - <children xmi:id="_REkqV8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/> - <children xmi:id="_REkqWMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/> - <children xmi:id="_REkqWcRFEeOsdtank6IHbg" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" name="Editing JSP Source" description="Editing JSP Source"/> - <children xmi:id="_REkqWsRFEeOsdtank6IHbg" elementId="org.eclipse.php.core.phpsource" name="Editing PHP source" description="Editing PHP source context"/> - <children xmi:id="_REkqW8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/> - <children xmi:id="_RElRUMRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.xml.editorScope" name="WindowBuilder XML scope"/> - <children xmi:id="_RElRUcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/> - <children xmi:id="_RElRUsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/> - </children> - <children xmi:id="_RElRU8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.cEditorScope" name="C/C++ Editor" description="Editor for C/C++ Source Files"> - <children xmi:id="_RElRVMRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rdt.editor.RemoteCEditorScope" name="Remote C/C++ Editor"/> - </children> - <children xmi:id="_RElRVcRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.java.editorScope" name="WindowBuilder Java scope"/> - <children xmi:id="_RElRVsRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.scriptEditorScope" name="Editing Script Source" description="Editing Script Source Context"/> - <children xmi:id="_RElRV8RFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/> - <children xmi:id="_RElRWMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/> - <children xmi:id="_RElRWcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/> + <rootContext xmi:id="_JWr9-8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.contexts.dialogAndWindow" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs and Windows" description="Either a dialog or a window is open"> + <children xmi:id="_JWr9_MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open"> + <children xmi:id="_JWr9_cW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/> + <children xmi:id="_JWr9_sW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/> + <children xmi:id="_JWr9_8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/> + <children xmi:id="_JWr-AMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/> + <children xmi:id="_JWr-AcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context"> + <children xmi:id="_JWr-AsW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/> + <children xmi:id="_JWr-A8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" name="Makefile Editor" description="Editor for makefiles"/> + <children xmi:id="_JWr-BMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context"> + <children xmi:id="_JWr-BcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/> + </children> + <children xmi:id="_JWr-BsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/> + <children xmi:id="_JWslAMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" name="Editing SQL" description="Editing SQL Context"/> + <children xmi:id="_JWslAcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.editor.scope" name="Autoconf Editor" description="Editor for Autoconf Configuration Source Files"/> + <children xmi:id="_JWslAsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"> + <children xmi:id="_JWslA8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/> + <children xmi:id="_JWslBMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/> + <children xmi:id="_JWslBcW4EeORw5cz-AoFKA" elementId="org.eclipse.jst.jsp.core.jspsource" name="JSP Source" description="JSP Source"/> + <children xmi:id="_JWslBsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/> + <children xmi:id="_JWslB8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/> + <children xmi:id="_JWslCMW4EeORw5cz-AoFKA" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/> + <children xmi:id="_JWslCcW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.phpEditorScope" name="Editing PHP source" description="Editing PHP source context"/> + <children xmi:id="_JWslCsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/> + <children xmi:id="_JWslC8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/> + <children xmi:id="_JWslDMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/> + <children xmi:id="_JWslDcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/> + <children xmi:id="_JWslDsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/> + <children xmi:id="_JWslD8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/> + <children xmi:id="_JWslEMW4EeORw5cz-AoFKA" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" name="Editing JSP Source" description="Editing JSP Source"/> + <children xmi:id="_JWslEcW4EeORw5cz-AoFKA" elementId="org.eclipse.php.core.phpsource" name="Editing PHP source" description="Editing PHP source context"/> + <children xmi:id="_JWslEsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/> + <children xmi:id="_JWslE8W4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.xml.editorScope" name="WindowBuilder XML scope"/> + <children xmi:id="_JWslFMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/> + <children xmi:id="_JWslFcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/> + </children> + <children xmi:id="_JWslFsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.cEditorScope" name="C/C++ Editor" description="Editor for C/C++ Source Files"> + <children xmi:id="_JWslF8W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rdt.editor.RemoteCEditorScope" name="Remote C/C++ Editor"/> + </children> + <children xmi:id="_JWtMEMW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.java.editorScope" name="WindowBuilder Java scope"/> + <children xmi:id="_JWtMEcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.scriptEditorScope" name="Editing Script Source" description="Editing Script Source Context"/> + <children xmi:id="_JWtMEsW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/> + <children xmi:id="_JWtME8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/> + <children xmi:id="_JWtMFMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/> </children> - <children xmi:id="_RElRWsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/> - <children xmi:id="_RElRW8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.schemaobjecteditor.schemaediting" name="Schema Object Editor" description="Schema Object Editor"/> - <children xmi:id="_RElRXMRFEeOsdtank6IHbg" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/> - <children xmi:id="_RElRXcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/> - <children xmi:id="_RElRXsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.cViewScope" name="In C/C++ Views" description="In C/C++ Views"/> - <children xmi:id="_RElRX8RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.context.views" name="DLTK View" description="DLTK Views Context"/> - <children xmi:id="_RElRYMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs"> - <children xmi:id="_RElRYcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.debugging" name="Debugging Script" description="Context available during script debugging"/> - <children xmi:id="_RElRYsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" name="In Disassembly" description="When debugging in assembly mode"/> - <children xmi:id="_RElRY8RFEeOsdtank6IHbg" elementId="org.eclipse.php.debug.ui.debugging" name="Debugging PHP" description="Debugging PHP"/> - <children xmi:id="_RElRZMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/> - <children xmi:id="_RElRZcRFEeOsdtank6IHbg" elementId="org.eclipse.php.debug.ui.xdebug" name="Debugging PHP" description="Debugging PHP"/> - <children xmi:id="_RElRZsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.debugging" name="Debugging C/C++" description="Debugging C/C++ Programs"/> - <children xmi:id="_RElRZ8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsl.debug.ui.context" name="XSLT Debugging" description="Context for debugging XSLT"/> - <children xmi:id="_RElRaMRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.debug.ui.debugging" name="Debugging Parallel" description="Debugging Parallel Programs"/> - <children xmi:id="_RElRacRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/> + <children xmi:id="_JWtMFcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/> + <children xmi:id="_JWtMFsW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.schemaobjecteditor.schemaediting" name="Schema Object Editor" description="Schema Object Editor"/> + <children xmi:id="_JWtMF8W4EeORw5cz-AoFKA" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/> + <children xmi:id="_JWtMGMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/> + <children xmi:id="_JWtMGcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.cViewScope" name="In C/C++ Views" description="In C/C++ Views"/> + <children xmi:id="_JWtMGsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.context.views" name="DLTK View" description="DLTK Views Context"/> + <children xmi:id="_JWtMG8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs"> + <children xmi:id="_JWtMHMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.debugging" name="Debugging Script" description="Context available during script debugging"/> + <children xmi:id="_JWtMHcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" name="In Disassembly" description="When debugging in assembly mode"/> + <children xmi:id="_JWtMHsW4EeORw5cz-AoFKA" elementId="org.eclipse.php.debug.ui.debugging" name="Debugging PHP" description="Debugging PHP"/> + <children xmi:id="_JWtMH8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/> + <children xmi:id="_JWtMIMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.debug.ui.xdebug" name="Debugging PHP" description="Debugging PHP"/> + <children xmi:id="_JWtMIcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.debugging" name="Debugging C/C++" description="Debugging C/C++ Programs"/> + <children xmi:id="_JWtMIsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsl.debug.ui.context" name="XSLT Debugging" description="Context for debugging XSLT"/> + <children xmi:id="_JWtMI8W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.debug.ui.debugging" name="Debugging Parallel" description="Debugging Parallel Programs"/> + <children xmi:id="_JWtMJMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/> </children> - <children xmi:id="_RElRasRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.internal.ui.editors.parts.graphicaleditorwithflyoutpalette.context" name="reportdesignereditpart.context"/> - <children xmi:id="_RElRa8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/> - <children xmi:id="_REl4YMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/> + <children xmi:id="_JWtMJcW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.internal.ui.editors.parts.graphicaleditorwithflyoutpalette.context" name="reportdesignereditpart.context"/> + <children xmi:id="_JWtMJsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/> + <children xmi:id="_JWtMJ8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/> </children> - <children xmi:id="_REl4YcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/> - <children xmi:id="_REl4YsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" name="In Macro Expansion Hover" description="In Macro Expansion Hover"/> + <children xmi:id="_JWtzIMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/> + <children xmi:id="_JWtzIcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" name="In Macro Expansion Hover" description="In Macro Expansion Hover"/> </rootContext> - <rootContext xmi:id="_REl4Y8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/> - <rootContext xmi:id="_REl4ZMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/> - <rootContext xmi:id="_REl4ZcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.wsdl.ui.editor.designView" name="WSDL Editor Design View" description="WSDL Editor Design View"/> - <rootContext xmi:id="_REl4ZsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/> - <rootContext xmi:id="_REl4Z8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/> - <rootContext xmi:id="_REl4aMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.wsdl.ui.editor.sourceView" name="WSDL Editor Source View" description="WSDL Editor Source View"/> - <rootContext xmi:id="_REl4acRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/> - <rootContext xmi:id="_REl4asRFEeOsdtank6IHbg" elementId="org.eclipse.tm.terminal.TerminalContext" name="Terminal widget context" description="Override ALT+x menu access keys"/> - <rootContext xmi:id="_REl4a8RFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.ant.ui.actions.ManageBreakpointRulerAction"/> - <rootContext xmi:id="_REl4bMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.debug.internal.ui.script.editor.DebugJsEditor.ManageBreakpointRulerAction" name="Auto::org.eclipse.birt.report.debug.internal.ui.script.editor.DebugJsEditor.ManageBreakpointRulerAction"/> - <rootContext xmi:id="_REl4bcRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.editor.script.DecoratedScriptEditor.ManageBreakpointRulerAction" name="Auto::org.eclipse.birt.report.designer.ui.editor.script.DecoratedScriptEditor.ManageBreakpointRulerAction"/> - <rootContext xmi:id="_REl4bsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction" name="Auto::org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction"/> - <rootContext xmi:id="_REl4b8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.texteditor.BookmarkRulerAction" name="Auto::org.eclipse.ui.texteditor.BookmarkRulerAction"/> - <rootContext xmi:id="_REl4cMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction" name="Auto::org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction"/> - <rootContext xmi:id="_REl4ccRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction"/> - <rootContext xmi:id="_REl4csRFEeOsdtank6IHbg" elementId="org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" name="Auto::org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor"/> - <rootContext xmi:id="_REl4c8RFEeOsdtank6IHbg" elementId="org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" name="Auto::org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor"/> - <rootContext xmi:id="_REl4dMRFEeOsdtank6IHbg" elementId="org.eclipse.emf.mapping.action.RemoveMappingActionID" name="Auto::org.eclipse.emf.mapping.action.RemoveMappingActionID"/> - <rootContext xmi:id="_REl4dcRFEeOsdtank6IHbg" elementId="org.eclipse.emf.mapping.action.TypeMatchMappingActionID" name="Auto::org.eclipse.emf.mapping.action.TypeMatchMappingActionID"/> - <rootContext xmi:id="_REl4dsRFEeOsdtank6IHbg" elementId="org.eclipse.emf.mapping.action.NameMatchMappingActionID" name="Auto::org.eclipse.emf.mapping.action.NameMatchMappingActionID"/> - <rootContext xmi:id="_REl4d8RFEeOsdtank6IHbg" elementId="org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" name="Auto::org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID"/> - <rootContext xmi:id="_REl4eMRFEeOsdtank6IHbg" elementId="org.eclipse.emf.mapping.action.CreateMappingActionID" name="Auto::org.eclipse.emf.mapping.action.CreateMappingActionID"/> - <rootContext xmi:id="_REl4ecRFEeOsdtank6IHbg" elementId="org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" name="Auto::org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID"/> - <rootContext xmi:id="_REl4esRFEeOsdtank6IHbg" elementId="org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" name="Auto::org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID"/> - <rootContext xmi:id="_REmfcMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.SnippetExecute" name="Auto::org.eclipse.jdt.debug.ui.SnippetExecute"/> - <rootContext xmi:id="_REmfccRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.SnippetDisplay" name="Auto::org.eclipse.jdt.debug.ui.SnippetDisplay"/> - <rootContext xmi:id="_REmfcsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.SnippetInspect" name="Auto::org.eclipse.jdt.debug.ui.SnippetInspect"/> - <rootContext xmi:id="_REmfc8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction"/> - <rootContext xmi:id="_REmfdMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction"/> - <rootContext xmi:id="_REmfdcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/> - <rootContext xmi:id="_REmfdsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction"/> - <rootContext xmi:id="_REmfd8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.texteditor.SelectRulerAction" name="Auto::org.eclipse.ui.texteditor.SelectRulerAction"/> - <rootContext xmi:id="_REmfeMRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.jdt.downloadSourcesAction" name="Auto::org.eclipse.m2e.jdt.downloadSourcesAction"/> - <rootContext xmi:id="_REmfecRFEeOsdtank6IHbg" elementId="org.eclipse.php.internal.ui.editor.PhpSelectRulerAction" name="Auto::org.eclipse.php.internal.ui.editor.PhpSelectRulerAction"/> - <rootContext xmi:id="_REmfesRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rdt.ui.editors.RemoteCEditor.RulerToggleBreakpointAction" name="Auto::org.eclipse.ptp.rdt.ui.editors.RemoteCEditor.RulerToggleBreakpointAction"/> - <rootContext xmi:id="_REmfe8RFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.editor.actions.SwitchAction" name="Auto::org.eclipse.wb.core.editor.actions.SwitchAction"/> - <rootContext xmi:id="_REmffMRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" name="Auto::org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction"/> - <rootContext xmi:id="_REmffcRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" name="Auto::org.eclipse.wb.core.xml.editor.actions.SwitchAction"/> - <rootContext xmi:id="_REmffsRFEeOsdtank6IHbg" elementId="StructureSelectEnclosing" name="Auto::StructureSelectEnclosing"/> - <rootContext xmi:id="_REmff8RFEeOsdtank6IHbg" elementId="StructureSelectNext" name="Auto::StructureSelectNext"/> - <rootContext xmi:id="_REmfgMRFEeOsdtank6IHbg" elementId="StructureSelectPrevious" name="Auto::StructureSelectPrevious"/> - <rootContext xmi:id="_REmfgcRFEeOsdtank6IHbg" elementId="StructureSelectHistory" name="Auto::StructureSelectHistory"/> - <rootContext xmi:id="_REmfgsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" name="Auto::org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint"/> - <rootContext xmi:id="_REmfg8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction"/> - <rootContext xmi:id="_REmfhMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction"/> - <rootContext xmi:id="_REmfhcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/> - <rootContext xmi:id="_REmfhsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction"/> - <rootContext xmi:id="_REmfh8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" name="Auto::org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate"/> - <rootContext xmi:id="_REmfiMRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/> - <rootContext xmi:id="_REmficRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/> - <rootContext xmi:id="_REmfisRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/> - <rootContext xmi:id="_REnGgMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/> - <rootContext xmi:id="_REnGgcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/> - <rootContext xmi:id="_REnGgsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/> - <rootContext xmi:id="_REnGg8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/> - <rootContext xmi:id="_REnGhMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/> - <rootContext xmi:id="_REnGhcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/> - <rootContext xmi:id="_REnGhsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/> - <rootContext xmi:id="_REnGh8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/> - <rootContext xmi:id="_REnGiMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/> - <rootContext xmi:id="_REnGicRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/> - <rootContext xmi:id="_REnGisRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/> - <rootContext xmi:id="_REnGi8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/> - <rootContext xmi:id="_REnGjMRFEeOsdtank6IHbg" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/> - <rootContext xmi:id="_REnGjcRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.CVSActionSet" name="Auto::org.eclipse.team.cvs.ui.CVSActionSet"/> - <rootContext xmi:id="_REnGjsRFEeOsdtank6IHbg" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/> - <rootContext xmi:id="_REnGj8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/> - <rootContext xmi:id="_REnGkMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/> - <rootContext xmi:id="_REnGkcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/> - <rootContext xmi:id="_REnGksRFEeOsdtank6IHbg" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/> - <rootContext xmi:id="_REnGk8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/> - <rootContext xmi:id="_REnGlMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/> - <rootContext xmi:id="_REnGlcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/> - <rootContext xmi:id="_REnGlsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/> - <rootContext xmi:id="_REnGl8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/> - <rootContext xmi:id="_REntkMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/> - <rootContext xmi:id="_REntkcRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.debug.ui.DeubgScript" name="Auto::org.eclipse.birt.report.debug.ui.DeubgScript"/> - <rootContext xmi:id="_REntksRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.publishActionSet" name="Auto::org.eclipse.birt.report.designer.ui.publishActionSet"/> - <rootContext xmi:id="_REntk8RFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.previewActionSet" name="Auto::org.eclipse.birt.report.designer.ui.previewActionSet"/> - <rootContext xmi:id="_REntlMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.viewDocumentActionSet" name="Auto::org.eclipse.birt.report.designer.ui.viewDocumentActionSet"/> - <rootContext xmi:id="_REntlcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.debugActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugActionSet"/> - <rootContext xmi:id="_REntlsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.reverseDebuggingActionSet" name="Auto::org.eclipse.cdt.debug.ui.reverseDebuggingActionSet"/> - <rootContext xmi:id="_REntl8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.tracepointActionSet" name="Auto::org.eclipse.cdt.debug.ui.tracepointActionSet"/> - <rootContext xmi:id="_REntmMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.debugViewLayoutActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugViewLayoutActionSet"/> - <rootContext xmi:id="_REntmcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.updateModes" name="Auto::org.eclipse.cdt.dsf.debug.ui.updateModes"/> - <rootContext xmi:id="_REntmsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.updateActionSet" name="Auto::org.eclipse.cdt.make.ui.updateActionSet"/> - <rootContext xmi:id="_REntm8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.makeTargetActionSet" name="Auto::org.eclipse.cdt.make.ui.makeTargetActionSet"/> - <rootContext xmi:id="_REntnMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.CodingActionSet" name="Auto::org.eclipse.cdt.ui.CodingActionSet"/> - <rootContext xmi:id="_REntncRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.SearchActionSet" name="Auto::org.eclipse.cdt.ui.SearchActionSet"/> - <rootContext xmi:id="_REntnsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.NavigationActionSet" name="Auto::org.eclipse.cdt.ui.NavigationActionSet"/> - <rootContext xmi:id="_REntn8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.OpenActionSet" name="Auto::org.eclipse.cdt.ui.OpenActionSet"/> - <rootContext xmi:id="_REntoMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.buildConfigActionSet" name="Auto::org.eclipse.cdt.ui.buildConfigActionSet"/> - <rootContext xmi:id="_REntocRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.CElementCreationActionSet" name="Auto::org.eclipse.cdt.ui.CElementCreationActionSet"/> - <rootContext xmi:id="_REntosRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.text.c.actionSet.presentation" name="Auto::org.eclipse.cdt.ui.text.c.actionSet.presentation"/> - <rootContext xmi:id="_REnto8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.actionSet" name="Auto::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet"/> - <rootContext xmi:id="_REntpMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.ScriptDebugActionSet" name="Auto::org.eclipse.dltk.debug.ui.ScriptDebugActionSet"/> - <rootContext xmi:id="_REntpcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.testing.testingActionSet" name="Auto::org.eclipse.dltk.testing.testingActionSet"/> - <rootContext xmi:id="_REntpsRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.ScriptCodingActionSet" name="Auto::org.eclipse.dltk.ui.ScriptCodingActionSet"/> - <rootContext xmi:id="_REntp8RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.A_OpenActionSet" name="Auto::org.eclipse.dltk.ui.A_OpenActionSet"/> - <rootContext xmi:id="_REntqMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.text.actionSet.presentation" name="Auto::org.eclipse.dltk.ui.text.actionSet.presentation"/> - <rootContext xmi:id="_REntqcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.SearchActionSet" name="Auto::org.eclipse.dltk.ui.SearchActionSet"/> - <rootContext xmi:id="_REoUoMRFEeOsdtank6IHbg" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" name="Auto::org.eclipse.jst.j2ee.J2eeMainActionSet"/> - <rootContext xmi:id="_REoUocRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.actionSet.openIconAssist" name="Auto::org.eclipse.mat.ui.actionSet.openIconAssist"/> - <rootContext xmi:id="_REoUosRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.actionSet.openExternalFile" name="Auto::org.eclipse.mat.ui.actionSet.openExternalFile"/> - <rootContext xmi:id="_REoUo8RFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.actionSet.openAcquireDialog" name="Auto::org.eclipse.mat.ui.actionSet.openAcquireDialog"/> - <rootContext xmi:id="_REoUpMRFEeOsdtank6IHbg" elementId="org.eclipse.php.debug.ui.actionSet" name="Auto::org.eclipse.php.debug.ui.actionSet"/> - <rootContext xmi:id="_REoUpcRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.text.php.actionSet.presentation" name="Auto::org.eclipse.php.ui.text.php.actionSet.presentation"/> - <rootContext xmi:id="_REoUpsRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.PHPActionSet" name="Auto::org.eclipse.php.ui.PHPActionSet"/> - <rootContext xmi:id="_REoUp8RFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.A_OpenActionSet" name="Auto::org.eclipse.php.ui.A_OpenActionSet"/> - <rootContext xmi:id="_REoUqMRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.SearchActionSet" name="Auto::org.eclipse.php.ui.SearchActionSet"/> - <rootContext xmi:id="_REoUqcRFEeOsdtank6IHbg" elementId="org.eclipse.pdt.ui.RefactoringActionSet" name="Auto::org.eclipse.pdt.ui.RefactoringActionSet"/> - <rootContext xmi:id="_REoUqsRFEeOsdtank6IHbg" elementId="org.eclipse.pdt.ui.SourceActionsSet" name="Auto::org.eclipse.pdt.ui.SourceActionsSet"/> - <rootContext xmi:id="_REoUq8RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.debug.ui.debugActionSet" name="Auto::org.eclipse.ptp.debug.ui.debugActionSet"/> - <rootContext xmi:id="_REoUrMRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rdt.ui.SearchActionSet" name="Auto::org.eclipse.ptp.rdt.ui.SearchActionSet"/> - <rootContext xmi:id="_REoUrcRFEeOsdtank6IHbg" elementId="org.eclipse.rse.core.search.searchActionSet" name="Auto::org.eclipse.rse.core.search.searchActionSet"/> - <rootContext xmi:id="_REoUrsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.revision.graph.action.shortcuts" name="Auto::org.eclipse.team.svn.revision.graph.action.shortcuts"/> - <rootContext xmi:id="_REoUr8RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.action.shortcuts" name="Auto::org.eclipse.team.svn.ui.action.shortcuts"/> - <rootContext xmi:id="_REoUsMRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.ui.actionset" name="Auto::org.eclipse.wb.core.ui.actionset"/> - <rootContext xmi:id="_REoUscRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/> - <rootContext xmi:id="_REoUssRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/> - <rootContext xmi:id="_REoUs8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/> - <rootContext xmi:id="_REoUtMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/> - <rootContext xmi:id="_REoUtcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/> - <rootContext xmi:id="_REoUtsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/> - <rootContext xmi:id="_REoUt8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/> - <rootContext xmi:id="_REoUuMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/> - <rootContext xmi:id="_REoUucRFEeOsdtank6IHbg" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/> - <rootContext xmi:id="_REo7sMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.ws.explorer.explorer" name="Auto::org.eclipse.wst.ws.explorer.explorer"/> - <rootContext xmi:id="_REo7scRFEeOsdtank6IHbg" elementId="com_sysdeo_eclipse_tomcat_actionSet" name="Auto::com_sysdeo_eclipse_tomcat_actionSet"/> - <rootContext xmi:id="_REo7ssRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/> - <rootContext xmi:id="_REo7s8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/> - <rootContext xmi:id="_REo7tMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective" name="Auto::org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective"/> - <descriptors xmi:id="_REo7tcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.compatibility.editor" allowMultiple="true" category="org.eclipse.e4.primaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor"> + <rootContext xmi:id="_JWtzIsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/> + <rootContext xmi:id="_JWtzI8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/> + <rootContext xmi:id="_JWtzJMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.wsdl.ui.editor.designView" name="WSDL Editor Design View" description="WSDL Editor Design View"/> + <rootContext xmi:id="_JWtzJcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/> + <rootContext xmi:id="_JWtzJsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/> + <rootContext xmi:id="_JWtzJ8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.wsdl.ui.editor.sourceView" name="WSDL Editor Source View" description="WSDL Editor Source View"/> + <rootContext xmi:id="_JWtzKMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/> + <rootContext xmi:id="_JWtzKcW4EeORw5cz-AoFKA" elementId="org.eclipse.tm.terminal.TerminalContext" name="Terminal widget context" description="Override ALT+x menu access keys"/> + <rootContext xmi:id="_JWtzKsW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.ant.ui.actions.ManageBreakpointRulerAction"/> + <rootContext xmi:id="_JWtzK8W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.debug.internal.ui.script.editor.DebugJsEditor.ManageBreakpointRulerAction" name="Auto::org.eclipse.birt.report.debug.internal.ui.script.editor.DebugJsEditor.ManageBreakpointRulerAction"/> + <rootContext xmi:id="_JWtzLMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.editor.script.DecoratedScriptEditor.ManageBreakpointRulerAction" name="Auto::org.eclipse.birt.report.designer.ui.editor.script.DecoratedScriptEditor.ManageBreakpointRulerAction"/> + <rootContext xmi:id="_JWtzLcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction" name="Auto::org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction"/> + <rootContext xmi:id="_JWtzLsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.texteditor.BookmarkRulerAction" name="Auto::org.eclipse.ui.texteditor.BookmarkRulerAction"/> + <rootContext xmi:id="_JWtzL8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction" name="Auto::org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction"/> + <rootContext xmi:id="_JWtzMMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction"/> + <rootContext xmi:id="_JWtzMcW4EeORw5cz-AoFKA" elementId="org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" name="Auto::org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor"/> + <rootContext xmi:id="_JWtzMsW4EeORw5cz-AoFKA" elementId="org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" name="Auto::org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor"/> + <rootContext xmi:id="_JWtzM8W4EeORw5cz-AoFKA" elementId="org.eclipse.emf.mapping.action.RemoveMappingActionID" name="Auto::org.eclipse.emf.mapping.action.RemoveMappingActionID"/> + <rootContext xmi:id="_JWtzNMW4EeORw5cz-AoFKA" elementId="org.eclipse.emf.mapping.action.TypeMatchMappingActionID" name="Auto::org.eclipse.emf.mapping.action.TypeMatchMappingActionID"/> + <rootContext xmi:id="_JWtzNcW4EeORw5cz-AoFKA" elementId="org.eclipse.emf.mapping.action.NameMatchMappingActionID" name="Auto::org.eclipse.emf.mapping.action.NameMatchMappingActionID"/> + <rootContext xmi:id="_JWuaMMW4EeORw5cz-AoFKA" elementId="org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" name="Auto::org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID"/> + <rootContext xmi:id="_JWuaMcW4EeORw5cz-AoFKA" elementId="org.eclipse.emf.mapping.action.CreateMappingActionID" name="Auto::org.eclipse.emf.mapping.action.CreateMappingActionID"/> + <rootContext xmi:id="_JWuaMsW4EeORw5cz-AoFKA" elementId="org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" name="Auto::org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID"/> + <rootContext xmi:id="_JWuaM8W4EeORw5cz-AoFKA" elementId="org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" name="Auto::org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID"/> + <rootContext xmi:id="_JWuaNMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.SnippetExecute" name="Auto::org.eclipse.jdt.debug.ui.SnippetExecute"/> + <rootContext xmi:id="_JWuaNcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.SnippetDisplay" name="Auto::org.eclipse.jdt.debug.ui.SnippetDisplay"/> + <rootContext xmi:id="_JWuaNsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.SnippetInspect" name="Auto::org.eclipse.jdt.debug.ui.SnippetInspect"/> + <rootContext xmi:id="_JWuaN8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction"/> + <rootContext xmi:id="_JWuaOMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction"/> + <rootContext xmi:id="_JWuaOcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/> + <rootContext xmi:id="_JWuaOsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction"/> + <rootContext xmi:id="_JWuaO8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.texteditor.SelectRulerAction" name="Auto::org.eclipse.ui.texteditor.SelectRulerAction"/> + <rootContext xmi:id="_JWuaPMW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.jdt.downloadSourcesAction" name="Auto::org.eclipse.m2e.jdt.downloadSourcesAction"/> + <rootContext xmi:id="_JWuaPcW4EeORw5cz-AoFKA" elementId="org.eclipse.php.internal.ui.editor.PhpSelectRulerAction" name="Auto::org.eclipse.php.internal.ui.editor.PhpSelectRulerAction"/> + <rootContext xmi:id="_JWuaPsW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rdt.ui.editors.RemoteCEditor.RulerToggleBreakpointAction" name="Auto::org.eclipse.ptp.rdt.ui.editors.RemoteCEditor.RulerToggleBreakpointAction"/> + <rootContext xmi:id="_JWuaP8W4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.editor.actions.SwitchAction" name="Auto::org.eclipse.wb.core.editor.actions.SwitchAction"/> + <rootContext xmi:id="_JWuaQMW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" name="Auto::org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction"/> + <rootContext xmi:id="_JWuaQcW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" name="Auto::org.eclipse.wb.core.xml.editor.actions.SwitchAction"/> + <rootContext xmi:id="_JWuaQsW4EeORw5cz-AoFKA" elementId="StructureSelectEnclosing" name="Auto::StructureSelectEnclosing"/> + <rootContext xmi:id="_JWuaQ8W4EeORw5cz-AoFKA" elementId="StructureSelectNext" name="Auto::StructureSelectNext"/> + <rootContext xmi:id="_JWvBQMW4EeORw5cz-AoFKA" elementId="StructureSelectPrevious" name="Auto::StructureSelectPrevious"/> + <rootContext xmi:id="_JWvBQcW4EeORw5cz-AoFKA" elementId="StructureSelectHistory" name="Auto::StructureSelectHistory"/> + <rootContext xmi:id="_JWvBQsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" name="Auto::org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint"/> + <rootContext xmi:id="_JWvBQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction"/> + <rootContext xmi:id="_JWvBRMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction"/> + <rootContext xmi:id="_JWvBRcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/> + <rootContext xmi:id="_JWvBRsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction"/> + <rootContext xmi:id="_JWvBR8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" name="Auto::org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate"/> + <rootContext xmi:id="_JWvBSMW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/> + <rootContext xmi:id="_JWvBScW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/> + <rootContext xmi:id="_JWvBSsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/> + <rootContext xmi:id="_JWvBS8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/> + <rootContext xmi:id="_JWvBTMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/> + <rootContext xmi:id="_JWvBTcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/> + <rootContext xmi:id="_JWvBTsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/> + <rootContext xmi:id="_JWvBT8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/> + <rootContext xmi:id="_JWvBUMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/> + <rootContext xmi:id="_JWvBUcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/> + <rootContext xmi:id="_JWvBUsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/> + <rootContext xmi:id="_JWvBU8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/> + <rootContext xmi:id="_JWvoUMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/> + <rootContext xmi:id="_JWvoUcW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/> + <rootContext xmi:id="_JWvoUsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/> + <rootContext xmi:id="_JWvoU8W4EeORw5cz-AoFKA" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/> + <rootContext xmi:id="_JWvoVMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.CVSActionSet" name="Auto::org.eclipse.team.cvs.ui.CVSActionSet"/> + <rootContext xmi:id="_JWvoVcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/> + <rootContext xmi:id="_JWvoVsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/> + <rootContext xmi:id="_JWvoV8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/> + <rootContext xmi:id="_JWvoWMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/> + <rootContext xmi:id="_JWvoWcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/> + <rootContext xmi:id="_JWvoWsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/> + <rootContext xmi:id="_JWvoW8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/> + <rootContext xmi:id="_JWvoXMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/> + <rootContext xmi:id="_JWvoXcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/> + <rootContext xmi:id="_JWvoXsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/> + <rootContext xmi:id="_JWvoX8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/> + <rootContext xmi:id="_JWvoYMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.debug.ui.DeubgScript" name="Auto::org.eclipse.birt.report.debug.ui.DeubgScript"/> + <rootContext xmi:id="_JWvoYcW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.publishActionSet" name="Auto::org.eclipse.birt.report.designer.ui.publishActionSet"/> + <rootContext xmi:id="_JWvoYsW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.previewActionSet" name="Auto::org.eclipse.birt.report.designer.ui.previewActionSet"/> + <rootContext xmi:id="_JWwPYMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.viewDocumentActionSet" name="Auto::org.eclipse.birt.report.designer.ui.viewDocumentActionSet"/> + <rootContext xmi:id="_JWwPYcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.debugActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugActionSet"/> + <rootContext xmi:id="_JWwPYsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.reverseDebuggingActionSet" name="Auto::org.eclipse.cdt.debug.ui.reverseDebuggingActionSet"/> + <rootContext xmi:id="_JWwPY8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.tracepointActionSet" name="Auto::org.eclipse.cdt.debug.ui.tracepointActionSet"/> + <rootContext xmi:id="_JWwPZMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.debugViewLayoutActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugViewLayoutActionSet"/> + <rootContext xmi:id="_JWwPZcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.updateModes" name="Auto::org.eclipse.cdt.dsf.debug.ui.updateModes"/> + <rootContext xmi:id="_JWwPZsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.updateActionSet" name="Auto::org.eclipse.cdt.make.ui.updateActionSet"/> + <rootContext xmi:id="_JWwPZ8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.makeTargetActionSet" name="Auto::org.eclipse.cdt.make.ui.makeTargetActionSet"/> + <rootContext xmi:id="_JWwPaMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.CodingActionSet" name="Auto::org.eclipse.cdt.ui.CodingActionSet"/> + <rootContext xmi:id="_JWwPacW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.SearchActionSet" name="Auto::org.eclipse.cdt.ui.SearchActionSet"/> + <rootContext xmi:id="_JWwPasW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.NavigationActionSet" name="Auto::org.eclipse.cdt.ui.NavigationActionSet"/> + <rootContext xmi:id="_JWwPa8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.OpenActionSet" name="Auto::org.eclipse.cdt.ui.OpenActionSet"/> + <rootContext xmi:id="_JWwPbMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.buildConfigActionSet" name="Auto::org.eclipse.cdt.ui.buildConfigActionSet"/> + <rootContext xmi:id="_JWwPbcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.CElementCreationActionSet" name="Auto::org.eclipse.cdt.ui.CElementCreationActionSet"/> + <rootContext xmi:id="_JWwPbsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.text.c.actionSet.presentation" name="Auto::org.eclipse.cdt.ui.text.c.actionSet.presentation"/> + <rootContext xmi:id="_JWwPb8W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.actionSet" name="Auto::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet"/> + <rootContext xmi:id="_JWwPcMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.ScriptDebugActionSet" name="Auto::org.eclipse.dltk.debug.ui.ScriptDebugActionSet"/> + <rootContext xmi:id="_JWwPccW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.testing.testingActionSet" name="Auto::org.eclipse.dltk.testing.testingActionSet"/> + <rootContext xmi:id="_JWw2cMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.ScriptCodingActionSet" name="Auto::org.eclipse.dltk.ui.ScriptCodingActionSet"/> + <rootContext xmi:id="_JWw2ccW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.A_OpenActionSet" name="Auto::org.eclipse.dltk.ui.A_OpenActionSet"/> + <rootContext xmi:id="_JWw2csW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.text.actionSet.presentation" name="Auto::org.eclipse.dltk.ui.text.actionSet.presentation"/> + <rootContext xmi:id="_JWw2c8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.SearchActionSet" name="Auto::org.eclipse.dltk.ui.SearchActionSet"/> + <rootContext xmi:id="_JWw2dMW4EeORw5cz-AoFKA" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" name="Auto::org.eclipse.jst.j2ee.J2eeMainActionSet"/> + <rootContext xmi:id="_JWw2dcW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.actionSet.openIconAssist" name="Auto::org.eclipse.mat.ui.actionSet.openIconAssist"/> + <rootContext xmi:id="_JWw2dsW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.actionSet.openExternalFile" name="Auto::org.eclipse.mat.ui.actionSet.openExternalFile"/> + <rootContext xmi:id="_JWw2d8W4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.actionSet.openAcquireDialog" name="Auto::org.eclipse.mat.ui.actionSet.openAcquireDialog"/> + <rootContext xmi:id="_JWw2eMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.debug.ui.actionSet" name="Auto::org.eclipse.php.debug.ui.actionSet"/> + <rootContext xmi:id="_JWw2ecW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.text.php.actionSet.presentation" name="Auto::org.eclipse.php.ui.text.php.actionSet.presentation"/> + <rootContext xmi:id="_JWw2esW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.PHPActionSet" name="Auto::org.eclipse.php.ui.PHPActionSet"/> + <rootContext xmi:id="_JWw2e8W4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.A_OpenActionSet" name="Auto::org.eclipse.php.ui.A_OpenActionSet"/> + <rootContext xmi:id="_JWw2fMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.SearchActionSet" name="Auto::org.eclipse.php.ui.SearchActionSet"/> + <rootContext xmi:id="_JWw2fcW4EeORw5cz-AoFKA" elementId="org.eclipse.pdt.ui.RefactoringActionSet" name="Auto::org.eclipse.pdt.ui.RefactoringActionSet"/> + <rootContext xmi:id="_JWw2fsW4EeORw5cz-AoFKA" elementId="org.eclipse.pdt.ui.SourceActionsSet" name="Auto::org.eclipse.pdt.ui.SourceActionsSet"/> + <rootContext xmi:id="_JWw2f8W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.debug.ui.debugActionSet" name="Auto::org.eclipse.ptp.debug.ui.debugActionSet"/> + <rootContext xmi:id="_JWw2gMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rdt.ui.SearchActionSet" name="Auto::org.eclipse.ptp.rdt.ui.SearchActionSet"/> + <rootContext xmi:id="_JWw2gcW4EeORw5cz-AoFKA" elementId="org.eclipse.rse.core.search.searchActionSet" name="Auto::org.eclipse.rse.core.search.searchActionSet"/> + <rootContext xmi:id="_JWw2gsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.revision.graph.action.shortcuts" name="Auto::org.eclipse.team.svn.revision.graph.action.shortcuts"/> + <rootContext xmi:id="_JWxdgMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.action.shortcuts" name="Auto::org.eclipse.team.svn.ui.action.shortcuts"/> + <rootContext xmi:id="_JWxdgcW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.ui.actionset" name="Auto::org.eclipse.wb.core.ui.actionset"/> + <rootContext xmi:id="_JWxdgsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/> + <rootContext xmi:id="_JWxdg8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/> + <rootContext xmi:id="_JWxdhMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/> + <rootContext xmi:id="_JWxdhcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/> + <rootContext xmi:id="_JWxdhsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/> + <rootContext xmi:id="_JWxdh8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/> + <rootContext xmi:id="_JWxdiMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/> + <rootContext xmi:id="_JWxdicW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/> + <rootContext xmi:id="_JWxdisW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/> + <rootContext xmi:id="_JWxdi8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.ws.explorer.explorer" name="Auto::org.eclipse.wst.ws.explorer.explorer"/> + <rootContext xmi:id="_JWxdjMW4EeORw5cz-AoFKA" elementId="com_sysdeo_eclipse_tomcat_actionSet" name="Auto::com_sysdeo_eclipse_tomcat_actionSet"/> + <rootContext xmi:id="_JWxdjcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/> + <rootContext xmi:id="_JWxdjsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/> + <rootContext xmi:id="_JWxdj8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective" name="Auto::org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective"/> + <descriptors xmi:id="_JWxdkMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.compatibility.editor" allowMultiple="true" category="org.eclipse.e4.primaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor"> <tags>Editor</tags> </descriptors> - <descriptors xmi:id="_REo7tsRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.views.AntView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWxdkcW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.views.AntView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Ant</tags> </descriptors> - <descriptors xmi:id="_REo7t8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.DebugView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWxdksW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.DebugView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REo7uMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.BreakpointView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEkMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.BreakpointView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REo7ucRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.VariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEkcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.VariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REo7usRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ExpressionView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEksW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ExpressionView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REo7u8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.RegisterView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEk8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.RegisterView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REo7vMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.ModuleView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyElMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.ModuleView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REo7vcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.MemoryView" label="Memory" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/memory_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyElcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.MemoryView" label="Memory" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/memory_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REo7vsRFEeOsdtank6IHbg" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyElsW4EeORw5cz-AoFKA" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Help</tags> </descriptors> - <descriptors xmi:id="_REo7v8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEl8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REo7wMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.ResultView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEmMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.ResultView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java</tags> </descriptors> - <descriptors xmi:id="_REo7wcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.PackageExplorer" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEmcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackageExplorer" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java</tags> </descriptors> - <descriptors xmi:id="_REo7wsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEmsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java</tags> </descriptors> - <descriptors xmi:id="_REo7w8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.ProjectsView" label="Projects" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/projects.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEm8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.ProjectsView" label="Projects" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/projects.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java Browsing</tags> </descriptors> - <descriptors xmi:id="_REo7xMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.PackagesView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEnMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.PackagesView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java Browsing</tags> </descriptors> - <descriptors xmi:id="_REo7xcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.TypesView" label="Types" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/types.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEncW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.TypesView" label="Types" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/types.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java Browsing</tags> </descriptors> - <descriptors xmi:id="_REo7xsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.MembersView" label="Members" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/members.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEnsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.MembersView" label="Members" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/members.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java Browsing</tags> </descriptors> - <descriptors xmi:id="_REo7x8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/call_hierarchy.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEn8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/call_hierarchy.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java</tags> </descriptors> - <descriptors xmi:id="_REpiwMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.texteditor.TemplatesView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEoMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.texteditor.TemplatesView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpiwcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEocW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java</tags> </descriptors> - <descriptors xmi:id="_REpiwsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavadocView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyEosW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavadocView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Java</tags> </descriptors> - <descriptors xmi:id="_REpiw8RFEeOsdtank6IHbg" elementId="org.eclipse.pde.api.tools.ui.views.apitooling.views.apitoolingview" label="API Tools" iconURI="platform:/plugin/org.eclipse.pde.api.tools.ui/icons/full/obj16/api_tools.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyroMW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.api.tools.ui.views.apitooling.views.apitoolingview" label="API Tools" iconURI="platform:/plugin/org.eclipse.pde.api.tools.ui/icons/full/obj16/api_tools.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:API Tools</tags> </descriptors> - <descriptors xmi:id="_REpixMRFEeOsdtank6IHbg" elementId="org.eclipse.pde.runtime.RegistryBrowser" label="Plug-in Registry" iconURI="platform:/plugin/org.eclipse.pde.runtime/icons/eview16/registry.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrocW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.runtime.RegistryBrowser" label="Plug-in Registry" iconURI="platform:/plugin/org.eclipse.pde.runtime/icons/eview16/registry.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Plug-in Development</tags> </descriptors> - <descriptors xmi:id="_REpixcRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.PluginsView" label="Plug-ins" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/eview16/plugin_depend.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrosW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.PluginsView" label="Plug-ins" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/eview16/plugin_depend.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Plug-in Development</tags> </descriptors> - <descriptors xmi:id="_REpixsRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.DependenciesView" label="Plug-in Dependencies" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/req_plugins_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyro8W4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.DependenciesView" label="Plug-in Dependencies" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/req_plugins_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Plug-in Development</tags> </descriptors> - <descriptors xmi:id="_REpix8RFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.TargetPlatformState" label="Target Platform State" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/target_profile_xml_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrpMW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.TargetPlatformState" label="Target Platform State" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/target_profile_xml_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Plug-in Development</tags> </descriptors> - <descriptors xmi:id="_REpiyMRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.ImageBrowserView" label="Plug-in Image Browser" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/psearch_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrpcW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.ImageBrowserView" label="Plug-in Image Browser" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/psearch_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Plug-in Development</tags> </descriptors> - <descriptors xmi:id="_REpiycRFEeOsdtank6IHbg" elementId="org.eclipse.search.SearchResultView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrpsW4EeORw5cz-AoFKA" elementId="org.eclipse.search.SearchResultView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpiysRFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.views.SearchView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrp8W4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.views.SearchView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpiy8RFEeOsdtank6IHbg" elementId="org.eclipse.team.ccvs.ui.RepositoriesView" label="CVS Repositories" iconURI="platform:/plugin/org.eclipse.team.cvs.ui/icons/full/eview16/repo_rep.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrqMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.ccvs.ui.RepositoriesView" label="CVS Repositories" iconURI="platform:/plugin/org.eclipse.team.cvs.ui/icons/full/eview16/repo_rep.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:CVS</tags> </descriptors> - <descriptors xmi:id="_REpizMRFEeOsdtank6IHbg" elementId="org.eclipse.team.ccvs.ui.EditorsView" label="CVS Editors" iconURI="platform:/plugin/org.eclipse.team.cvs.ui/icons/full/eview16/rep_editors_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrqcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.ccvs.ui.EditorsView" label="CVS Editors" iconURI="platform:/plugin/org.eclipse.team.cvs.ui/icons/full/eview16/rep_editors_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:CVS</tags> </descriptors> - <descriptors xmi:id="_REpizcRFEeOsdtank6IHbg" elementId="org.eclipse.team.sync.views.SynchronizeView" label="Synchronize" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/synch_synch.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrqsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.sync.views.SynchronizeView" label="Synchronize" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/synch_synch.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Team</tags> </descriptors> - <descriptors xmi:id="_REpizsRFEeOsdtank6IHbg" elementId="org.eclipse.team.ui.GenericHistoryView" label="History" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/history_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrq8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.ui.GenericHistoryView" label="History" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/history_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Team</tags> </descriptors> - <descriptors xmi:id="_REpiz8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.internal.introview" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrrMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.internal.introview" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpi0MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.browser.view" label="Internal Web Browser" iconURI="platform:/plugin/org.eclipse.ui.browser/icons/obj16/internal_browser.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrrcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.browser.view" label="Internal Web Browser" iconURI="platform:/plugin/org.eclipse.ui.browser/icons/obj16/internal_browser.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpi0cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrrsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Help</tags> </descriptors> - <descriptors xmi:id="_REpi0sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.console.ConsoleView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrr8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.console.ConsoleView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpi08RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProgressView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrsMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProgressView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpi1MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.gif" category="org.eclipse.e4.primaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWyrscW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.gif" category="org.eclipse.e4.primaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpi1cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.BookmarkView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSsMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.BookmarkView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpi1sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.TaskList" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSscW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.TaskList" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpi18RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ProblemView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSssW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ProblemView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REpi2MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.AllMarkersView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSs8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.AllMarkersView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REqJ0MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigator.ProjectExplorer" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.gif" category="org.eclipse.e4.primaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzStMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigator.ProjectExplorer" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.gif" category="org.eclipse.e4.primaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REqJ0cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.PropertySheet" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzStcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.PropertySheet" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REqJ0sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.ContentOutline" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.gif" category="org.eclipse.e4.secondaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzStsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.ContentOutline" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.gif" category="org.eclipse.e4.secondaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REqJ08RFEeOsdtank6IHbg" elementId="org.eclipse.pde.runtime.LogView" label="Error Log" iconURI="platform:/plugin/org.eclipse.ui.views.log/icons/eview16/error_log.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSt8W4EeORw5cz-AoFKA" elementId="org.eclipse.pde.runtime.LogView" label="Error Log" iconURI="platform:/plugin/org.eclipse.ui.views.log/icons/eview16/error_log.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REqJ1MRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.lib.explorer.view" label="Resource Explorer" iconURI="platform:/plugin/org.eclipse.birt.report.designer.ui.lib.explorer/icons/full/eview16/library_explorer.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSuMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.lib.explorer.view" label="Resource Explorer" iconURI="platform:/plugin/org.eclipse.birt.report.designer.ui.lib.explorer/icons/full/eview16/library_explorer.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Report Design</tags> </descriptors> - <descriptors xmi:id="_REqJ1cRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.views.data.DataView" label="Data Explorer" iconURI="platform:/plugin/org.eclipse.birt.report.designer.ui/icons/eview16/data_explorer_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSucW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.views.data.DataView" label="Data Explorer" iconURI="platform:/plugin/org.eclipse.birt.report.designer.ui/icons/eview16/data_explorer_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Report Design</tags> </descriptors> - <descriptors xmi:id="_REqJ1sRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.attributes.AttributeView" label="Property Editor" iconURI="platform:/plugin/org.eclipse.birt.report.designer.ui/icons/eview16/quick_edit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSusW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.attributes.AttributeView" label="Property Editor" iconURI="platform:/plugin/org.eclipse.birt.report.designer.ui/icons/eview16/quick_edit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Report Design</tags> </descriptors> - <descriptors xmi:id="_REqJ18RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.codan.internal.ui.views.ProblemDetails" label="Problem Details" iconURI="platform:/plugin/org.eclipse.cdt.codan.ui/icons/edit_bug.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSu8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.codan.internal.ui.views.ProblemDetails" label="Problem Details" iconURI="platform:/plugin/org.eclipse.cdt.codan.ui/icons/edit_bug.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:&C/C++</tags> </descriptors> - <descriptors xmi:id="_REqJ2MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.executablesView" label="Executables" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/obj16/exec_view_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSvMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.executablesView" label="Executables" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/obj16/exec_view_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REqJ2cRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.SignalsView" label="Signals" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/view16/signals_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSvcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.SignalsView" label="Signals" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/view16/signals_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REqJ2sRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser" label="Memory Browser" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui.memory.memorybrowser/icons/memorybrowser_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSvsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser" label="Memory Browser" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui.memory.memorybrowser/icons/memorybrowser_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REqJ28RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" label="Trace Control" iconURI="platform:/plugin/org.eclipse.cdt.dsf.gdb.ui/icons/full/view16/tracecontrol_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSv8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" label="Trace Control" iconURI="platform:/plugin/org.eclipse.cdt.dsf.gdb.ui/icons/full/view16/tracecontrol_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REqJ3MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.gdb.ui.osresources.view" label="OS Resources" iconURI="platform:/plugin/org.eclipse.cdt.dsf.gdb.ui/icons/full/view16/osresources_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSwMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.gdb.ui.osresources.view" label="OS Resources" iconURI="platform:/plugin/org.eclipse.cdt.dsf.gdb.ui/icons/full/view16/osresources_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REqJ3cRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" label="Disassembly" iconURI="platform:/plugin/org.eclipse.cdt.dsf.ui/icons/disassembly.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWzSwcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" label="Disassembly" iconURI="platform:/plugin/org.eclipse.cdt.dsf.ui/icons/disassembly.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REqJ3sRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.views.MakeView" label="Make Target" iconURI="platform:/plugin/org.eclipse.cdt.make.ui/icons/view16/make_target.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5wMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.views.MakeView" label="Make Target" iconURI="platform:/plugin/org.eclipse.cdt.make.ui/icons/view16/make_target.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Make</tags> </descriptors> - <descriptors xmi:id="_REqJ38RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.testsrunner.resultsview" label="C/C++ Unit" iconURI="platform:/plugin/org.eclipse.cdt.testsrunner/icons/eview16/cppunit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5wcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.testsrunner.resultsview" label="C/C++ Unit" iconURI="platform:/plugin/org.eclipse.cdt.testsrunner/icons/eview16/cppunit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:&C/C++</tags> </descriptors> - <descriptors xmi:id="_REqJ4MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.CView" label="C/C++ Projects" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/cview.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5wsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.CView" label="C/C++ Projects" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/cview.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:&C/C++</tags> </descriptors> - <descriptors xmi:id="_REqJ4cRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.IndexView" label="C/C++ Index" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/types.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5w8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.IndexView" label="C/C++ Index" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/types.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:&C/C++</tags> </descriptors> - <descriptors xmi:id="_REqJ4sRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.includeBrowser" label="Include Browser" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/includeBrowser.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5xMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.includeBrowser" label="Include Browser" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/includeBrowser.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:&C/C++</tags> </descriptors> - <descriptors xmi:id="_REqJ48RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.callHierarchy" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/call_hierarchy.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5xcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.callHierarchy" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/call_hierarchy.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:&C/C++</tags> </descriptors> - <descriptors xmi:id="_REqJ5MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.typeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5xsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.typeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:&C/C++</tags> </descriptors> - <descriptors xmi:id="_REqJ5cRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.connectivity.DataSourceExplorerNavigator" label="Data Source Explorer" iconURI="platform:/plugin/org.eclipse.datatools.connectivity.ui.dse/icons/full/cview16/enterprise_explorer.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5x8W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.connectivity.DataSourceExplorerNavigator" label="Data Source Explorer" iconURI="platform:/plugin/org.eclipse.datatools.connectivity.ui.dse/icons/full/cview16/enterprise_explorer.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Data Management</tags> </descriptors> - <descriptors xmi:id="_REqJ5sRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.plan.planView" label="Execution Plan" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.plan/icons/sqlplan.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5yMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.plan.planView" label="Execution Plan" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.plan/icons/sqlplan.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Data Management</tags> </descriptors> - <descriptors xmi:id="_REqJ58RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.result.resultView" label="SQL Results" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.result.ui/icons/sqlresult.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5ycW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.result.resultView" label="SQL Results" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.result.ui/icons/sqlresult.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Data Management</tags> </descriptors> - <descriptors xmi:id="_REqw4MRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.dbgpLogView" label="Script Debug Log" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5ysW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.dbgpLogView" label="Script Debug Log" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Dynamic Languages</tags> </descriptors> - <descriptors xmi:id="_REqw4cRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" label="Interactive Console" iconURI="platform:/plugin/org.eclipse.dltk.debug.ui/icons/full/eview16/debug_console.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5y8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" label="Interactive Console" iconURI="platform:/plugin/org.eclipse.dltk.debug.ui/icons/full/eview16/debug_console.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Dynamic Languages</tags> </descriptors> - <descriptors xmi:id="_REqw4sRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.testing.ResultView" label="Script Unit Test" iconURI="platform:/plugin/org.eclipse.dltk.testing/icons/full/eview16/testing.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5zMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.testing.ResultView" label="Script Unit Test" iconURI="platform:/plugin/org.eclipse.dltk.testing/icons/full/eview16/testing.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Dynamic Languages</tags> </descriptors> - <descriptors xmi:id="_REqw48RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.ScriptExplorer" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/package.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5zcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.ScriptExplorer" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/package.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Dynamic Languages</tags> </descriptors> - <descriptors xmi:id="_REqw5MRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/call_hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5zsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/call_hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Dynamic Languages</tags> </descriptors> - <descriptors xmi:id="_REqw5cRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz5z8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Dynamic Languages</tags> </descriptors> - <descriptors xmi:id="_REqw5sRFEeOsdtank6IHbg" elementId="org.eclipse.gef.ui.palette_view" label="Palette" iconURI="platform:/plugin/org.eclipse.gef/icons/palette_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz50MW4EeORw5cz-AoFKA" elementId="org.eclipse.gef.ui.palette_view" label="Palette" iconURI="platform:/plugin/org.eclipse.gef/icons/palette_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REqw58RFEeOsdtank6IHbg" elementId="org.eclipse.m2e.core.views.MavenRepositoryView" label="Maven Repositories" iconURI="platform:/plugin/org.eclipse.m2e.core.ui/icons/maven_indexes.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JWz50cW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.core.views.MavenRepositoryView" label="Maven Repositories" iconURI="platform:/plugin/org.eclipse.m2e.core.ui/icons/maven_indexes.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Maven</tags> </descriptors> - <descriptors xmi:id="_REqw6MRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.core.views.MavenBuild" label="Maven Workspace Build" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g0MW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.core.views.MavenBuild" label="Maven Workspace Build" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Maven</tags> </descriptors> - <descriptors xmi:id="_REqw6cRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.views.SnapshotHistoryView" label="Heap Dump History" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/heapdump_history.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g0cW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.views.SnapshotHistoryView" label="Heap Dump History" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/heapdump_history.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Memory Analyzer Views</tags> </descriptors> - <descriptors xmi:id="_REqw6sRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.views.SnapshotDetailsView" label="Heap Dump Details" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/heapdump_details.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g0sW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.views.SnapshotDetailsView" label="Heap Dump Details" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/heapdump_details.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Memory Analyzer Views</tags> </descriptors> - <descriptors xmi:id="_REqw68RFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.views.InspectorView" label="Inspector" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/inspector_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g08W4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.views.InspectorView" label="Inspector" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/inspector_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Memory Analyzer Views</tags> </descriptors> - <descriptors xmi:id="_REqw7MRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.views.TextEditorView" label="Notes" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/notepad.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g1MW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.views.TextEditorView" label="Notes" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/notepad.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Memory Analyzer Views</tags> </descriptors> - <descriptors xmi:id="_REqw7cRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.views.NavigatorView" label="Navigation History" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/navigator_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g1cW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.views.NavigatorView" label="Navigation History" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/navigator_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Memory Analyzer Views</tags> </descriptors> - <descriptors xmi:id="_REqw7sRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.views.CompareBasketView" label="Compare Basket" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/compare.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g1sW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.views.CompareBasketView" label="Compare Basket" iconURI="platform:/plugin/org.eclipse.mat.ui/icons/compare.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Memory Analyzer Views</tags> </descriptors> - <descriptors xmi:id="_REqw78RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.PHPStackView" label="Parameter Stack" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/phpfile.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g18W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.PHPStackView" label="Parameter Stack" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/phpfile.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:PHP Tools</tags> </descriptors> - <descriptors xmi:id="_REqw8MRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.PHPDebugOutput" label="Debug Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/debug_output.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g2MW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.PHPDebugOutput" label="Debug Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/debug_output.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:PHP Tools</tags> </descriptors> - <descriptors xmi:id="_REqw8cRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.PHPBrowserOutput" label="Browser Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/browser_output.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g2cW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.PHPBrowserOutput" label="Browser Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/browser_output.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:PHP Tools</tags> </descriptors> - <descriptors xmi:id="_REqw8sRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.explorer" label="PHP Explorer" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_explorer.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g2sW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.explorer" label="PHP Explorer" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_explorer.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:PHP Tools</tags> </descriptors> - <descriptors xmi:id="_REqw88RFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.functions" label="PHP Functions" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/phpfile.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g28W4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.functions" label="PHP Functions" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/phpfile.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:PHP Tools</tags> </descriptors> - <descriptors xmi:id="_REqw9MRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.projectOutline" label="PHP Project Outline" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_project_outline.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g3MW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.projectOutline" label="PHP Project Outline" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_project_outline.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:PHP Tools</tags> </descriptors> - <descriptors xmi:id="_REqw9cRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.debug.ui.views.SignalsView" label="Signals" iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/signals_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g3cW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.debug.ui.views.SignalsView" label="Signals" iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/signals_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_REqw9sRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.debug.ui.views.parallelDebugView" label="Parallel Debug" iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/parallel_debug.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g3sW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.debug.ui.views.parallelDebugView" label="Parallel Debug" iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/parallel_debug.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_REqw98RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.debug.ui.views.ArrayView" label="Arrays" iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/arrays_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g38W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.debug.ui.views.ArrayView" label="Arrays" iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/arrays_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_REqw-MRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.debug.ui.views.PVariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/variables_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g4MW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.debug.ui.views.PVariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/variables_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX8MRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.debug.ui.views.PLocationView" label="Parallel Debug Locations " iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/debug_locations_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW0g4cW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.debug.ui.views.PLocationView" label="Parallel Debug Locations " iconURI="platform:/plugin/org.eclipse.ptp.debug.ui/icons/view16/debug_locations_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX8cRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.mpi.analysis.view.MPIErrorView" label="MPI Barrier Errors" iconURI="platform:/plugin/org.eclipse.ptp.pldt.mpi.analysis/icons/barrier.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H4MW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.mpi.analysis.view.MPIErrorView" label="MPI Barrier Errors" iconURI="platform:/plugin/org.eclipse.ptp.pldt.mpi.analysis/icons/barrier.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX8sRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.mpi.analysis.view.MPIBarrierTableView" label="MPI Barriers" iconURI="platform:/plugin/org.eclipse.ptp.pldt.mpi.analysis/icons/barrier.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H4cW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.mpi.analysis.view.MPIBarrierTableView" label="MPI Barriers" iconURI="platform:/plugin/org.eclipse.ptp.pldt.mpi.analysis/icons/barrier.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX88RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.mpi.analysis.view.MPIBarrierMatchingSetTableView" label="MPI Barrier Matches" iconURI="platform:/plugin/org.eclipse.ptp.pldt.mpi.analysis/icons/barrier.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H4sW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.mpi.analysis.view.MPIBarrierMatchingSetTableView" label="MPI Barrier Matches" iconURI="platform:/plugin/org.eclipse.ptp.pldt.mpi.analysis/icons/barrier.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX9MRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.mpi.core.views.MPITableView" label="MPI Artifact View" iconURI="platform:/plugin/org.eclipse.ptp.pldt.mpi.core/icons/mpi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H48W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.mpi.core.views.MPITableView" label="MPI Artifact View" iconURI="platform:/plugin/org.eclipse.ptp.pldt.mpi.core/icons/mpi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX9cRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.openacc.views.OpenACCArtifactView" label="OpenACC Artifact View" iconURI="platform:/plugin/org.eclipse.ptp.pldt.openacc/icons/openacc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H5MW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.openacc.views.OpenACCArtifactView" label="OpenACC Artifact View" iconURI="platform:/plugin/org.eclipse.ptp.pldt.openacc/icons/openacc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX9sRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.openmp.core.views.OpenMPArtifactView" label="OpenMP Artifact View" iconURI="platform:/plugin/org.eclipse.ptp.pldt.openmp.core/icons/openMP.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H5cW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.openmp.core.views.OpenMPArtifactView" label="OpenMP Artifact View" iconURI="platform:/plugin/org.eclipse.ptp.pldt.openmp.core/icons/openMP.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX98RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.openmp.ui.pv.views.OpenMPProblemsView" label="OpenMP Problems" iconURI="platform:/plugin/org.eclipse.ptp.pldt.openmp.ui.pv/icons/openMPproblem.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H5sW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.openmp.ui.pv.views.OpenMPProblemsView" label="OpenMP Problems" iconURI="platform:/plugin/org.eclipse.ptp.pldt.openmp.ui.pv/icons/openMPproblem.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX-MRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.openshmem.views.openshmemArtifactView" label="OpenSHMEM Artifact View" iconURI="platform:/plugin/org.eclipse.ptp.pldt.openshmem/icons/openshmem.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H58W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.openshmem.views.openshmemArtifactView" label="OpenSHMEM Artifact View" iconURI="platform:/plugin/org.eclipse.ptp.pldt.openshmem/icons/openshmem.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErX-cRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rdt.sync.ui.SyncMergeFileTableViewer" label="Synchronized Merge View" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H6MW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rdt.sync.ui.SyncMergeFileTableViewer" label="Synchronized Merge View" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Development</tags> </descriptors> - <descriptors xmi:id="_RErX-sRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rdt.ui.includeBrowser" label="Remote Include Browser" iconURI="platform:/plugin/org.eclipse.ptp.rdt.ui/icons/view16/includeBrowser.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H6cW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rdt.ui.includeBrowser" label="Remote Include Browser" iconURI="platform:/plugin/org.eclipse.ptp.rdt.ui/icons/view16/includeBrowser.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Development</tags> </descriptors> - <descriptors xmi:id="_RErX-8RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rdt.ui.callHierarchy" label="Remote Call Hierarchy" iconURI="platform:/plugin/org.eclipse.ptp.rdt.ui/icons/view16/call_hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H6sW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rdt.ui.callHierarchy" label="Remote Call Hierarchy" iconURI="platform:/plugin/org.eclipse.ptp.rdt.ui/icons/view16/call_hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Development</tags> </descriptors> - <descriptors xmi:id="_RErX_MRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rdt.ui.typeHierarchy" label="Remote Type Hierarchy" iconURI="platform:/plugin/org.eclipse.ptp.rdt.ui/icons/view16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H68W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rdt.ui.typeHierarchy" label="Remote Type Hierarchy" iconURI="platform:/plugin/org.eclipse.ptp.rdt.ui/icons/view16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Development</tags> </descriptors> - <descriptors xmi:id="_RErX_cRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.remotetools.environment.ui.views.RemoteEnvironmentsView" label="Remote Environments" iconURI="platform:/plugin/org.eclipse.ptp.remotetools.environment.ui/icons/iprocess.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H7MW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.remotetools.environment.ui.views.RemoteEnvironmentsView" label="Remote Environments" iconURI="platform:/plugin/org.eclipse.ptp.remotetools.environment.ui/icons/iprocess.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Tools</tags> </descriptors> - <descriptors xmi:id="_RErX_sRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.ui.views.MonitorView" label="Monitors" iconURI="platform:/plugin/org.eclipse.ptp.rm.lml.monitor.ui/icons/eview16/monitor_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H7cW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.ui.views.MonitorView" label="Monitors" iconURI="platform:/plugin/org.eclipse.ptp.rm.lml.monitor.ui/icons/eview16/monitor_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Other</tags> </descriptors> - <descriptors xmi:id="_RErX_8RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.ui.SystemMonitorView" label="System Monitor" iconURI="platform:/plugin/org.eclipse.ptp.rm.lml.ui/icons/nodes_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H7sW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.ui.SystemMonitorView" label="System Monitor" iconURI="platform:/plugin/org.eclipse.ptp.rm.lml.ui/icons/nodes_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErYAMRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.ui.ActiveJobsView" label="Active Jobs" iconURI="platform:/plugin/org.eclipse.ptp.rm.lml.ui/icons/active_jobs_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H78W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.ui.ActiveJobsView" label="Active Jobs" iconURI="platform:/plugin/org.eclipse.ptp.rm.lml.ui/icons/active_jobs_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErYAcRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.ui.InactiveJobsView" label="Inactive Jobs" iconURI="platform:/plugin/org.eclipse.ptp.rm.lml.ui/icons/inactive_jobs_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H8MW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.ui.InactiveJobsView" label="Inactive Jobs" iconURI="platform:/plugin/org.eclipse.ptp.rm.lml.ui/icons/inactive_jobs_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErYAsRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.ui.InfoView" label="Messages" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1H8cW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.ui.InfoView" label="Messages" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Parallel Tools</tags> </descriptors> - <descriptors xmi:id="_RErYA8RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.services.ui.views.serviceConfigurationView" label="Service Configurations" iconURI="platform:/plugin/org.eclipse.ptp.services.ui/icons/etool16/service.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u8MW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.services.ui.views.serviceConfigurationView" label="Service Configurations" iconURI="platform:/plugin/org.eclipse.ptp.services.ui/icons/etool16/service.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Services</tags> </descriptors> - <descriptors xmi:id="_RErYBMRFEeOsdtank6IHbg" elementId="org.eclipse.rse.ui.view.systemView" label="Remote Systems" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/system_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u8cW4EeORw5cz-AoFKA" elementId="org.eclipse.rse.ui.view.systemView" label="Remote Systems" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/system_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Systems</tags> </descriptors> - <descriptors xmi:id="_RErYBcRFEeOsdtank6IHbg" elementId="org.eclipse.rse.ui.view.teamView" label="Team" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/team_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u8sW4EeORw5cz-AoFKA" elementId="org.eclipse.rse.ui.view.teamView" label="Team" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/team_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Systems</tags> </descriptors> - <descriptors xmi:id="_RErYBsRFEeOsdtank6IHbg" elementId="org.eclipse.rse.ui.view.systemTableView" label="Remote System Details" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/system_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u88W4EeORw5cz-AoFKA" elementId="org.eclipse.rse.ui.view.systemTableView" label="Remote System Details" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/system_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Systems</tags> </descriptors> - <descriptors xmi:id="_REr_AMRFEeOsdtank6IHbg" elementId="org.eclipse.rse.ui.view.SystemSearchView" label="Remote Search" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/obj16/system_search.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u9MW4EeORw5cz-AoFKA" elementId="org.eclipse.rse.ui.view.SystemSearchView" label="Remote Search" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/obj16/system_search.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Systems</tags> </descriptors> - <descriptors xmi:id="_REr_AcRFEeOsdtank6IHbg" elementId="org.eclipse.rse.ui.view.scratchpad.SystemScratchpadViewPart" label="Remote Scratchpad" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/view16/scratchpad_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u9cW4EeORw5cz-AoFKA" elementId="org.eclipse.rse.ui.view.scratchpad.SystemScratchpadViewPart" label="Remote Scratchpad" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/view16/scratchpad_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Systems</tags> </descriptors> - <descriptors xmi:id="_REr_AsRFEeOsdtank6IHbg" elementId="org.eclipse.rse.ui.view.monitorView" label="Remote Monitor" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/view16/system_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u9sW4EeORw5cz-AoFKA" elementId="org.eclipse.rse.ui.view.monitorView" label="Remote Monitor" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/view16/system_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Remote Systems</tags> </descriptors> - <descriptors xmi:id="_REr_A8RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.repository.RepositoriesView" label="SVN Repositories" iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/repositories.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u98W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.repository.RepositoriesView" label="SVN Repositories" iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/repositories.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:SVN</tags> </descriptors> - <descriptors xmi:id="_REr_BMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.properties.PropertiesView" label="SVN Properties" iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/propertiesedit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u-MW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.properties.PropertiesView" label="SVN Properties" iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/propertiesedit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:SVN</tags> </descriptors> - <descriptors xmi:id="_REr_BcRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.repository.browser.RepositoryBrowser" label="SVN Repository Browser " iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/repositories/browser.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u-cW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.repository.browser.RepositoryBrowser" label="SVN Repository Browser " iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/repositories/browser.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:SVN</tags> </descriptors> - <descriptors xmi:id="_REr_BsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.properties.RevPropertiesView" label="Revision Properties" iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/propertiesedit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u-sW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.properties.RevPropertiesView" label="Revision Properties" iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/propertiesedit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:SVN</tags> </descriptors> - <descriptors xmi:id="_REr_B8RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.lock.LocksView" label="SVN Locks" iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/locksview.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u-8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.lock.LocksView" label="SVN Locks" iconURI="platform:/plugin/org.eclipse.team.svn.ui/icons/views/locksview.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:SVN</tags> </descriptors> - <descriptors xmi:id="_REr_CMRFEeOsdtank6IHbg" elementId="org.eclipse.tm.terminal.view.TerminalView" label="Terminal" iconURI="platform:/plugin/org.eclipse.tm.terminal.view/icons/cview16/terminal_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u_MW4EeORw5cz-AoFKA" elementId="org.eclipse.tm.terminal.view.TerminalView" label="Terminal" iconURI="platform:/plugin/org.eclipse.tm.terminal.view/icons/cview16/terminal_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Terminal</tags> </descriptors> - <descriptors xmi:id="_REr_CcRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.StructureView" label="Structure" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/properties_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u_cW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.StructureView" label="Structure" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/properties_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:WindowBuilder</tags> </descriptors> - <descriptors xmi:id="_REr_CsRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.PaletteView" label="Palette" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/palette.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u_sW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.PaletteView" label="Palette" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/palette.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:WindowBuilder</tags> </descriptors> - <descriptors xmi:id="_REr_C8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets/icons/snippets_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1u_8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets/icons/snippets_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:General</tags> </descriptors> - <descriptors xmi:id="_REr_DMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.internet.monitor.view" label="TCP/IP Monitor" iconURI="platform:/plugin/org.eclipse.wst.internet.monitor.ui/icons/cview16/monitorView.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW1vAMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.internet.monitor.view" label="TCP/IP Monitor" iconURI="platform:/plugin/org.eclipse.wst.internet.monitor.ui/icons/cview16/monitorView.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Debug</tags> </descriptors> - <descriptors xmi:id="_REr_DcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/package.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WAMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/package.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:JavaScript</tags> </descriptors> - <descriptors xmi:id="_REr_DsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" label="Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WAcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" label="Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:JavaScript</tags> </descriptors> - <descriptors xmi:id="_REr_D8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/call_hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WAsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/call_hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:JavaScript</tags> </descriptors> - <descriptors xmi:id="_REr_EMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/source.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WA8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/source.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:JavaScript</tags> </descriptors> - <descriptors xmi:id="_REr_EcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.JavadocView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/javadoc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WBMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.JavadocView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/javadoc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:JavaScript</tags> </descriptors> - <descriptors xmi:id="_REr_EsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.ui.ServersView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WBcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.ui.ServersView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Server</tags> </descriptors> - <descriptors xmi:id="_REr_E8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.ui.views.annotations.XMLAnnotationsView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/obj16/comment_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WBsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.ui.views.annotations.XMLAnnotationsView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/obj16/comment_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:XML</tags> </descriptors> - <descriptors xmi:id="_REr_FMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.ui.contentmodel.view" label="Content Model" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/view16/hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WB8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.ui.contentmodel.view" label="Content Model" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/view16/hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:XML</tags> </descriptors> - <descriptors xmi:id="_REr_FcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.views.XPathView" label="XPath" iconURI="platform:/plugin/org.eclipse.wst.xml.xpath.ui/icons/full/xpath.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WCMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.views.XPathView" label="XPath" iconURI="platform:/plugin/org.eclipse.wst.xml.xpath.ui/icons/full/xpath.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:XML</tags> </descriptors> - <descriptors xmi:id="_REr_FsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsl.jaxp.debug.ui.resultview" label="Result" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WCcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsl.jaxp.debug.ui.resultview" label="Result" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:XML</tags> </descriptors> - <descriptors xmi:id="_REsmEMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsl.ui.view.outline" label="Stylesheet Model" iconURI="platform:/plugin/org.eclipse.wst.xsl.ui/icons/full/hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WCsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsl.ui.view.outline" label="Stylesheet Model" iconURI="platform:/plugin/org.eclipse.wst.xsl.ui/icons/full/hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:XML</tags> </descriptors> - <descriptors xmi:id="_REsmEcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WC8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Git</tags> </descriptors> - <descriptors xmi:id="_REsmEsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.StagingView" label="Git Staging" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/staging.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WDMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.StagingView" label="Git Staging" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/staging.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Git</tags> </descriptors> - <descriptors xmi:id="_REsmE8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.InteractiveRebaseView" label="Git Interactive Rebase" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/rebase_interactive.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WDcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.InteractiveRebaseView" label="Git Interactive Rebase" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/rebase_interactive.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Git</tags> </descriptors> - <descriptors xmi:id="_REsmFMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.CompareTreeView" label="Git Tree Compare" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/obj16/gitrepository.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WDsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.CompareTreeView" label="Git Tree Compare" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/obj16/gitrepository.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Git</tags> </descriptors> - <descriptors xmi:id="_REsmFcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.ReflogView" label="Git Reflog" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/reflog.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_JW2WD8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.ReflogView" label="Git Reflog" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/reflog.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <tags>View</tags> <tags>categoryTag:Git</tags> </descriptors> - <commands xmi:id="_RFM8ccRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjcMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjccRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjcsRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.GenerateDiff" commandName="Create Patch" description="Compare your workspace contents with the server and generate a diff file that can be used as a patch file." category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjc8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjdMRFEeOsdtank6IHbg" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_RF9KWcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjdcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoAddress" commandName="Go to Address..." description="Navigate to address" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjdsRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.openshmem.command4" commandName="find.openshmem.artifacts" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjd8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.use.supertype" commandName="Use Supertype Where Possible" description="Change occurrences of a type to use a supertype instead" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjeMRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.connectivity.commands.import" commandName="Import Profiles Command" description="Command to import connection profiles" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjecRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.open.quick.type.hierarchy" commandName="Quick Type Hierarchy" description="Shows quick type hierarchy" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjesRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.ShareProjectsCommand" commandName="Share Projects..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNje8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjfMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.groupDebugContexts" commandName="Group" description="Groups the selected debug contexts" category="_RF9xZMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjfcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjfsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_RF78M8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjf8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjgMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.project" commandName="Read Access in Project" description="Search for read references to the selected element in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFNjgcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKgMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKgcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKgsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_RF9KUsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKg8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKhMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.refactor.extract.local.variable" commandName="Extract Local Variable - Refactoring " description="Extract a local variable for the selected expression" category="_RF78OsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKhcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKhsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.EditConflictsCommand" commandName="Edit Conflicts" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKh8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_RF78M8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKiMRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rdt.sync.ui.SyncCommand" commandName="Sync Operations" category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFOKicRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rdt.sync.ui.syncCommand.syncModeParameter" name="Sync Mode" optional="false"/> + <commands xmi:id="_JXHbxsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXHbx8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXHbyMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXHbycW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.GenerateDiff" commandName="Create Patch" description="Compare your workspace contents with the server and generate a diff file that can be used as a patch file." category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXHbysW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXHby8W4EeORw5cz-AoFKA" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_JYR5Y8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXHbzMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoAddress" commandName="Go to Address..." description="Navigate to address" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXHbzcW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.openshmem.command4" commandName="find.openshmem.artifacts" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXHbzsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.use.supertype" commandName="Use Supertype Where Possible" description="Change occurrences of a type to use a supertype instead" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC0MW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.connectivity.commands.import" commandName="Import Profiles Command" description="Command to import connection profiles" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC0cW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.open.quick.type.hierarchy" commandName="Quick Type Hierarchy" description="Shows quick type hierarchy" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC0sW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.ShareProjectsCommand" commandName="Share Projects..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC08W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC1MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.groupDebugContexts" commandName="Group" description="Groups the selected debug contexts" category="_JYSgc8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC1cW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC1sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_JYPdJsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC18W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC2MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.project" commandName="Read Access in Project" description="Search for read references to the selected element in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC2cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC2sW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC28W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC3MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_JYRSVcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC3cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIC3sW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.refactor.extract.local.variable" commandName="Extract Local Variable - Refactoring " description="Extract a local variable for the selected expression" category="_JYQENMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp4MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp4cW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.EditConflictsCommand" commandName="Edit Conflicts" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp4sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_JYPdJsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp48W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rdt.sync.ui.SyncCommand" commandName="Sync Operations" category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXIp5MW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rdt.sync.ui.syncCommand.syncModeParameter" name="Sync Mode" optional="false"/> </commands> - <commands xmi:id="_RFOKisRFEeOsdtank6IHbg" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_RF78M8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKi8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKjMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.hover.backwardMacroExpansion" commandName="Back" description="Step backward in macro expansions" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKjcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKjsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKj8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOKkMRFEeOsdtank6IHbg" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.debug" commandName="Debug CLI Application" description="Debug CLI Application" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxkMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewRebase" commandName="Rebase" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxkcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxksRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxk8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxlMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxlcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.catch" commandName="Surround with try/catch Block" description="Surround the selected text with a try/catch block" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxlsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.convert.anonymous.to.nested" commandName="Convert Anonymous Class to Nested" description="Convert an anonymous class to a nested class" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxl8RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxmMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxmcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxmsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxm8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxnMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxncRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxnsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxn8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.refactor.extract.constant" commandName="Extract Constant - Refactoring " description="Extract a constant for the selected expression" category="_RF78OsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFOxoMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYoMRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.attachProfileAction" commandName="Set Connection Information" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYocRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYosRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYo8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYpMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.multicatch" commandName="Surround with try/multi-catch Block" description="Surround the selected text with a try/multi-catch block" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYpcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.refactor.getters.and.setters" commandName="Generate Getters and Setters..." description="Generates getters and setters for a selected field" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYpsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYp8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYqMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYqcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.specific_content_assist.command" commandName="C/C++ Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_RF8jTMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFPYqsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_JXIp5cW4EeORw5cz-AoFKA" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_JYPdJsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp5sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp58W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.hover.backwardMacroExpansion" commandName="Back" description="Step backward in macro expansions" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp6MW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp6cW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp6sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp68W4EeORw5cz-AoFKA" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.debug" commandName="Debug CLI Application" description="Debug CLI Application" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp7MW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewRebase" commandName="Rebase" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp7cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXIp7sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ8MW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ8cW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ8sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.catch" commandName="Surround with try/catch Block" description="Surround the selected text with a try/catch block" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ88W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.convert.anonymous.to.nested" commandName="Convert Anonymous Class to Nested" description="Convert an anonymous class to a nested class" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ9MW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ9cW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ9sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ98W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ-MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ-cW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ-sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ-8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ_MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.refactor.extract.constant" commandName="Extract Constant - Refactoring " description="Extract a constant for the selected expression" category="_JYQENMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ_cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJQ_sW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.attachProfileAction" commandName="Set Connection Information" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4AMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4AcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4AsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4A8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.multicatch" commandName="Surround with try/multi-catch Block" description="Surround the selected text with a try/multi-catch block" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4BMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.refactor.getters.and.setters" commandName="Generate Getters and Setters..." description="Generates getters and setters for a selected field" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4BcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4BsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4B8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4CMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.specific_content_assist.command" commandName="C/C++ Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_JYRSUcW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXJ4CcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_RFPYq8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.refactor.extract.function" commandName="Extract Function - Refactoring " description="Extract a function for the selected list of expressions or statements" category="_RF78OsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYrMRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.addMonitor" commandName="Add Monitor" category="_RF9KXcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYrcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYrsRFEeOsdtank6IHbg" elementId="pl.szpinda.plugin.tomcat.commands.tomcatQuickRestart" commandName="Tomcat quick restart" category="_RF9KVsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYr8RFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.edit.text.php.open.type.hierarchy" commandName="Open Type Hierarchy" description="Opens a type hierarchy for the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFPYsMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_sMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_scRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.refreshJob" commandName="Refresh Job Status" description="Refresh the state and state detail for this job" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_ssRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_s8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.reverseStepInto" commandName="Reverse Step Into" description="Perform Reverse Step Into" category="_RF9KUMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_tMRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.actions.LifeCycleInstall.run" commandName="Run Maven Install" description="Run Maven Install" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_tcRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CompareTwoRepositoryResourcesCommand" commandName="Compare With URL..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_tsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_t8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.cutcolumn" commandName="Cut" category="_RF78N8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_uMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_ucRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_usRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_u8RFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.insertExpressionCommand" commandName="insertExpressionCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_vMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_vcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_vsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.command.reconfigure" commandName="Reconfigure Project" description="Run configuration scripts for project" category="_RF78NcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_v8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.external.javadoc" commandName="Open External JSDoc" description="Open the JSDoc of the selected element in an external browser" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_wMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.excludeCommand" commandName="Exclude from Build" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFP_wcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmwMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmwcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.workspace" commandName="Read Access in Workspace" description="Search for read references to the selected element in the workspace" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmwsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmw8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmxMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmxcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmxsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Git Index" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmx8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmyMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmycRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.indent" commandName="Indent Line" description="Indents the current line" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmysRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.command" commandName="Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_RF8jTMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFQmy8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_JXJ4CsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.refactor.extract.function" commandName="Extract Function - Refactoring " description="Extract a function for the selected list of expressions or statements" category="_JYQENMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4C8W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.addMonitor" commandName="Add Monitor" category="_JYR5Z8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4DMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4DcW4EeORw5cz-AoFKA" elementId="pl.szpinda.plugin.tomcat.commands.tomcatQuickRestart" commandName="Tomcat quick restart" category="_JYR5YMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXJ4DsW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.edit.text.php.open.type.hierarchy" commandName="Open Type Hierarchy" description="Opens a type hierarchy for the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfEMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfEcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfEsW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.refreshJob" commandName="Refresh Job Status" description="Refresh the state and state detail for this job" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfE8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfFMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.reverseStepInto" commandName="Reverse Step Into" description="Perform Reverse Step Into" category="_JYRSU8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfFcW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.actions.LifeCycleInstall.run" commandName="Run Maven Install" description="Run Maven Install" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfFsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CompareTwoRepositoryResourcesCommand" commandName="Compare With URL..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfF8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfGMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.cutcolumn" commandName="Cut" category="_JYQEMcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfGcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfGsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfG8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfHMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.insertExpressionCommand" commandName="insertExpressionCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfHcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXKfHsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGIMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.command.reconfigure" commandName="Reconfigure Project" description="Run configuration scripts for project" category="_JYPdKMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGIcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.external.javadoc" commandName="Open External JSDoc" description="Open the JSDoc of the selected element in an external browser" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGIsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.excludeCommand" commandName="Exclude from Build" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGI8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGJMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGJcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.workspace" commandName="Read Access in Workspace" description="Search for read references to the selected element in the workspace" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGJsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGJ8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGKMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGKcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGKsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Git Index" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGK8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGLMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLGLcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.indent" commandName="Indent Line" description="Indents the current line" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtMMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.command" commandName="Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_JYRSUcW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXLtMcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_RFQmzMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmzcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoPC" commandName="Go to Program Counter" description="Navigate to current program counter" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmzsRFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQmz8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.working.set" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFQm0MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.delete.line.to.end" commandName="Delete to End of Line" description="Delete to the end of a line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN0MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN0cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.factory" commandName="Introduce Factory" description="Introduce a factory method to encapsulate invocation of the selected constructor" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN0sRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Annotations" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN08RFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN1MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN1cRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.updateSwitch" commandName="Switch to Another Branch or Version" description="Switch to Another Branch or Version" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN1sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN18RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN2MRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.ReplaceWithRevisionCommand" commandName="URL..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN2cRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.uncall" commandName="Uncall" description="Perform Uncall" category="_RF9KUMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN2sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN28RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN3MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN3cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN3sRFEeOsdtank6IHbg" elementId="org.eclipse.php.perspective" commandName="PHP" description="Shows the PHP perspective" category="_RF78M8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN38RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN4MRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFRN4cRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR04MRFEeOsdtank6IHbg" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR04cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR04sRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR048RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR05MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR05cRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_RF78M8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR05sRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.CreateChartViewCommand" commandName="CreateChartViewCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR058RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR06MRFEeOsdtank6IHbg" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_RF-YcMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR06cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR06sRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.local.variable" commandName="Extract Local Variable" description="Extracts an expression into a new local variable and uses the new local variable" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR068RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR07MRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.MergeCommand" commandName="Merge..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR07cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR07sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR078RFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR08MRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.releaseJob" commandName="Release Job" description="Release the job" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFR08cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb8MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb8cRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb8sRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.goto.next.bookmark" commandName="Next Bookmark" description="Goto next bookmark of the selected file" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb88RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb9MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb9cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb9sRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.interface" commandName="Extract Interface" description="Extract a set of members into a new interface and try to use the new interface" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb98RFEeOsdtank6IHbg" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_RF78OMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFSb-MRFEeOsdtank6IHbg" elementId="plugin" name="Plugin"/> - <parameters xmi:id="_RFSb-cRFEeOsdtank6IHbg" elementId="path" name="Path"/> + <commands xmi:id="_JXLtMsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtM8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoPC" commandName="Go to Program Counter" description="Navigate to current program counter" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtNMW4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtNcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.working.set" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtNsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.delete.line.to.end" commandName="Delete to End of Line" description="Delete to the end of a line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtN8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtOMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.factory" commandName="Introduce Factory" description="Introduce a factory method to encapsulate invocation of the selected constructor" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtOcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Annotations" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtOsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtO8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtPMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.updateSwitch" commandName="Switch to Another Branch or Version" description="Switch to Another Branch or Version" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtPcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXLtPsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUQMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.ReplaceWithRevisionCommand" commandName="URL..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUQcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.uncall" commandName="Uncall" description="Perform Uncall" category="_JYRSU8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUQsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMURMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMURcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMURsW4EeORw5cz-AoFKA" elementId="org.eclipse.php.perspective" commandName="PHP" description="Shows the PHP perspective" category="_JYPdJsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUR8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUSMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUScW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUSsW4EeORw5cz-AoFKA" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUS8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUTMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXMUTcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7UMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7UcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_JYPdJsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7UsW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.CreateChartViewCommand" commandName="CreateChartViewCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7U8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7VMW4EeORw5cz-AoFKA" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_JYTHhMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7VcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7VsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.local.variable" commandName="Extract Local Variable" description="Extracts an expression into a new local variable and uses the new local variable" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7V8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7WMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.MergeCommand" commandName="Merge..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7WcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7WsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7W8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7XMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.releaseJob" commandName="Release Job" description="Release the job" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7XcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXM7XsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXNiYMW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXNiYcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.goto.next.bookmark" commandName="Next Bookmark" description="Goto next bookmark of the selected file" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXNiYsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXNiY8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXNiZMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXNiZcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.interface" commandName="Extract Interface" description="Extract a set of members into a new interface and try to use the new interface" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXNiZsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_JYQEMsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXNiZ8W4EeORw5cz-AoFKA" elementId="plugin" name="Plugin"/> + <parameters xmi:id="_JXNiaMW4EeORw5cz-AoFKA" elementId="path" name="Path"/> </commands> - <commands xmi:id="_RFSb-sRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb-8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.javadoc.comment" commandName="Add JSDoc Comment" description="Add a JSDoc comment stub to the member element" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb_MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_RF78OMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFSb_cRFEeOsdtank6IHbg" elementId="preferencePageId" name="Preference Page"/> + <commands xmi:id="_JXNiacW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXNiasW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.javadoc.comment" commandName="Add JSDoc Comment" description="Add a JSDoc comment stub to the member element" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXNia8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_JYQEMsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXNibMW4EeORw5cz-AoFKA" elementId="preferencePageId" name="Preference Page"/> </commands> - <commands xmi:id="_RFSb_sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFSb_8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy SHA-1" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFScAMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDAMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_RF9KW8RFEeOsdtank6IHbg"> - <parameters xmi:id="_RFTDAcRFEeOsdtank6IHbg" elementId="newWizardId" name="New Wizard"/> + <commands xmi:id="_JXNibcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJcMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy SHA-1" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJccW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJcsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_JYR5ZcW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXOJc8W4EeORw5cz-AoFKA" elementId="newWizardId" name="New Wizard"/> </commands> - <commands xmi:id="_RFTDAsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.comment" commandName="Comment" description="Turn the selected lines into // style comments" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDA8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDBMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDBcRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.showHistory" commandName="Show History" description="Show History" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDBsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.exportLibraryCommand" commandName="exportLibraryCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDB8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.hierarchy" commandName="Write Access in Hierarchy" description="Search for write references of the selected element in its hierarchy" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDCMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.find.word" commandName="Find Word" description="Select a word and find the next occurrence" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDCcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.testing.testingShortcut.run" commandName="Run testing Test" description="Run testing Test" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDCsRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.core.ui.command.updateProject" commandName="Update Project" description="Update Maven Project configuration and dependencies" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDC8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDDMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDDcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.select.previous" commandName="Select Previous C/C++ Element" description="Expand the selection to enclosing C/C++ element" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDDsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDD8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTDEMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.copyCellContentsCommand" commandName="CopyCellContentsAction" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqEMRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.debugAction" commandName="Debug" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqEcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.infer.type.arguments" commandName="Infer Generic Type Arguments" description="Infer type arguments for references to generic classes and remove unnecessary casts" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqEsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqE8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_RF9xbcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFTqFMRFEeOsdtank6IHbg" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/> + <commands xmi:id="_JXOJdMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.comment" commandName="Comment" description="Turn the selected lines into // style comments" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJdcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJdsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJd8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.showHistory" commandName="Show History" description="Show History" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJeMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.exportLibraryCommand" commandName="exportLibraryCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJecW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.hierarchy" commandName="Write Access in Hierarchy" description="Search for write references of the selected element in its hierarchy" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJesW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.find.word" commandName="Find Word" description="Select a word and find the next occurrence" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJe8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.testing.testingShortcut.run" commandName="Run testing Test" description="Run testing Test" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJfMW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.core.ui.command.updateProject" commandName="Update Project" description="Update Maven Project configuration and dependencies" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOJfcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwgMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwgcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.select.previous" commandName="Select Previous C/C++ Element" description="Expand the selection to enclosing C/C++ element" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwgsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwg8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwhMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.copyCellContentsCommand" commandName="CopyCellContentsAction" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwhcW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.debugAction" commandName="Debug" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwhsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.infer.type.arguments" commandName="Infer Generic Type Arguments" description="Infer type arguments for references to generic classes and remove unnecessary casts" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwh8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwiMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_JYTHg8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXOwicW4EeORw5cz-AoFKA" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/> </commands> - <commands xmi:id="_RFTqFcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.InstanceCount" commandName="Instance Count" description="View the instance count of the selected type loaded in the target VM" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqFsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqF8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.reverseStepOver" commandName="Reverse Step Over" description="Perform Reverse Step Over" category="_RF9KUMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqGMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqGcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqGsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.SwitchCommand" commandName="Switch..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqG8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqHMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqHcRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqHsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFTqH8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURIMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.BranchCommand" commandName="Branch..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURIcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURIsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the JavaScript file" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURI8RFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURJMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_RF9xbcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFURJcRFEeOsdtank6IHbg" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_JXOwisW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.InstanceCount" commandName="Instance Count" description="View the instance count of the selected type loaded in the target VM" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwi8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwjMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.reverseStepOver" commandName="Reverse Step Over" description="Perform Reverse Step Over" category="_JYRSU8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXOwjcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXkMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXkcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.SwitchCommand" commandName="Switch..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXksW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXk8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXlMW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXlcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXlsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXl8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.BranchCommand" commandName="Branch..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXmMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXmcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the JavaScript file" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXmsW4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXPXm8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_JYTHg8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXPXnMW4EeORw5cz-AoFKA" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_RFURJsRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.common.dropDownCommand" commandName="Analysis dropdown menu" category="_RF8jRMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFURJ8RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.common.dropDownCommand.msg" name="Message" typeId="String"/> + <commands xmi:id="_JXPXncW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.common.dropDownCommand" commandName="Analysis dropdown menu" category="_JYQrQ8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXP-oMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.common.dropDownCommand.msg" name="Message" typeId="String"/> </commands> - <commands xmi:id="_RFURKMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURKcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURKsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURK8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURLMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURLcRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURLsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.command.libtoolize" commandName="Invoke Libtoolize" description="Run libtoolize in the selected directory" category="_RF78NcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURL8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFURMMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4MMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4McRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.method.exits" commandName="Search Method Exit Occurrences in File" description="Search for method exit occurrences of a selected return type" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4MsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsd.ui.refactor.makeElementGlobal" commandName="Make Local Element &Global" description="Promotes local element to global level and replaces its references" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4M8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4NMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.testing.testingShortcut.rerunFailedFirst" commandName="Rerun testing Test - Failures First" description="Rerun testing Test - Failures First" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4NcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4NsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4N8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.ungroupDebugContexts" commandName="Ungroup" description="Ungroups the selected debug contexts" category="_RF9xZMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4OMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4OcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4OsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.addBlock.assist" commandName="Quick Assist - Replace statement with block" description="Invokes quick assist and selects 'Replace statement with block'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4O8RFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4PMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4PcRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.revertToTemplateCommand" commandName="revertToTemplateCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4PsRFEeOsdtank6IHbg" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_RF9KWcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4P8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.sort.lines" commandName="Sort Lines" description="Sort selected lines alphabetically" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFU4QMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.use.supertype" commandName="Use Supertype Where Possible" description="Change occurrences of a type to use a supertype instead" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfQMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfQcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfQsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.deleteCommand" commandName="deleteCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfQ8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfRMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.insertRowCommand" commandName="insertRowCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfRcRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CopyUrlCommand" commandName="Copy URL" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfRsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.navigate.open.element.in.call.hierarchy" commandName="Open Element in Call Hierarchy" description="Open an element in the call hierarchy view" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfR8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.hierarchy" commandName="Write Access in Hierarchy" description="Search for write references of the selected element in its hierarchy" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfSMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.linkWithEditor" commandName="Toggle Link with Editor " description="Toggles linking of a view's selection with the active editor's selection" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfScRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfSsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.convert.anonymous.to.nested" commandName="Convert Anonymous Class to Nested" description="Convert an anonymous class to a nested class" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfS8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfTMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfTcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfTsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.pasteAction" commandName="pasteAction" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfT8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFVfUMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractConstant" commandName="Extract Constant..." category="_RF78OsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGUMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGUcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGUsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGU8RFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.edit.text.move.element" commandName="Move - Refactoring " description="Moves the selected element to a new location" category="_RF8jRsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGVMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.working.set" commandName="Read Access in Working Set" description="Search for read references to the selected element in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGVcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGVsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.ShowResourceHistoryCommand" commandName="Show History" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGV8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Directory" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGWMRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGWcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.project" commandName="Implementors in Project" description="Search for implementors of the selected interface in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGWsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGW8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGXMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.testing.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGXcRFEeOsdtank6IHbg" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGXsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.infer.type.arguments" commandName="Infer Generic Type Arguments" description="Infer type arguments for references to generic classes and remove unnecessary casts" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGX8RFEeOsdtank6IHbg" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_RF9xaMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWGYMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtYMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtYcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtYsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.EditTreeConflictsCommand" commandName="Edit Tree Conflicts" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtY8RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtZMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.copyAction" commandName="copyAction" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtZcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractLocalVariable" commandName="Extract Local Variable..." category="_RF78OsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtZsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the compilation unit" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtZ8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteCurrentAction" commandName="Execute Current Text" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtaMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtacRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.saveTraceData" commandName="Save Trace Data " description="Save Trace Data to File" category="_RF9KVMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtasRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWta8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtbMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.self.encapsulate.field" commandName="Encapsulate Field" description="Create getting and setting methods for the field and use only those to access the field" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtbcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the translation unit" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtbsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtb8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFWtcMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.specific_content_assist.command" commandName="Content Assist(DLTK)" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_RF8jTMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFWtccRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_JXP-ocW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-osW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-o8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-pMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-pcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-psW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-p8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.command.libtoolize" commandName="Invoke Libtoolize" description="Run libtoolize in the selected directory" category="_JYPdKMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-qMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-qcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-qsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-q8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.method.exits" commandName="Search Method Exit Occurrences in File" description="Search for method exit occurrences of a selected return type" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-rMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsd.ui.refactor.makeElementGlobal" commandName="Make Local Element &Global" description="Promotes local element to global level and replaces its references" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-rcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXP-rsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.testing.testingShortcut.rerunFailedFirst" commandName="Rerun testing Test - Failures First" description="Rerun testing Test - Failures First" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQlsMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQlscW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQlssW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.ungroupDebugContexts" commandName="Ungroup" description="Ungroups the selected debug contexts" category="_JYSgc8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQls8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQltMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQltcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.addBlock.assist" commandName="Quick Assist - Replace statement with block" description="Invokes quick assist and selects 'Replace statement with block'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQltsW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQlt8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQluMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.revertToTemplateCommand" commandName="revertToTemplateCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQlucW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_JYR5Y8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQlusW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.sort.lines" commandName="Sort Lines" description="Sort selected lines alphabetically" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQlu8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.use.supertype" commandName="Use Supertype Where Possible" description="Change occurrences of a type to use a supertype instead" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQlvMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXQlvcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMwMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.deleteCommand" commandName="deleteCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMwcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMwsW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.insertRowCommand" commandName="insertRowCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMw8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CopyUrlCommand" commandName="Copy URL" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMxMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.navigate.open.element.in.call.hierarchy" commandName="Open Element in Call Hierarchy" description="Open an element in the call hierarchy view" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMxcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.hierarchy" commandName="Write Access in Hierarchy" description="Search for write references of the selected element in its hierarchy" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMxsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.linkWithEditor" commandName="Toggle Link with Editor " description="Toggles linking of a view's selection with the active editor's selection" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMx8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMyMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.convert.anonymous.to.nested" commandName="Convert Anonymous Class to Nested" description="Convert an anonymous class to a nested class" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMycW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMysW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMy8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRMzMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.pasteAction" commandName="pasteAction" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz0MW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz0cW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractConstant" commandName="Extract Constant..." category="_JYQENMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz0sW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz08W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz1MW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz1cW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.edit.text.move.element" commandName="Move - Refactoring " description="Moves the selected element to a new location" category="_JYQrRcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz1sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.working.set" commandName="Read Access in Working Set" description="Search for read references to the selected element in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz18W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz2MW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.ShowResourceHistoryCommand" commandName="Show History" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz2cW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Directory" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz2sW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz28W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.project" commandName="Implementors in Project" description="Search for implementors of the selected interface in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz3MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXRz3cW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa4MW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.testing.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa4cW4EeORw5cz-AoFKA" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa4sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.infer.type.arguments" commandName="Infer Generic Type Arguments" description="Infer type arguments for references to generic classes and remove unnecessary casts" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa48W4EeORw5cz-AoFKA" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_JYSgd8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa5MW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa5cW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa5sW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa58W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.EditTreeConflictsCommand" commandName="Edit Tree Conflicts" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa6MW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa6cW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.copyAction" commandName="copyAction" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa6sW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractLocalVariable" commandName="Extract Local Variable..." category="_JYQENMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa68W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the compilation unit" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa7MW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteCurrentAction" commandName="Execute Current Text" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXSa7cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB8MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.saveTraceData" commandName="Save Trace Data " description="Save Trace Data to File" category="_JYRSV8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB8cW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB8sW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB88W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.self.encapsulate.field" commandName="Encapsulate Field" description="Create getting and setting methods for the field and use only those to access the field" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB9MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the translation unit" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB9cW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB9sW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB98W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.specific_content_assist.command" commandName="Content Assist(DLTK)" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_JYRSUcW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXTB-MW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_RFXUcMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUccRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUcsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUc8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUdMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.open.hyperlink" commandName="Open Hyperlink" description="Opens the hyperlink at the caret location or opens a chooser if more than one hyperlink is available" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUdcRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" commandName="Switch Source/Design Editors" description="Switch between the Source and Design editors." category="_RF8jQ8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUdsRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUd8RFEeOsdtank6IHbg" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_RF9xbMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUeMRFEeOsdtank6IHbg" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_RF9xaMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUecRFEeOsdtank6IHbg" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUesRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUe8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUfMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="%RebaseInteractiveCurrentHandler.name" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUfcRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.query.browser.QueryBrowser" commandName="Query Browser" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUfsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.createPlaceHolderCommand" commandName="createPlaceHolderCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUf8RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.ReplaceWithBranchCommand" commandName="Branch..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFXUgMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.opendecl" commandName="Open Declaration" description="Open an editor on the selected element's declaration(s)" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7gMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.debug" commandName="Debug XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7gcRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.SetPropertyCommand" commandName="Set Property..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7gsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CompareWithTagCommand" commandName="Tag..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7g8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7hMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7hcRFEeOsdtank6IHbg" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7hsRFEeOsdtank6IHbg" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_RF9KU8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7h8RFEeOsdtank6IHbg" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_RF9xbMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7iMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewRenameBranch" commandName="Rename Branch..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7icRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CompareTwoSelectedRepositoryResourcesCommand" commandName="Compare" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7isRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7i8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7jMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.insertGroupCommand" commandName="insertGroupCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7jcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7jsRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFX7j8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.search.findrefs" commandName="References" description="Search for references to the selected element in the workspace" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYikMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYikcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYiksRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYik8RFEeOsdtank6IHbg" elementId="refresh.schema.editor.action.id" commandName="Refresh from Server" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYilMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYilcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYilsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.hover.forwardMacroExpansion" commandName="Forward" description="Step forward in macro expansions" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYil8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.command.autoreconf" commandName="Invoke Autoreconf" description="Run autoreconf from the selected directory" category="_RF78NcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYimMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYimcRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.result.removeInstance" commandName="Remove Result" category="_RF8jR8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYimsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.inner.to.top.level" commandName="Convert Member Type to Top Level" description="Convert member type to top level" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYim8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to var" description="Invokes quick assist and selects 'Assign to var'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYinMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYincRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYinsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFYin8RFEeOsdtank6IHbg" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_RF9xbMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJoMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJocRFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJosRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJo8RFEeOsdtank6IHbg" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_RF9xbMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJpMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJpcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJpsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJp8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJqMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJqcRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.cancelJob" commandName="Cancel Job" description="Terminate the job" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJqsRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJq8RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.testing.ResultView" commandName="DLTK Testing" description="Testing" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJrMRFEeOsdtank6IHbg" elementId="org.eclipse.pdt.ui.edit.text.php.show.outline" commandName="Quick Outline" description="Shows the quick outline for the editor input" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJrcRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.UpdateCommand" commandName="Update" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJrsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJr8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id To Clipboard" description="Copies the build id to the clipboard." category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZJsMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.command.autoconf" commandName="Invoke Autoconf" description="Run autoconf in the selected directory" category="_RF78NcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwsMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.navigate.opentype" commandName="Open Element" description="Open an element in an Editor" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwscRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwssRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZws8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwtMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwtcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwtsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwt8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwuMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.UnlockCommand" commandName="Unlock..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwucRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.commands.showElementInTypeHierarchyView" commandName="Show JavaScript Element Type Hierarchy" description="Show a JavaScript element in the Type Hierarchy view" category="_RF9xbcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFZwusRFEeOsdtank6IHbg" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_JXTB-cW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB-sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB-8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB_MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTB_cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.open.hyperlink" commandName="Open Hyperlink" description="Opens the hyperlink at the caret location or opens a chooser if more than one hyperlink is available" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpAMW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" commandName="Switch Source/Design Editors" description="Switch between the Source and Design editors." category="_JYQrQsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpAcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpAsW4EeORw5cz-AoFKA" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_JYTHgsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpA8W4EeORw5cz-AoFKA" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_JYSgd8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpBMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpBcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpBsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpB8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="%RebaseInteractiveCurrentHandler.name" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpCMW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.query.browser.QueryBrowser" commandName="Query Browser" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpCcW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.createPlaceHolderCommand" commandName="createPlaceHolderCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpCsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.ReplaceWithBranchCommand" commandName="Branch..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpC8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.opendecl" commandName="Open Declaration" description="Open an editor on the selected element's declaration(s)" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXTpDMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.debug" commandName="Debug XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQEMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.SetPropertyCommand" commandName="Set Property..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQEcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CompareWithTagCommand" commandName="Tag..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQEsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQE8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQFMW4EeORw5cz-AoFKA" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQFcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_JYRSVsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQFsW4EeORw5cz-AoFKA" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_JYTHgsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQF8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewRenameBranch" commandName="Rename Branch..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQGMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CompareTwoSelectedRepositoryResourcesCommand" commandName="Compare" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQGcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQGsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQG8W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.insertGroupCommand" commandName="insertGroupCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQHMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXUQHcW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3IMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.search.findrefs" commandName="References" description="Search for references to the selected element in the workspace" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3IcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3IsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3I8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3JMW4EeORw5cz-AoFKA" elementId="refresh.schema.editor.action.id" commandName="Refresh from Server" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3JcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3JsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3J8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.hover.forwardMacroExpansion" commandName="Forward" description="Step forward in macro expansions" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3KMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.command.autoreconf" commandName="Invoke Autoreconf" description="Run autoreconf from the selected directory" category="_JYPdKMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3KcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3KsW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.result.removeInstance" commandName="Remove Result" category="_JYQrRsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXU3K8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.inner.to.top.level" commandName="Convert Member Type to Top Level" description="Convert member type to top level" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeMMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to var" description="Invokes quick assist and selects 'Assign to var'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeMcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeMsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeM8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeNMW4EeORw5cz-AoFKA" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_JYTHgsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeNcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeNsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeN8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeOMW4EeORw5cz-AoFKA" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_JYTHgsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeOcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeOsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVeO8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXVePMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFQMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFQcW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.cancelJob" commandName="Cancel Job" description="Terminate the job" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFQsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.testing.ResultView" commandName="DLTK Testing" description="Testing" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFRMW4EeORw5cz-AoFKA" elementId="org.eclipse.pdt.ui.edit.text.php.show.outline" commandName="Quick Outline" description="Shows the quick outline for the editor input" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFRcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.UpdateCommand" commandName="Update" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFRsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFR8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id To Clipboard" description="Copies the build id to the clipboard." category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFSMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.command.autoconf" commandName="Invoke Autoconf" description="Run autoconf in the selected directory" category="_JYPdKMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFScW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.navigate.opentype" commandName="Open Element" description="Open an element in an Editor" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFSsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFS8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWFTMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsUMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsUcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsUsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsU8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsVMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.UnlockCommand" commandName="Unlock..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsVcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.commands.showElementInTypeHierarchyView" commandName="Show JavaScript Element Type Hierarchy" description="Show a JavaScript element in the Type Hierarchy view" category="_JYTHg8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXWsVsW4EeORw5cz-AoFKA" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_RFZwu8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwvMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwvcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.addNonNLS" commandName="Quick Fix - Add non-NLS tag" description="Invokes quick assist and selects 'Add non-NLS tag'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwvsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFZwv8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXwMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXwcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXwsRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.edit.text.open.editor" commandName="Open Selection" description="Opens an editor with the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXw8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXxMRFEeOsdtank6IHbg" elementId="org.eclipse.jst.jsp.ui.refactor.move" commandName="Move" description="Move a Java Element to another package" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXxcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXxsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXx8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.search.finddecl" commandName="Declaration" description="Search for declarations of the selected element in the workspace" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXyMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.externalize.strings" commandName="Externalize Strings" description="Finds all strings that are not externalized and moves them into a separate property file" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXycRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXysRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXy8RFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXzMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.menu.findUnresolvedIncludes" commandName="Search for Unresolved Includes" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXzcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXzsRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.discovery.ui" commandName="m2e Marketplace" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFaXz8RFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.query.browser.QueryHistory" commandName="Query History" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-0MRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.commit" commandName="Commit" description="Commit resources to the repository" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-0cRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-0sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-08RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.startMonitor" commandName="Start Monitor" category="_RF9KXcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-1MRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-1cRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.toggleCommentAction" commandName="Toggle Comment" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-1sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-18RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-2MRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-2cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-2sRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.navigate.open.type" commandName="Open Type" description="Open a type in a DLTK editor" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-28RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-3MRFEeOsdtank6IHbg" elementId="org.eclipse.php.server.ui.phpServerShortcut.run" commandName="Run PHP Web Application" description="Run PHP Web Application" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-3cRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-3sRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-38RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFa-4MRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl4MRFEeOsdtank6IHbg" elementId="pl.szpinda.plugin.tomcat.commands.tomcatStartStop" commandName="Tomcat start,stop" category="_RF9KVsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl4cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl4sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl48RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.project" commandName="Write Access in Project" description="Search for write references to the selected element in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl5MRFEeOsdtank6IHbg" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl5cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl5sRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.command.automake" commandName="Invoke Automake" description="Run automake from the selected directory" category="_RF78NcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl58RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl6MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl6cRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl6sRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.actions.WatchCommand" commandName="Watch" description="Create a watch expression from the current selection and add it to the Expressions view" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl68RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.openacc.command2" commandName="Find OpenACC Artifacts" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl7MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl7cRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.deleteGroupCommand" commandName="deleteGroupCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl7sRFEeOsdtank6IHbg" elementId="org.eclipse.emf.codegen.ecore.ui.Generate" commandName="Generate Code" description="Generate code for the EMF models in the workspace" category="_RF8jQsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFbl78RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.open.outline" commandName="Show outline" description="Shows outline" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM8MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM8cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM8sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.modify.method.parameters" commandName="Change Method Signature" description="Change method signature includes parameter names and parameter order" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM88RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM9MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open the call hierarchy for the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM9cRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.java.source.quickMenu" commandName="Source Quick Menu" description="Opens the source quick menu" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM9sRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM98RFEeOsdtank6IHbg" elementId="org.eclipse.php.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM-MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.connect" commandName="Connect" description="Connect to a process" category="_RF9xZMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM-cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM-sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.addBlock.assist" commandName="Quick Assist - Replace statement with block" description="Invokes quick assist and selects 'Replace statement with block'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM-8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM_MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.method" commandName="Extract Function" description="Extract a set of statements or an expression into a new function and use the new function" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM_cRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM_sRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcM_8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.comment" commandName="Comment/Uncomment" description="Comment/Uncomment the selected lines" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFcNAMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.parameter" commandName="Introduce Parameter" description="Introduce a new method parameter based on the selected expression" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0AMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0AcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.parameter" commandName="Introduce Parameter" description="Introduce a new function parameter based on the selected expression" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0AsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFc0A8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/> + <commands xmi:id="_JXWsV8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsWMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsWcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.addNonNLS" commandName="Quick Fix - Add non-NLS tag" description="Invokes quick assist and selects 'Add non-NLS tag'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsWsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsW8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXWsXMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTYMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTYcW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.edit.text.open.editor" commandName="Open Selection" description="Opens an editor with the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTYsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTY8W4EeORw5cz-AoFKA" elementId="org.eclipse.jst.jsp.ui.refactor.move" commandName="Move" description="Move a Java Element to another package" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTZMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTZcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTZsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.search.finddecl" commandName="Declaration" description="Search for declarations of the selected element in the workspace" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTZ8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.externalize.strings" commandName="Externalize Strings" description="Finds all strings that are not externalized and moves them into a separate property file" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTaMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTacW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTasW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTa8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.menu.findUnresolvedIncludes" commandName="Search for Unresolved Includes" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXXTbMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6cMW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.discovery.ui" commandName="m2e Marketplace" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6ccW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.query.browser.QueryHistory" commandName="Query History" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6csW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.commit" commandName="Commit" description="Commit resources to the repository" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6c8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6dMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6dcW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.startMonitor" commandName="Start Monitor" category="_JYR5Z8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6dsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6d8W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.toggleCommentAction" commandName="Toggle Comment" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6eMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6ecW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6esW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6e8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXX6fMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.navigate.open.type" commandName="Open Type" description="Open a type in a DLTK editor" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhgMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhgcW4EeORw5cz-AoFKA" elementId="org.eclipse.php.server.ui.phpServerShortcut.run" commandName="Run PHP Web Application" description="Run PHP Web Application" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhgsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhg8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhhMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhhcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhhsW4EeORw5cz-AoFKA" elementId="pl.szpinda.plugin.tomcat.commands.tomcatStartStop" commandName="Tomcat start,stop" category="_JYR5YMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhh8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhiMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhicW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.project" commandName="Write Access in Project" description="Search for write references to the selected element in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhisW4EeORw5cz-AoFKA" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhi8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXYhjMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.command.automake" commandName="Invoke Automake" description="Run automake from the selected directory" category="_JYPdKMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZIkMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZIkcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZIksW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZIk8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.actions.WatchCommand" commandName="Watch" description="Create a watch expression from the current selection and add it to the Expressions view" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZIlMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.openacc.command2" commandName="Find OpenACC Artifacts" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZIlcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZIlsW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.deleteGroupCommand" commandName="deleteGroupCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZIl8W4EeORw5cz-AoFKA" elementId="org.eclipse.emf.codegen.ecore.ui.Generate" commandName="Generate Code" description="Generate code for the EMF models in the workspace" category="_JYQrQcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZImMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.open.outline" commandName="Show outline" description="Shows outline" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZImcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZImsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZIm8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.modify.method.parameters" commandName="Change Method Signature" description="Change method signature includes parameter names and parameter order" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZInMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvoMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open the call hierarchy for the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvocW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.java.source.quickMenu" commandName="Source Quick Menu" description="Opens the source quick menu" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvosW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvo8W4EeORw5cz-AoFKA" elementId="org.eclipse.php.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvpMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.connect" commandName="Connect" description="Connect to a process" category="_JYSgc8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvpcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvpsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.addBlock.assist" commandName="Quick Assist - Replace statement with block" description="Invokes quick assist and selects 'Replace statement with block'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvp8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvqMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.method" commandName="Extract Function" description="Extract a set of statements or an expression into a new function and use the new function" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvqcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvqsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXZvq8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.comment" commandName="Comment/Uncomment" description="Comment/Uncomment the selected lines" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWsMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.parameter" commandName="Introduce Parameter" description="Introduce a new method parameter based on the selected expression" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWscW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWssW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.parameter" commandName="Introduce Parameter" description="Introduce a new function parameter based on the selected expression" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWs8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXaWtMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/> </commands> - <commands xmi:id="_RFc0BMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0BcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.find.broken.nls.keys" commandName="Find Broken Externalized Strings" description="Finds undefined, duplicate and unused externalized string keys in property files" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0BsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.targetBuildCommand" commandName="Make Target Build" description="Invoke a make target build for the selected container." category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0B8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0CMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.item.crosstab.ui.createCrosstab" commandName="Create Crosstab" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0CcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0CsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0C8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0DMRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0DcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFc0DsRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Opens a type in the type hierarchy view" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbEMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbEcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_RF9xasRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFdbEsRFEeOsdtank6IHbg" elementId="cheatSheetId" name="Identifier"/> + <commands xmi:id="_JXaWtcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWtsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.find.broken.nls.keys" commandName="Find Broken Externalized Strings" description="Finds undefined, duplicate and unused externalized string keys in property files" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWt8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.targetBuildCommand" commandName="Make Target Build" description="Invoke a make target build for the selected container." category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWuMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWucW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.item.crosstab.ui.createCrosstab" commandName="Create Crosstab" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWusW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWu8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXaWvMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9wMW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9wcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9wsW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Opens a type in the type hierarchy view" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9w8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9xMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_JYTHgMW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXa9xcW4EeORw5cz-AoFKA" elementId="cheatSheetId" name="Identifier"/> </commands> - <commands xmi:id="_RFdbE8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.saveAsTemplateAction" commandName="Save as Template" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbFMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbFcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbFsRFEeOsdtank6IHbg" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_RF9xa8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbF8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.castToArray" commandName="Cast To Type..." category="_RF8jScRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbGMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbGcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbGsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.internal.ui.views.createVariable" commandName="%Command.Name.CreateVariable" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbG8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.indirection" commandName="Introduce Indirection" description="Introduce an indirection to encapsulate invocations of a selected method" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbHMRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.core.ui.command.addDependency" commandName="Add Maven Dependency" description="Add Maven Dependency" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbHcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.select.last" commandName="Restore Last C/C++ Selection" description="Restore last selection in C/C++ editor" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFdbHsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCIMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.MarkAsMergedCommand" commandName="Mark as Merged" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCIcRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.stopMonitor" commandName="Stop Monitor" category="_RF9KXcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCIsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCI8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCJMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCJcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.format" commandName="Format" description="Format Source Code" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCJsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCJ8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.wsdl.ui.refactor.rename.element" commandName="Rename WSDL component" description="Renames WSDL component" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCKMRFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCKcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCKsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.generate.xml" commandName="&XML File..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCK8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCLMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file.quickMenu" commandName="Show Occurrences in File Quick Menu" description="Shows the Occurrences in File quick menu" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCLcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCLsRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.comment" commandName="Comment" description="Turn the selected lines into DLTK comments" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFeCL8RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.ExportCommand" commandName="Export..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepMMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepMcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.superclass" commandName="Extract Superclass" description="Extract a set of members into a new superclass and try to use the new superclass" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepMsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.item.crosstab.ui.createCube" commandName="Create Cube" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepM8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.hierarchy" commandName="Read Access in Hierarchy" description="Search for read references of the selected element in its hierarchy" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepNMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_RF8jSsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepNcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepNsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.RevertCommand" commandName="Revert..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepN8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepOMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.working.set" commandName="Write Access in Working Set" description="Search for write references to the selected element in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepOcRFEeOsdtank6IHbg" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_RF9xbMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepOsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.rulerToggleBreakpoint" commandName="Toggle Breakpoint" description="Toggle breakpoint in disassembly ruler" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepO8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.search.finddecl.workingset" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepPMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepPcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFepPsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_RF9xbcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFepP8RFEeOsdtank6IHbg" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/> + <commands xmi:id="_JXa9xsW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.saveAsTemplateAction" commandName="Save as Template" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9x8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9yMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9ycW4EeORw5cz-AoFKA" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_JYTHgcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9ysW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.castToArray" commandName="Cast To Type..." category="_JYQrSMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9y8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXa9zMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk0MW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.internal.ui.views.createVariable" commandName="%Command.Name.CreateVariable" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk0cW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.indirection" commandName="Introduce Indirection" description="Introduce an indirection to encapsulate invocations of a selected method" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk0sW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.core.ui.command.addDependency" commandName="Add Maven Dependency" description="Add Maven Dependency" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk08W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.select.last" commandName="Restore Last C/C++ Selection" description="Restore last selection in C/C++ editor" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk1MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk1cW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.MarkAsMergedCommand" commandName="Mark as Merged" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk1sW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.stopMonitor" commandName="Stop Monitor" category="_JYR5Z8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk18W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk2MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk2cW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk2sW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.format" commandName="Format" description="Format Source Code" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXbk28W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL4MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.wsdl.ui.refactor.rename.element" commandName="Rename WSDL component" description="Renames WSDL component" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL4cW4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL4sW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL48W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.generate.xml" commandName="&XML File..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL5MW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL5cW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file.quickMenu" commandName="Show Occurrences in File Quick Menu" description="Shows the Occurrences in File quick menu" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL5sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL58W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.comment" commandName="Comment" description="Turn the selected lines into DLTK comments" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL6MW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.ExportCommand" commandName="Export..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL6cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL6sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.superclass" commandName="Extract Superclass" description="Extract a set of members into a new superclass and try to use the new superclass" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcL68W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.item.crosstab.ui.createCube" commandName="Create Cube" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy8MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.hierarchy" commandName="Read Access in Hierarchy" description="Search for read references of the selected element in its hierarchy" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy8cW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_JYQrScW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy8sW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy88W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.RevertCommand" commandName="Revert..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy9MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy9cW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.working.set" commandName="Write Access in Working Set" description="Search for write references to the selected element in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy9sW4EeORw5cz-AoFKA" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_JYTHgsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy98W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.rulerToggleBreakpoint" commandName="Toggle Breakpoint" description="Toggle breakpoint in disassembly ruler" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy-MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.search.finddecl.workingset" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy-cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy-sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXcy-8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_JYTHg8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXdaAMW4EeORw5cz-AoFKA" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/> </commands> - <commands xmi:id="_RFfQQMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.refactor.implement.method" commandName="Implement Method - Source Generation " description="Implements a method for a selected method declaration" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQQcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.testing.testingShortcut.debug" commandName="Debug testing Test" description="Debug testing Test" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQQsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.AddToSVNCommand" commandName="Add to Version Control..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQQ8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQRMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.extractLocal.assist" commandName="Quick Assist - Extract local variable (replace all occurrences)" description="Invokes quick assist and selects 'Extract local variable (replace all occurrences)'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQRcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.parameter.object" commandName="Introduce Parameter Object" description="Introduce a parameter object to a selected method" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQRsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQR8RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.ReplaceWithTagCommand" commandName="Tag..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQSMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.working.set" commandName="Implementors in Working Set" description="Search for implementors of the selected interface in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQScRFEeOsdtank6IHbg" elementId="org.eclipse.pdt.ui.edit.text.select.enclosing" commandName="Select Enclosing Element" description="Expands selection to include enclosing element" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQSsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_RF9xYsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQS8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.create.delegate.methods" commandName="Generate Delegate Methods" description="Add delegate methods for a type's fields" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQTMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQTcRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.showAnnotation" commandName="Show Annotation" description="Show Annotation" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQTsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFfQT8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.editors.text.show.tooltip" commandName="Show Tooltip Description" description="Shows the tooltip description for the element at the cursor" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3UMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3UcRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.replace" commandName="Replace With Latest from Repository" description="Replace with last committed content from CVS Server" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3UsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3U8RFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.deleteRowCommand" commandName="deleteRowCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3VMRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3VcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3VsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3V8RFEeOsdtank6IHbg" elementId="org.eclipse.m2e.actions.LifeCycleTest.run" commandName="Run Maven Test" description="Run Maven Test" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3WMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.create.getter.setter" commandName="Generate Getters and Setters" description="Generate Getter and Setter methods for type's fields" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3WcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3WsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3W8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.source.header" commandName="Toggle Source/Header" description="Toggles between corresponding source and header files" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3XMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3XcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3XsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFf3X8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSelectionAction" commandName="Execute Selected Text" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgeYMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.constant" commandName="Extract Constant" description="Extracts a constant into a new static var and uses the new static var" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgeYcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgeYsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.insertCommand" commandName="insertCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgeY8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgeZMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgeZcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_RF78PMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFgeZsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.showView.viewId" name="View"/> - <parameters xmi:id="_RFgeZ8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/> - <parameters xmi:id="_RFgeaMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/> + <commands xmi:id="_JXdaAcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.refactor.implement.method" commandName="Implement Method - Source Generation " description="Implements a method for a selected method declaration" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaAsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.testing.testingShortcut.debug" commandName="Debug testing Test" description="Debug testing Test" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaA8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.AddToSVNCommand" commandName="Add to Version Control..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaBMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaBcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.extractLocal.assist" commandName="Quick Assist - Extract local variable (replace all occurrences)" description="Invokes quick assist and selects 'Extract local variable (replace all occurrences)'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaBsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.parameter.object" commandName="Introduce Parameter Object" description="Introduce a parameter object to a selected method" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaB8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaCMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.ReplaceWithTagCommand" commandName="Tag..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaCcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.working.set" commandName="Implementors in Working Set" description="Search for implementors of the selected interface in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaCsW4EeORw5cz-AoFKA" elementId="org.eclipse.pdt.ui.edit.text.select.enclosing" commandName="Select Enclosing Element" description="Expands selection to include enclosing element" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXdaC8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_JYSgccW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBEMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.create.delegate.methods" commandName="Generate Delegate Methods" description="Add delegate methods for a type's fields" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBEcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBEsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.showAnnotation" commandName="Show Annotation" description="Show Annotation" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBE8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBFMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.editors.text.show.tooltip" commandName="Show Tooltip Description" description="Shows the tooltip description for the element at the cursor" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBFcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBFsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.replace" commandName="Replace With Latest from Repository" description="Replace with last committed content from CVS Server" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBF8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBGMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.deleteRowCommand" commandName="deleteRowCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBGcW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBGsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeBG8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoIMW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.actions.LifeCycleTest.run" commandName="Run Maven Test" description="Run Maven Test" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoIcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.create.getter.setter" commandName="Generate Getters and Setters" description="Generate Getter and Setter methods for type's fields" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoIsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoI8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoJMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.source.header" commandName="Toggle Source/Header" description="Toggles between corresponding source and header files" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoJcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoJsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoJ8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoKMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSelectionAction" commandName="Execute Selected Text" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoKcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.constant" commandName="Extract Constant" description="Extracts a constant into a new static var and uses the new static var" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoKsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXeoK8W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.insertCommand" commandName="insertCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXfPMMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXfPMcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXfPMsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_JYQENsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXfPM8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.viewId" name="View"/> + <parameters xmi:id="_JXfPNMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/> + <parameters xmi:id="_JXfPNcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/> </commands> - <commands xmi:id="_RFgeacRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.copycolumn" commandName="Copy" category="_RF78N8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgeasRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.extract.superclass" commandName="Extract Superclass" description="Extract a set of members into a new superclass and try to use the new superclass" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgea8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteAsOneStatementAction" commandName="Execute Selected Text As One Statement" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgebMRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_RF8jQ8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgebcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.cut.line.to.beginning" commandName="Cut to Beginning of Line" description="Cut to the beginning of a line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgebsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.codan.commands.runCodanCommand" commandName="Run Code Analysis" category="_RF9KV8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFgeb8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_RF78OsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFcMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFccRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFcsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to" description="Go to a particular resource in the active view" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFc8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Git Index with HEAD Revision" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFdMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFdcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFdsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFd8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.workspace" commandName="Write Access in Workspace" description="Search for write references to the selected element in the workspace" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFeMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.delimiter.unix" commandName="Convert Line Delimiters to Unix (LF, \n, 0A, ¶)" description="Converts the line delimiters to Unix (LF, \n, 0A, ¶)" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFecRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFesRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.cutCommand" commandName="cutCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFe8RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CopyCommand" commandName="Copy To..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFfMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.convertLocalToField.assist" commandName="Quick Assist - Convert local variable to field" description="Invokes quick assist and selects 'Convert local variable to field'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhFfcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_RF9xY8RFEeOsdtank6IHbg"> - <parameters xmi:id="_RFhFfsRFEeOsdtank6IHbg" elementId="title" name="Title"/> - <parameters xmi:id="_RFhFf8RFEeOsdtank6IHbg" elementId="message" name="Message"/> - <parameters xmi:id="_RFhsgMRFEeOsdtank6IHbg" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/> - <parameters xmi:id="_RFhsgcRFEeOsdtank6IHbg" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/> - <parameters xmi:id="_RFhsgsRFEeOsdtank6IHbg" elementId="buttonLabel0" name="First Button Label"/> - <parameters xmi:id="_RFhsg8RFEeOsdtank6IHbg" elementId="buttonLabel1" name="Second Button Label"/> - <parameters xmi:id="_RFhshMRFEeOsdtank6IHbg" elementId="buttonLabel2" name="Third Button Label"/> - <parameters xmi:id="_RFhshcRFEeOsdtank6IHbg" elementId="buttonLabel3" name="Fourth Button Label"/> - <parameters xmi:id="_RFhshsRFEeOsdtank6IHbg" elementId="cancelReturns" name="Return Value on Cancel"/> + <commands xmi:id="_JXfPNsW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.copycolumn" commandName="Copy" category="_JYQEMcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXfPN8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.extract.superclass" commandName="Extract Superclass" description="Extract a set of members into a new superclass and try to use the new superclass" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXfPOMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteAsOneStatementAction" commandName="Execute Selected Text As One Statement" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXfPOcW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_JYQrQsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXfPOsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.cut.line.to.beginning" commandName="Cut to Beginning of Line" description="Cut to the beginning of a line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXfPO8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.codan.commands.runCodanCommand" commandName="Run Code Analysis" category="_JYR5YcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2QMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_JYQENMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2QcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2QsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2Q8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to" description="Go to a particular resource in the active view" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2RMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Git Index with HEAD Revision" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2RcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2RsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2R8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2SMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.workspace" commandName="Write Access in Workspace" description="Search for write references to the selected element in the workspace" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2ScW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.delimiter.unix" commandName="Convert Line Delimiters to Unix (LF, \n, 0A, ¶)" description="Converts the line delimiters to Unix (LF, \n, 0A, ¶)" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2SsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXf2S8W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.cutCommand" commandName="cutCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXgdUMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CopyCommand" commandName="Copy To..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXgdUcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.convertLocalToField.assist" commandName="Quick Assist - Convert local variable to field" description="Invokes quick assist and selects 'Convert local variable to field'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXgdUsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_JYSgcsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXgdU8W4EeORw5cz-AoFKA" elementId="title" name="Title"/> + <parameters xmi:id="_JXgdVMW4EeORw5cz-AoFKA" elementId="message" name="Message"/> + <parameters xmi:id="_JXgdVcW4EeORw5cz-AoFKA" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/> + <parameters xmi:id="_JXgdVsW4EeORw5cz-AoFKA" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/> + <parameters xmi:id="_JXgdV8W4EeORw5cz-AoFKA" elementId="buttonLabel0" name="First Button Label"/> + <parameters xmi:id="_JXgdWMW4EeORw5cz-AoFKA" elementId="buttonLabel1" name="Second Button Label"/> + <parameters xmi:id="_JXgdWcW4EeORw5cz-AoFKA" elementId="buttonLabel2" name="Third Button Label"/> + <parameters xmi:id="_JXgdWsW4EeORw5cz-AoFKA" elementId="buttonLabel3" name="Fourth Button Label"/> + <parameters xmi:id="_JXgdW8W4EeORw5cz-AoFKA" elementId="cancelReturns" name="Return Value on Cancel"/> </commands> - <commands xmi:id="_RFhsh8RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.rerunJob" commandName="Rerun Job" description="Resend the interactive job commands" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhsiMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhsicRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhsisRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.open.include.browser" commandName="Open Include Browser" description="Open an include browser on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhsi8RFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.add" commandName="Add to Version Control" description="Add the Selected Resources to Version Control" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhsjMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhsjcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.convertLocalToField.assist" commandName="Quick Assist - Convert local variable to var" description="Invokes quick assist and selects 'Convert local variable to var'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFhsjsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CompareWithLatestRevisionCommand" commandName="Latest from Repository" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTkMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTkcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.opendecl" commandName="Open declaration" description="Follow to the directive definition" category="_RF78PcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTksRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.change.type" commandName="Generalize Declared Type" description="Change the declaration of a selected variable to a more general type consistent with usage" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTk8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTlMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTlcRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.edit.text.show.phpdoc" commandName="Show Tooltip Description" description="Shows the tooltip description for the element at the cursor" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTlsRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.replaceWithBase" commandName="Revert to Base" description="Revert to Base revisions" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTl8RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.AddRevisionLinkCommand" commandName="Add Revision Link..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTmMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.commands.ScriptWatch" commandName="Watch" description="Create new watch expression" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTmcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.menu.createParserLog" commandName="Create Parser Log File" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTmsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsd.ui.refactor.makeTypeGlobal" commandName="Make &Anonymous Type Global" description="Promotes anonymous type to global level and replaces its references" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTm8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.project" commandName="Implementors in Project" description="Search for implementors of the selected interface in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTnMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.search.findrefs.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTncRFEeOsdtank6IHbg" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFiTnsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.create.delegate.methods" commandName="Generate Delegate Functions" description="Add delegate functions for a type's vars" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6oMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.AllInstances" commandName="All Instances" description="View all instances of the selected type loaded in the target VM" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6ocRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.showChangeRulerInformation" commandName="Show Quick Diff Ruler Tooltip" description="Displays quick diff or revision information for the caret line in a focused hover" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6osRFEeOsdtank6IHbg" elementId="org.eclipse.pdt.ui.edit.text.select.last" commandName="Restore Last Selection" description="Restores last selection" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6o8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6pMRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.edit.text.php.open.manual" commandName="Open manual" description="Open function manual in an internal web browser" category="_RF9xacRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6pcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6psRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6p8RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CompareRepositoryWithTagCommand" commandName="Compare With Tag..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6qMRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.connectivity.commands.export" commandName="Export Profiles Command" description="Command to export connection profiles" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6qcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewRefresh" commandName="Refresh" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFi6qsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_RF9xasRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFi6q8RFEeOsdtank6IHbg" elementId="cheatSheetId" name="Identifier" optional="false"/> - <parameters xmi:id="_RFi6rMRFEeOsdtank6IHbg" elementId="name" name="Name" optional="false"/> - <parameters xmi:id="_RFi6rcRFEeOsdtank6IHbg" elementId="url" name="URL" optional="false"/> + <commands xmi:id="_JXhEYMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.rerunJob" commandName="Rerun Job" description="Resend the interactive job commands" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEYcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEYsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEY8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.open.include.browser" commandName="Open Include Browser" description="Open an include browser on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEZMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.add" commandName="Add to Version Control" description="Add the Selected Resources to Version Control" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEZcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEZsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.convertLocalToField.assist" commandName="Quick Assist - Convert local variable to var" description="Invokes quick assist and selects 'Convert local variable to var'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEZ8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CompareWithLatestRevisionCommand" commandName="Latest from Repository" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEaMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEacW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.opendecl" commandName="Open declaration" description="Follow to the directive definition" category="_JYQEN8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEasW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.change.type" commandName="Generalize Declared Type" description="Change the declaration of a selected variable to a more general type consistent with usage" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhEa8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhrcMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhrccW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.edit.text.show.phpdoc" commandName="Show Tooltip Description" description="Shows the tooltip description for the element at the cursor" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhrcsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.replaceWithBase" commandName="Revert to Base" description="Revert to Base revisions" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhrc8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.AddRevisionLinkCommand" commandName="Add Revision Link..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhrdMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.commands.ScriptWatch" commandName="Watch" description="Create new watch expression" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhrdcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.menu.createParserLog" commandName="Create Parser Log File" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhrdsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsd.ui.refactor.makeTypeGlobal" commandName="Make &Anonymous Type Global" description="Promotes anonymous type to global level and replaces its references" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhrd8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.project" commandName="Implementors in Project" description="Search for implementors of the selected interface in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhreMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.search.findrefs.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhrecW4EeORw5cz-AoFKA" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXhresW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.create.delegate.methods" commandName="Generate Delegate Functions" description="Add delegate functions for a type's vars" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiSgMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.AllInstances" commandName="All Instances" description="View all instances of the selected type loaded in the target VM" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiSgcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.showChangeRulerInformation" commandName="Show Quick Diff Ruler Tooltip" description="Displays quick diff or revision information for the caret line in a focused hover" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiSgsW4EeORw5cz-AoFKA" elementId="org.eclipse.pdt.ui.edit.text.select.last" commandName="Restore Last Selection" description="Restores last selection" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiSg8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiShMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.edit.text.php.open.manual" commandName="Open manual" description="Open function manual in an internal web browser" category="_JYSgeMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiShcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiShsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiSh8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CompareRepositoryWithTagCommand" commandName="Compare With Tag..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiSiMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.connectivity.commands.export" commandName="Export Profiles Command" description="Command to export connection profiles" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiSicW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewRefresh" commandName="Refresh" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXiSisW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_JYTHgMW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXiSi8W4EeORw5cz-AoFKA" elementId="cheatSheetId" name="Identifier" optional="false"/> + <parameters xmi:id="_JXi5kMW4EeORw5cz-AoFKA" elementId="name" name="Name" optional="false"/> + <parameters xmi:id="_JXi5kcW4EeORw5cz-AoFKA" elementId="url" name="URL" optional="false"/> </commands> - <commands xmi:id="_RFi6rsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.editCommand" commandName="editCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhsMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.DisconnectCommand" commandName="Disconnect" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhscRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.lockToolBar" commandName="Lock the Toolbars" description="Lock the Toolbars" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhssRFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhs8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhtMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectNextTraceRecord" commandName="Next Trace Record" description="Select Next Trace Record" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhtcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_RF9KW8RFEeOsdtank6IHbg"> - <parameters xmi:id="_RFjhtsRFEeOsdtank6IHbg" elementId="importWizardId" name="Import Wizard"/> + <commands xmi:id="_JXi5ksW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.editCommand" commandName="editCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXi5k8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.DisconnectCommand" commandName="Disconnect" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXi5lMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.lockToolBar" commandName="Lock the Toolbars" description="Lock the Toolbars" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXi5lcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXi5lsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXi5l8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectNextTraceRecord" commandName="Next Trace Record" description="Select Next Trace Record" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXi5mMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_JYR5ZcW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXi5mcW4EeORw5cz-AoFKA" elementId="importWizardId" name="Import Wizard"/> </commands> - <commands xmi:id="_RFjht8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhuMRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhucRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhusRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file" commandName="Search All Occurrences in File" description="Search for all occurrences of the selected element in its declaring file" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhu8RFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.update" commandName="Update" description="Update resources with new content from the repository" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhvMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.add.include" commandName="Add Include" description="Create include statement on selection" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhvcRFEeOsdtank6IHbg" elementId="org.eclipse.pdt.ui.edit.text.select.previous" commandName="Select Previous Element" description="Expands selection to include previous sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFjhvsRFEeOsdtank6IHbg" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIwMRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIwcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.RenameBranch" commandName="Rename Branch..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIwsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.create.getter.setter" commandName="Generate Getters and Setters" description="Generate Getter and Setter functions for type's vars" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIw8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIxMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIxcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.encapsulateField.assist" commandName="Quick Assist - Create getter/setter for field" description="Invokes quick assist and selects 'Create getter/setter for field'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIxsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIx8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIyMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIycRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIysRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIy8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIzMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIzcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIzsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkIz8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv0MRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv0cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_RF9KW8RFEeOsdtank6IHbg"> - <parameters xmi:id="_RFkv0sRFEeOsdtank6IHbg" elementId="exportWizardId" name="Export Wizard"/> + <commands xmi:id="_JXi5msW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXjgoMW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXjgocW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXjgosW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file" commandName="Search All Occurrences in File" description="Search for all occurrences of the selected element in its declaring file" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXjgo8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.update" commandName="Update" description="Update resources with new content from the repository" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXjgpMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.add.include" commandName="Add Include" description="Create include statement on selection" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXjgpcW4EeORw5cz-AoFKA" elementId="org.eclipse.pdt.ui.edit.text.select.previous" commandName="Select Previous Element" description="Expands selection to include previous sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXjgpsW4EeORw5cz-AoFKA" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXjgp8W4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXjgqMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.RenameBranch" commandName="Rename Branch..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkHsMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.create.getter.setter" commandName="Generate Getters and Setters" description="Generate Getter and Setter functions for type's vars" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkHscW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkHssW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkHs8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.encapsulateField.assist" commandName="Quick Assist - Create getter/setter for field" description="Invokes quick assist and selects 'Create getter/setter for field'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkHtMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkHtcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkHtsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkuwMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkuwcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkuwsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkuw8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkuxMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkuxcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkuxsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXkux8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXlV0MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_JYR5ZcW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXlV0cW4EeORw5cz-AoFKA" elementId="exportWizardId" name="Export Wizard"/> </commands> - <commands xmi:id="_RFkv08RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file.quickMenu" commandName="Show Occurrences in File Quick Menu" description="Shows the Occurrences in File quick menu" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv1MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.command.breakpointProperties" commandName="C/C++ Breakpoint Properties" description="View and edit properties for a given C/C++ breakpoint" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv1cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv1sRFEeOsdtank6IHbg" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_RF-YcMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv18RFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.ScanLocksCommand" commandName="Scan Locks" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv2MRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFkv2cRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/> + <commands xmi:id="_JXlV0sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file.quickMenu" commandName="Show Occurrences in File Quick Menu" description="Shows the Occurrences in File quick menu" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXlV08W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.command.breakpointProperties" commandName="C/C++ Breakpoint Properties" description="View and edit properties for a given C/C++ breakpoint" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXlV1MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXlV1cW4EeORw5cz-AoFKA" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_JYTHhMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXlV1sW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.ScanLocksCommand" commandName="Scan Locks" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXl84MW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXl84cW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/> </commands> - <commands xmi:id="_RFkv2sRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv28RFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv3MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv3cRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFkv3sRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW4MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW4cRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW4sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.project" commandName="Write Access in Project" description="Search for write references to the selected element in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW48RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.specific_content_assist.command" commandName="Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_RF8jTMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFlW5MRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_JXl84sW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXl848W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXl85MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXl85cW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXl85sW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXl858W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXmj8MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXmj8cW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.project" commandName="Write Access in Project" description="Search for write references to the selected element in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXmj8sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.specific_content_assist.command" commandName="Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_JYRSUcW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXmj88W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_RFlW5cRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW5sRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.SetKeywordsCommand" commandName="Set Keywords..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW58RFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW6MRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.navigate.open.type" commandName="Open Type" description="Opens a type in a PHP editor" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW6cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW6sRFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW68RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.working.set" commandName="Implementors in Working Set" description="Search for implementors of the selected interface in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW7MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.refactor.hide.method" commandName="Hide Member Function..." category="_RF78OsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW7cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_RF78M8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW7sRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.holdJob" commandName="Hold Job" description="Hold the job" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFlW78RFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl98MRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl98cRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.quick.format" commandName="Format Element" description="Format enclosing text element" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl98sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl988RFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl99MRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl99cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl99sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl998RFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl9-MRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.openmp.core.command2" commandName="Show OpenMP artifacts" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl9-cRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.UpgradeProjectsCommand" commandName="Upgrade Projects..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl9-sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl9-8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl9_MRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl9_cRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.commands.ScriptInspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFl9_sRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Git Index" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlAMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.SynchronizeCommand" commandName="Synchronize with Repository" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlAcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.open.quick.macro.explorer" commandName="Explore Macro Expansion" description="Opens a quick view for macro expansion exploration" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlAsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.externalize.strings" commandName="Externalize Strings" description="Finds all strings that are not externalized and moves them into a separate property file" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlA8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlBMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.working.set" commandName="Write Access in Working Set" description="Search for write references to the selected element in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlBcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.castToType" commandName="Cast To Type..." category="_RF8jScRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlBsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlB8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlCMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.EditPropertiesCommand" commandName="Show Properties" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlCcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlCsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.indirection" commandName="Introduce Indirection" description="Introduce an indirection to encapsulate invocations of a selected function" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlC8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlDMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlDcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFmlDsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMEMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Annotations" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMEcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMEsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnME8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Recenter the window based on the cursor" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMFMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.restoreDefaultType" commandName="Restore Original Type" description="View and edit properties for a given C/C++ breakpoint" category="_RF8jScRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMFcRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.editStyleCommand" commandName="editStyleCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMFsRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.tag" commandName="Tag as Version" description="Tag the resources with a CVS version tag" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMF8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.debug.ui.breakpoint.properties" commandName="JavaScript Breakpoint Properties" description="View and edit the properties for a given JavaScript breakpoint" category="_RF9KUsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMGMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMGcRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CompareRepositoryWithBranchCommand" commandName="Compare With Branch..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMGsRFEeOsdtank6IHbg" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMG8RFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.publishToLibraryCommand" commandName="publishToLibraryCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMHMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMHcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMHsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnMH8RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.format" commandName="Format" description="Format the selected text" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzIMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzIcRFEeOsdtank6IHbg" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzIsRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzI8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzJMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzJcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_RF9xbcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFnzJsRFEeOsdtank6IHbg" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_JXmj9MW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXmj9cW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.SetKeywordsCommand" commandName="Set Keywords..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXmj9sW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnLAMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.navigate.open.type" commandName="Open Type" description="Opens a type in a PHP editor" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnLAcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnLAsW4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnLA8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.working.set" commandName="Implementors in Working Set" description="Search for implementors of the selected interface in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnLBMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.refactor.hide.method" commandName="Hide Member Function..." category="_JYQENMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnLBcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_JYPdJsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnLBsW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.holdJob" commandName="Hold Job" description="Hold the job" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnLB8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnyEMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnyEcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.quick.format" commandName="Format Element" description="Format enclosing text element" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnyEsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnyE8W4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnyFMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnyFcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnyFsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXnyF8W4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXoZIMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.openmp.core.command2" commandName="Show OpenMP artifacts" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXoZIcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.UpgradeProjectsCommand" commandName="Upgrade Projects..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXoZIsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXoZI8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXoZJMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXoZJcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.commands.ScriptInspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXoZJsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Git Index" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpAMMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.SynchronizeCommand" commandName="Synchronize with Repository" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpAMcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.open.quick.macro.explorer" commandName="Explore Macro Expansion" description="Opens a quick view for macro expansion exploration" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpAMsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.externalize.strings" commandName="Externalize Strings" description="Finds all strings that are not externalized and moves them into a separate property file" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpAM8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpANMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.working.set" commandName="Write Access in Working Set" description="Search for write references to the selected element in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpANcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.castToType" commandName="Cast To Type..." category="_JYQrSMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpANsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpnQMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpnQcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.EditPropertiesCommand" commandName="Show Properties" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpnQsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpnQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.indirection" commandName="Introduce Indirection" description="Introduce an indirection to encapsulate invocations of a selected function" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpnRMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpnRcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpnRsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXpnR8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXqOUMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Annotations" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXqOUcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXqOUsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXqOU8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Recenter the window based on the cursor" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXqOVMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.restoreDefaultType" commandName="Restore Original Type" description="View and edit properties for a given C/C++ breakpoint" category="_JYQrSMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXqOVcW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.editStyleCommand" commandName="editStyleCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXqOVsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.tag" commandName="Tag as Version" description="Tag the resources with a CVS version tag" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXq1YMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.debug.ui.breakpoint.properties" commandName="JavaScript Breakpoint Properties" description="View and edit the properties for a given JavaScript breakpoint" category="_JYRSVcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXq1YcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXq1YsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CompareRepositoryWithBranchCommand" commandName="Compare With Branch..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXq1Y8W4EeORw5cz-AoFKA" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXq1ZMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.publishToLibraryCommand" commandName="publishToLibraryCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXq1ZcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXq1ZsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXq1Z8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXrccMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.format" commandName="Format" description="Format the selected text" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXrcccW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXrccsW4EeORw5cz-AoFKA" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXrcc8W4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXrcdMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXrcdcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXrcdsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_JYTHg8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXrcd8W4EeORw5cz-AoFKA" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_RFnzJ8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_RF9KUsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzKMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzKcRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.refreshMonitor" commandName="Refresh Monitor" category="_RF9KXcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzKsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzK8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzLMRFEeOsdtank6IHbg" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzLcRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSQLAction" commandName="Execute All" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzLsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.menu.rebuildIndex" commandName="Rebuild Index" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFnzL8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Git Index" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaMMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.revision.graph.command.ShowRevisionGraphCommand" commandName="Show Revision Graph..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaMcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.workspace" commandName="Read Access in Workspace" description="Search for read references to the selected element in the workspace" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaMsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.customizePerspective" commandName="Customize Perspective" description="Customize the current perspective" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaM8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaNMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.organize.includes" commandName="Organize Includes" description="Evaluates all required includes and replaces the current includes" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaNcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.hierarchy" commandName="Read Access in Hierarchy" description="Search for read references of the selected element in its hierarchy" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaNsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.change.type" commandName="Generalize Declared Type" description="Change the declaration of a selected variable to a more general type consistent with usage" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaN8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Checkout" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaOMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaOcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaOsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.editBindingCommand" commandName="editBindingCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaO8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.commands.openscrapbook" commandName="Open SQL Scrapboo&k" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaPMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file" commandName="Search All Occurrences in File" description="Search for all occurrences of the selected element in its declaring file" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaPcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method in its hierarchy" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFoaPsRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.uncomment" commandName="Uncomment" description="Uncomment the selected DLTK comment lines" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBQMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBQcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_RF78M8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBQsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBQ8RFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.applyStyleCommand" commandName="applyStyleCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBRMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.ReplaceWithLatestRevisionCommand" commandName="Latest from Repository" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBRcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.project" commandName="Read Access in Project" description="Search for read references to the selected element in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBRsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBR8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.in.package.view" commandName="Show in Script Explorer" description="Show the selected element in the Script Explorer" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBSMRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.replaceWithTag" commandName="Replace With Another Branch or Version" description="Replace with Branch or Version on the CVS Server" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBScRFEeOsdtank6IHbg" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_RF9xbMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBSsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBS8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBTMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Push" commandName="Push" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBTcRFEeOsdtank6IHbg" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_RF9xbMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBTsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpBT8RFEeOsdtank6IHbg" elementId="org.eclipse.help.ui.ignoreMissingPlaceholders" commandName="Do not warn of missing documentation" description="Sets the help preferences to no longer report a warning about the current set of missing documents." category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoUMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoUcRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.xml.commands.empty" commandName="Empty command" description="Command which does nothing" category="_RF8jQ8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoUsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoU8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoVMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.deleteConfigsCommand" commandName="Reset to Default" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoVcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoVsRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.suspendJob" commandName="Suspend Job" description="Suspend the job" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoV8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoWMRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.connectivity.commands.addprofile" commandName="New Connection Profile Command" description="Command to create a new connection profile" category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFpoWcRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.connectivity.ui.ignoreCategory" name="ignoreCategory"/> - <parameters xmi:id="_RFpoWsRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.connectivity.ui.useSelection" name="useSelection"/> + <commands xmi:id="_JXrceMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_JYRSVcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXrcecW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXrcesW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.refreshMonitor" commandName="Refresh Monitor" category="_JYR5Z8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDgMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDgcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDgsW4EeORw5cz-AoFKA" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDg8W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSQLAction" commandName="Execute All" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDhMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.menu.rebuildIndex" commandName="Rebuild Index" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDhcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Git Index" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDhsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.revision.graph.command.ShowRevisionGraphCommand" commandName="Show Revision Graph..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDh8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.workspace" commandName="Read Access in Workspace" description="Search for read references to the selected element in the workspace" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDiMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.customizePerspective" commandName="Customize Perspective" description="Customize the current perspective" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDicW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsDisW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.organize.includes" commandName="Organize Includes" description="Evaluates all required includes and replaces the current includes" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqkMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.hierarchy" commandName="Read Access in Hierarchy" description="Search for read references of the selected element in its hierarchy" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqkcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.change.type" commandName="Generalize Declared Type" description="Change the declaration of a selected variable to a more general type consistent with usage" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqksW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Checkout" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqk8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqlMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqlcW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.editBindingCommand" commandName="editBindingCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqlsW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.commands.openscrapbook" commandName="Open SQL Scrapboo&k" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsql8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file" commandName="Search All Occurrences in File" description="Search for all occurrences of the selected element in its declaring file" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqmMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method in its hierarchy" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqmcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.uncomment" commandName="Uncomment" description="Uncomment the selected DLTK comment lines" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXsqmsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRoMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_JYPdJsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRocW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRosW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.applyStyleCommand" commandName="applyStyleCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRo8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.ReplaceWithLatestRevisionCommand" commandName="Latest from Repository" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRpMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.project" commandName="Read Access in Project" description="Search for read references to the selected element in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRpcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRpsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.in.package.view" commandName="Show in Script Explorer" description="Show the selected element in the Script Explorer" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRp8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.replaceWithTag" commandName="Replace With Another Branch or Version" description="Replace with Branch or Version on the CVS Server" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRqMW4EeORw5cz-AoFKA" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_JYTHgsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXtRqcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4sMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4scW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Push" commandName="Push" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4ssW4EeORw5cz-AoFKA" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_JYTHgsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4s8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4tMW4EeORw5cz-AoFKA" elementId="org.eclipse.help.ui.ignoreMissingPlaceholders" commandName="Do not warn of missing documentation" description="Sets the help preferences to no longer report a warning about the current set of missing documents." category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4tcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4tsW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.xml.commands.empty" commandName="Empty command" description="Command which does nothing" category="_JYQrQsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4t8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4uMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4ucW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.deleteConfigsCommand" commandName="Reset to Default" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXt4usW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXufwMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.suspendJob" commandName="Suspend Job" description="Suspend the job" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXufwcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXufwsW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.connectivity.commands.addprofile" commandName="New Connection Profile Command" description="Command to create a new connection profile" category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXufw8W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.connectivity.ui.ignoreCategory" name="ignoreCategory"/> + <parameters xmi:id="_JXufxMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.connectivity.ui.useSelection" name="useSelection"/> </commands> - <commands xmi:id="_RFpoW8RFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.edit.text.php.open.call.hierarchy" commandName="Open Call Hierarchy" description="Opens a call hierarchy for the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoXMRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoXcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.refactor.toggle.function" commandName="Toggle Function - Refactoring " description="Toggles the implementation between header and implementation file" category="_RF78OsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFpoXsRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.testing.testingShortcut.rerunLast" commandName="Rerun testing Test" description="Rerun testing Test" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPYMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_RF78M8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPYcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPYsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPY8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.ide.copyConfigCommand" commandName="Copy Configuration Data To Clipboard" description="Copies the configuration data (system properties, installed bundles, etc) to the clipboard." category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPZMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPZcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPZsRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.connectivity.commands.addrepository" commandName="New Repository Profile Command" description="Command to create a new repository profile" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPZ8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPaMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPacRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.run" commandName="Run XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPasRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.opencview" commandName="Show in C/C++ Project view" description="Show the selected resource in the C/C++ Project view" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPa8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPbMRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.result.removeAllInstances" commandName="Remove All Visible Results" category="_RF8jR8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPbcRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPbsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFqPb8RFEeOsdtank6IHbg" elementId="org.eclipse.m2e.actions.LifeCycleClean.run" commandName="Run Maven Clean" description="Run Maven Clean" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2cMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2ccRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.splitCommand" commandName="splitCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2csRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.command.autoheader" commandName="Invoke Autoheader" description="Run autoheader from the selected directory" category="_RF78NcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2c8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2dMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2dcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2dsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2d8RFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.insertColumnCommand" commandName="insertColumnCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2eMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2ecRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.pastecolumn" commandName="Paste" category="_RF78N8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2esRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2e8RFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_RF8jQcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2fMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.targetBuildLastCommand" commandName="Rebuild Last Target" description="Rebuild the last make target for the selected container or project." category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2fcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFq2fsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdgMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CommitCommand" commandName="Commit..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdgcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.debugNewExecutable" commandName="Debug New Executable" description="Debug a new executable" category="_RF9xZMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdgsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.self.encapsulate.field" commandName="Encapsulate Var" description="Create getting and setting functions for the var and use only those to access the var" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdg8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdhMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_RF78M8RFEeOsdtank6IHbg"> - <parameters xmi:id="_RFrdhcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/> - <parameters xmi:id="_RFrdhsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/> + <commands xmi:id="_JXufxcW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.edit.text.php.open.call.hierarchy" commandName="Open Call Hierarchy" description="Opens a call hierarchy for the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXufxsW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXufx8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.refactor.toggle.function" commandName="Toggle Function - Refactoring " description="Toggles the implementation between header and implementation file" category="_JYQENMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXufyMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.testing.testingShortcut.rerunLast" commandName="Rerun testing Test" description="Rerun testing Test" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXufycW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_JYPdJsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXufysW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG0MW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG0cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ide.copyConfigCommand" commandName="Copy Configuration Data To Clipboard" description="Copies the configuration data (system properties, installed bundles, etc) to the clipboard." category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG0sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG08W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG1MW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.connectivity.commands.addrepository" commandName="New Repository Profile Command" description="Command to create a new repository profile" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG1cW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG1sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG18W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.run" commandName="Run XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG2MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.opencview" commandName="Show in C/C++ Project view" description="Show the selected resource in the C/C++ Project view" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvG2cW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt4MW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.result.removeAllInstances" commandName="Remove All Visible Results" category="_JYQrRsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt4cW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt4sW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt48W4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.actions.LifeCycleClean.run" commandName="Run Maven Clean" description="Run Maven Clean" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt5MW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt5cW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.splitCommand" commandName="splitCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt5sW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.command.autoheader" commandName="Invoke Autoheader" description="Run autoheader from the selected directory" category="_JYPdKMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt58W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt6MW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt6cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXvt6sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXwU8MW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.insertColumnCommand" commandName="insertColumnCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXwU8cW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXwU8sW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.pastecolumn" commandName="Paste" category="_JYQEMcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXwU88W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXwU9MW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_JYQrQMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXwU9cW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.targetBuildLastCommand" commandName="Rebuild Last Target" description="Rebuild the last make target for the selected container or project." category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXwU9sW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXwU98W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXw8AMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CommitCommand" commandName="Commit..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXw8AcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.debugNewExecutable" commandName="Debug New Executable" description="Debug a new executable" category="_JYSgc8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXw8AsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.self.encapsulate.field" commandName="Encapsulate Var" description="Create getting and setting functions for the var and use only those to access the var" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXw8A8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXw8BMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_JYPdJsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXw8BcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/> + <parameters xmi:id="_JXw8BsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/> </commands> - <commands xmi:id="_RFrdh8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdiMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdicRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdisRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdi8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdjMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.command.aclocal" commandName="Invoke Aclocal" description="Run aclocal from the selected directory" category="_RF78NcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdjcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.stopTracing" commandName="Stop Tracing " description="Stop Tracing Experiment" category="_RF9KVMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdjsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFrdj8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEkMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEkcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_RF9xYsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEksRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Git Index" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEk8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsElMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsElcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsElsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEl8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.uncomment" commandName="Uncomment" description="Uncomment the selected # style comment lines" category="_RF78PcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEmMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFsEmcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/> + <commands xmi:id="_JXw8B8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXw8CMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXw8CcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXw8CsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjEMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjEcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.command.aclocal" commandName="Invoke Aclocal" description="Run aclocal from the selected directory" category="_JYPdKMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjEsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.stopTracing" commandName="Stop Tracing " description="Stop Tracing Experiment" category="_JYRSV8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjE8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjFMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjFcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjFsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_JYSgccW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjF8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Git Index" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjGMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXxjGcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyKIMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyKIcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyKIsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.uncomment" commandName="Uncomment" description="Uncomment the selected # style comment lines" category="_JYQEN8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyKI8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXyKJMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/> </commands> - <commands xmi:id="_RFsEmsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.TagCommand" commandName="Tag..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEm8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEnMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.search.findrefs.workingset" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEncRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsEnsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_RF9xbcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFsroMRFEeOsdtank6IHbg" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_JXyKJcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.TagCommand" commandName="Tag..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyKJsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyKJ8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.search.findrefs.workingset" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyKKMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyKKcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_JYTHg8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXyKKsW4EeORw5cz-AoFKA" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_RFsrocRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.resumeJob" commandName="Resume Job" description="Resume the job" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrosRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsro8RFEeOsdtank6IHbg" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_RF9KU8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrpMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_RF9xasRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFsrpcRFEeOsdtank6IHbg" elementId="href" name="Help topic href"/> + <commands xmi:id="_JXyxMMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.resumeJob" commandName="Resume Job" description="Resume the job" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyxMcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyxMsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_JYRSVsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyxM8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_JYTHgMW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JXyxNMW4EeORw5cz-AoFKA" elementId="href" name="Help topic href"/> </commands> - <commands xmi:id="_RFsrpsRFEeOsdtank6IHbg" elementId="org.eclipse.jst.jsp.ui.refactor.rename" commandName="Rename" description="Rename a Java Element" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrp8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrqMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrqcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrqsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to field" description="Invokes quick assist and selects 'Assign parameter to field'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrq8RFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.commitAll" commandName="Commit All Outgoing Changes" description="Commit all outgoing changes to the repository" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrrMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrrcRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.cvsPerspective" commandName="CVS Repository Exploring" description="Open the CVS Repository Exploring Perspective" category="_RF78M8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFsrrsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSsMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSscRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.removeMonitor" commandName="Remove Monitor" category="_RF9KXcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSssRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSs8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtStMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtStcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtStsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSt8RFEeOsdtank6IHbg" elementId="org.eclipse.help.ui.closeTray" commandName="Close User Assistance Tray" description="Close the user assistance tray containing context help information and cheat sheets." category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSuMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.select.next" commandName="Select Next C/C++ Element" description="Expand the selection to next C/C++ element" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSucRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the compilation unit" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSusRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.working.set" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSu8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSvMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFtSvcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5wMRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.checkout" commandName="Checkout from CVS" description="Checkout from CVS" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5wcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5wsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5w8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5xMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.SetExternalDefinitionCommand" commandName="Set External Definition..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5xcRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.compareWithRemote" commandName="Compare With Latest from Repository" description="Compare with Content on CVS Server" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5xsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5x8RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.mpi.core.command2" commandName="find mpi artifacts" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5yMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5ycRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5ysRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5y8RFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.commands.empty" commandName="Empty command" description="Command which does nothing" category="_RF8jQ8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5zMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5zcRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFt5zsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.menu.updateUnresolvedIncludes" commandName="Re-resolve Unresolved Includes" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug0MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.workspace" commandName="Write Access in Workspace" description="Search for write references to the selected element in the workspace" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug0cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug0sRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug08RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.delete.line.to.beginning" commandName="Delete to Beginning of Line" description="Delete to the beginning of a line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug1MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug1cRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.core.ui.command.openPom" commandName="Open Maven POM" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug1sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug18RFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.replaceWithRevision" commandName="Replace With Revision" description="Replace with Revision on CVS Server" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug2MRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.connectivity.commands.showcategory" commandName="Show Category" description="Show Category" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug2cRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.compareWithRevision" commandName="Compare With Revision" description="Compare with Revision on CVS Server" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug2sRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug28RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.try.catch" commandName="Surround with try/catch Block" description="Surround the selected text with a try/catch block" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug3MRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFug3cRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.navigate.open.method" commandName="Opens a method in a PHP editor" description="Opens a method in a PHP editor" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH4MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH4cRFEeOsdtank6IHbg" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFvH4sRFEeOsdtank6IHbg" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/> - <parameters xmi:id="_RFvH48RFEeOsdtank6IHbg" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/> + <commands xmi:id="_JXyxNcW4EeORw5cz-AoFKA" elementId="org.eclipse.jst.jsp.ui.refactor.rename" commandName="Rename" description="Rename a Java Element" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyxNsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyxN8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyxOMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXyxOcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to field" description="Invokes quick assist and selects 'Assign parameter to field'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYQMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.commitAll" commandName="Commit All Outgoing Changes" description="Commit all outgoing changes to the repository" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYQcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYQsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.cvsPerspective" commandName="CVS Repository Exploring" description="Open the CVS Repository Exploring Perspective" category="_JYPdJsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYRMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYRcW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.removeMonitor" commandName="Remove Monitor" category="_JYR5Z8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYRsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYR8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYSMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYScW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXzYSsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_UMW4EeORw5cz-AoFKA" elementId="org.eclipse.help.ui.closeTray" commandName="Close User Assistance Tray" description="Close the user assistance tray containing context help information and cheat sheets." category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_UcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.select.next" commandName="Select Next C/C++ Element" description="Expand the selection to next C/C++ element" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_UsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the compilation unit" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_U8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.working.set" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_VMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_VcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_VsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_V8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.checkout" commandName="Checkout from CVS" description="Checkout from CVS" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_WMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JXz_WcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX0mYMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX0mYcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.SetExternalDefinitionCommand" commandName="Set External Definition..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX0mYsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.compareWithRemote" commandName="Compare With Latest from Repository" description="Compare with Content on CVS Server" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX0mY8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX0mZMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.mpi.core.command2" commandName="find mpi artifacts" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX0mZcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX0mZsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1NcMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1NccW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.commands.empty" commandName="Empty command" description="Command which does nothing" category="_JYQrQsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1NcsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1Nc8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1NdMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.menu.updateUnresolvedIncludes" commandName="Re-resolve Unresolved Includes" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1NdcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.workspace" commandName="Write Access in Workspace" description="Search for write references to the selected element in the workspace" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1NdsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1Nd8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1NeMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.delete.line.to.beginning" commandName="Delete to Beginning of Line" description="Delete to the beginning of a line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX1NecW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX10gMW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.core.ui.command.openPom" commandName="Open Maven POM" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX10gcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX10gsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.replaceWithRevision" commandName="Replace With Revision" description="Replace with Revision on CVS Server" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX10g8W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.connectivity.commands.showcategory" commandName="Show Category" description="Show Category" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX10hMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.compareWithRevision" commandName="Compare With Revision" description="Compare with Revision on CVS Server" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX10hcW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX10hsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.try.catch" commandName="Surround with try/catch Block" description="Surround the selected text with a try/catch block" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX10h8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX10iMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.navigate.open.method" commandName="Opens a method in a PHP editor" description="Opens a method in a PHP editor" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX2bkMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX2bkcW4EeORw5cz-AoFKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JX2bksW4EeORw5cz-AoFKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/> + <parameters xmi:id="_JX2bk8W4EeORw5cz-AoFKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/> </commands> - <commands xmi:id="_RFvH5MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.menu.freshenAllFiles" commandName="Freshen All Files in Index" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH5cRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH5sRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.explorer" commandName="PHP Script Explorer" description="Shows the Script Explorer" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH58RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH6MRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.add.javadoc.comment" commandName="Add Javadoc Comment" description="Add a Scriptdoc comment stub to the member element" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH6cRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.newWizard" commandName="New" description="Open the New item wizard" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH6sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH68RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFvH7MRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/> + <commands xmi:id="_JX2blMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.menu.freshenAllFiles" commandName="Freshen All Files in Index" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX2blcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX2blsW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.explorer" commandName="PHP Script Explorer" description="Shows the Script Explorer" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX2bl8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX2bmMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.add.javadoc.comment" commandName="Add Javadoc Comment" description="Add a Scriptdoc comment stub to the member element" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3CoMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.newWizard" commandName="New" description="Open the New item wizard" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3CocW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3CosW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JX3Co8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/> </commands> - <commands xmi:id="_RFvH7cRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.addAllPluginsToJavaSearch" commandName="Add All Plug-ins to Java Search" description="Adds all plug-ins in the target platform to java search" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvH7sRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.deleteColumnCommand" commandName="deleteColumnCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu8MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu8cRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CompareWithBranchCommand" commandName="Branch..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu8sRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.branch" commandName="Branch" description="Branch" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu88RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu9MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.reverseToggle" commandName="Reverse Toggle" description="Toggle Reverse Debugging" category="_RF9KUMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu9cRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu9sRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.editor.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu98RFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.removeJob" commandName="Remove Job Entry" description="Permanently remove job entry from table" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu-MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu-cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu-sRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.runAction" commandName="Run" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu-8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu_MRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.baseInsertCommand" commandName="baseInsertCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFvu_cRFEeOsdtank6IHbg" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.run" commandName="Run CLI Application" description="Run CLI Application" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWAMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWAcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor" commandName="XPath Processor" category="_RF9KWMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFwWAsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.commands.radioStateParameter" name="State" optional="false"/> + <commands xmi:id="_JX3CpMW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.addAllPluginsToJavaSearch" commandName="Add All Plug-ins to Java Search" description="Adds all plug-ins in the target platform to java search" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3CpcW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.deleteColumnCommand" commandName="deleteColumnCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3CpsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3Cp8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CompareWithBranchCommand" commandName="Branch..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3CqMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.branch" commandName="Branch" description="Branch" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3psMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3pscW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.reverseToggle" commandName="Reverse Toggle" description="Toggle Reverse Debugging" category="_JYRSU8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3pssW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3ps8W4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.editor.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3ptMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.removeJob" commandName="Remove Job Entry" description="Permanently remove job entry from table" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3ptcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3ptsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX3pt8W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.runAction" commandName="Run" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX4QwMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX4QwcW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.baseInsertCommand" commandName="baseInsertCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX4QwsW4EeORw5cz-AoFKA" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.run" commandName="Run CLI Application" description="Run CLI Application" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX4Qw8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX4QxMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor" commandName="XPath Processor" category="_JYR5YsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JX4QxcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.commands.radioStateParameter" name="State" optional="false"/> </commands> - <commands xmi:id="_RFwWA8RFEeOsdtank6IHbg" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_RF-YcMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWBMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.startTracing" commandName="Start Tracing " description="Start Tracing Experiment" category="_RF9KVMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWBcRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.getJobError" commandName="Get Job Error" description="Display the job error in a console" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWBsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Fields" description="Choose fields to initialize and constructor from superclass to call " category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWB8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.commands.showElementInPackageView" commandName="Show JavaScript Element in Script Explorer" description="Select JavaScript element in the Script Explorer view" category="_RF9xbcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFwWCMRFEeOsdtank6IHbg" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_JX4QxsW4EeORw5cz-AoFKA" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_JYTHhMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX4Qx8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.startTracing" commandName="Start Tracing " description="Start Tracing Experiment" category="_JYRSV8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX4QyMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.getJobError" commandName="Get Job Error" description="Display the job error in a console" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX430MW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Fields" description="Choose fields to initialize and constructor from superclass to call " category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX430cW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.commands.showElementInPackageView" commandName="Show JavaScript Element in Script Explorer" description="Select JavaScript element in the Script Explorer view" category="_JYTHg8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JX430sW4EeORw5cz-AoFKA" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_RFwWCcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWCsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWC8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWDMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in C/C++ editors" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFwWDcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9EMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9EcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9EsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9E8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9FMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Checkout" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9FcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9FsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.cut.line.to.end" commandName="Cut to End of Line" description="Cut to the end of a line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9F8RFEeOsdtank6IHbg" elementId="org.eclipse.pdt.ui.edit.text.select.next" commandName="Select Next Element" description="Expands selection to include next sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9GMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.search.finddecl.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9GcRFEeOsdtank6IHbg" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9GsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9G8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_RF9xbcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFw9HMRFEeOsdtank6IHbg" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_JX4308W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX431MW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX431cW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX431sW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in C/C++ editors" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX4318W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX432MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX5e4MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX5e4cW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX5e4sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX5e48W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Checkout" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX5e5MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX5e5cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.cut.line.to.end" commandName="Cut to End of Line" description="Cut to the end of a line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX5e5sW4EeORw5cz-AoFKA" elementId="org.eclipse.pdt.ui.edit.text.select.next" commandName="Select Next Element" description="Expands selection to include next sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX5e58W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.search.finddecl.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6F8MW4EeORw5cz-AoFKA" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6F8cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6F8sW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_JYTHg8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JX6F88W4EeORw5cz-AoFKA" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_RFw9HcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFw9HsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.generate.hashcode.equals" commandName="Generate hashCode() and equals()" description="Generates hashCode() and equals() functions for the type" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkIMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkIcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.working.set" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkIsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.reverseResume" commandName="Reverse Resume" description="Perform Reverse Resume" category="_RF9KUMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkI8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkJMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkJcRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.getJobOutput" commandName="Get Job Output" description="Display the job output in a console" category="_RF9xYMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkJsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.importCSSCommand" commandName="importCSSCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkJ8RFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.ignore" commandName="Add to .cvsignore" description="Ignore the Selected Resources when Synchronizing" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkKMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFxkKcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_RF9xY8RFEeOsdtank6IHbg"> - <parameters xmi:id="_RFxkKsRFEeOsdtank6IHbg" elementId="title" name="Title"/> - <parameters xmi:id="_RFxkK8RFEeOsdtank6IHbg" elementId="message" name="Message"/> - <parameters xmi:id="_RFxkLMRFEeOsdtank6IHbg" elementId="initialValue" name="Initial Value"/> - <parameters xmi:id="_RFxkLcRFEeOsdtank6IHbg" elementId="cancelReturns" name="Return Value on Cancel"/> + <commands xmi:id="_JX6F9MW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6F9cW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.generate.hashcode.equals" commandName="Generate hashCode() and equals()" description="Generates hashCode() and equals() functions for the type" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6F9sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6F98W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.working.set" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6F-MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.reverseResume" commandName="Reverse Resume" description="Perform Reverse Resume" category="_JYRSU8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6tAMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6tAcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6tAsW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.getJobOutput" commandName="Get Job Output" description="Display the job output in a console" category="_JYR5aMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6tA8W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.importCSSCommand" commandName="importCSSCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6tBMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.ignore" commandName="Add to .cvsignore" description="Ignore the Selected Resources when Synchronizing" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6tBcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX6tBsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_JYSgcsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JX6tB8W4EeORw5cz-AoFKA" elementId="title" name="Title"/> + <parameters xmi:id="_JX6tCMW4EeORw5cz-AoFKA" elementId="message" name="Message"/> + <parameters xmi:id="_JX7UEMW4EeORw5cz-AoFKA" elementId="initialValue" name="Initial Value"/> + <parameters xmi:id="_JX7UEcW4EeORw5cz-AoFKA" elementId="cancelReturns" name="Return Value on Cancel"/> </commands> - <commands xmi:id="_RFxkLsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFyLMMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/> + <commands xmi:id="_JX7UEsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JX7UE8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/> </commands> - <commands xmi:id="_RFyLMcRFEeOsdtank6IHbg" elementId="revert.schema.editor.action.id" commandName="Revert Object" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLMsRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLM8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLNMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.return.continue.targets" commandName="Search break/continue Target Occurrences in File" description="Search for break/continue target occurrences of a selected target name" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLNcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLNsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLN8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.move.inner.to.top.level" commandName="Move Type to New File" description="Move Type to New File" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLOMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLOcRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.mpi.analysis.command2" commandName="MPI Barrier Analysis" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLOsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLO8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLPMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_RF9xYsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyLPcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Repository" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyQMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.factory" commandName="Introduce Factory" description="Introduce a factory function to encapsulate invocation of the selected constructor" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyQcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.gotoBreadcrumb" commandName="Show In Breadcrumb" description="Shows the Java editor breadcrumb and sets the keyboard focus into it" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyQsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyQ8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyRMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyRcRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Checkout" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyRsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyR8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyySMRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.acquire.HeapDump" commandName="Acquire Heap Dump" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyScRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyySsRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.actions.executeInspection" commandName="Execute Inspection" category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RFyyS8RFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.actions.executeInspection.commandName" name="commandName" optional="false"/> + <commands xmi:id="_JX7UFMW4EeORw5cz-AoFKA" elementId="revert.schema.editor.action.id" commandName="Revert Object" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX7UFcW4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX7UFsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX7UF8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.return.continue.targets" commandName="Search break/continue Target Occurrences in File" description="Search for break/continue target occurrences of a selected target name" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX7UGMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX77IMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX77IcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.move.inner.to.top.level" commandName="Move Type to New File" description="Move Type to New File" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX77IsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX77I8W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.mpi.analysis.command2" commandName="MPI Barrier Analysis" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX77JMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX77JcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX77JsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_JYSgccW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX77J8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Repository" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX77KMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.factory" commandName="Introduce Factory" description="Introduce a factory function to encapsulate invocation of the selected constructor" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX8iMMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.gotoBreadcrumb" commandName="Show In Breadcrumb" description="Shows the Java editor breadcrumb and sets the keyboard focus into it" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX8iMcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX8iMsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX8iM8W4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX8iNMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Checkout" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX8iNcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX8iNsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX8iN8W4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.acquire.HeapDump" commandName="Acquire Heap Dump" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9JQMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9JQcW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.actions.executeInspection" commandName="Execute Inspection" category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JX9JQsW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.actions.executeInspection.commandName" name="commandName" optional="false"/> </commands> - <commands xmi:id="_RFyyTMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyTcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFyyTsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZUMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZUcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.extract.interface" commandName="Extract Interface" description="Extract a set of members into a new interface and try to use the new interface" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZUsRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.edit.text.toggleMarkOccurrences" commandName="Mark Occurrences" description="Toggles mark occurrences in PHP editors" category="_RF9xacRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZU8RFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.mergeCommand" commandName="mergeCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZVMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Dynamic Help" description="Open the dynamic help" category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZVcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_RF9xYsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZVsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.working.set" commandName="Read Access in Working Set" description="Search for read references to the selected element in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZV8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.saveToDatabaseAction" commandName="Save to Database" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZWMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CleanupCommand" commandName="Cleanup" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZWcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZWsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.promote.local.variable" commandName="Convert Local Variable to Var" description="Convert a local variable to a var" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZW8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.views.XPathView.prefixes" commandName="&Edit Namespace Prefixes" category="_RF9KWMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZXMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_RF8jSsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZXcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RFzZXsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.splitJoinVariableDeclaration.assist" commandName="Quick Assist - Split/Join variable declaration" description="Invokes quick assist and selects 'Split/Join variable declaration'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AYMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AYcRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.edit.text.show.in.explorer.view" commandName="Show in PHP Explorer View" description="Shows the selected element in the PHP Explorer" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AYsRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AY8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.showRulerAnnotationInformation" commandName="Show Ruler Annotation Tooltip" description="Displays annotation information for the caret line in a focused hover" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AZMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.refreshLibraryCommand" commandName="refreshLibraryCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AZcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AZsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AZ8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AaMRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.result.terminate" commandName="Terminate Result" category="_RF8jR8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AacRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AasRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0Aa8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AbMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="%toggleMarkOccurrences.description" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AbcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.addNonNLS" commandName="Quick Fix - Add non-NLS tag" description="Invokes quick assist and selects 'Add non-NLS tag'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0AbsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0ncMRFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0nccRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0ncsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0nc8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0ndMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CompareWithRevisionCommand" commandName="URL..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0ndcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.ide.configureFilters" commandName="Configure Contents..." description="Configure the filters to apply to the markers view" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0ndsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0nd8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0neMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.find.broken.nls.keys" commandName="Find Broken Externalized Strings" description="Finds undefined, duplicate and unused externalized string keys in property files" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0necRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0nesRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.menu.updateWithModifiedFiles" commandName="Update Index with Modified Files" category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0ne8RFEeOsdtank6IHbg" elementId="org.eclipse.m2e.actions.LifeCycleGenerateSources.run" commandName="Run Maven Generate Sources" description="Run Maven Generate Sources" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0nfMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF0nfcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OgMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OgcRFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.commands.switch" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_RF8jQ8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OgsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1Og8RFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.addLocation" commandName="Add Repository Location" description="Add a new CVS repository location" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OhMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.UpdateToRevisionCommand" commandName="Update to Revision" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OhcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OhsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.splitJoinVariableDeclaration.assist" commandName="Quick Assist - Split/Join variable declaration" description="Invokes quick assist and selects 'Split/Join variable declaration'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1Oh8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the JavaScript file" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OiMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Editor Area Visibility" description="Toggles the visibility of the editor area" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OicRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_RF78OMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RF1OisRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/> + <commands xmi:id="_JX9JQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9JRMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9JRcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9JRsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9JR8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.extract.interface" commandName="Extract Interface" description="Extract a set of members into a new interface and try to use the new interface" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9JSMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.edit.text.toggleMarkOccurrences" commandName="Mark Occurrences" description="Toggles mark occurrences in PHP editors" category="_JYSgeMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9wUMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.mergeCommand" commandName="mergeCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9wUcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Dynamic Help" description="Open the dynamic help" category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9wUsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_JYSgccW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9wU8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.working.set" commandName="Read Access in Working Set" description="Search for read references to the selected element in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9wVMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.saveToDatabaseAction" commandName="Save to Database" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9wVcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CleanupCommand" commandName="Cleanup" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9wVsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9wV8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.promote.local.variable" commandName="Convert Local Variable to Var" description="Convert a local variable to a var" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX9wWMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.views.XPathView.prefixes" commandName="&Edit Namespace Prefixes" category="_JYR5YsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX-XYMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_JYQrScW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX-XYcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX-XYsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.splitJoinVariableDeclaration.assist" commandName="Quick Assist - Split/Join variable declaration" description="Invokes quick assist and selects 'Split/Join variable declaration'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX-XY8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX-XZMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.edit.text.show.in.explorer.view" commandName="Show in PHP Explorer View" description="Shows the selected element in the PHP Explorer" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX-XZcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX-XZsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.showRulerAnnotationInformation" commandName="Show Ruler Annotation Tooltip" description="Displays annotation information for the caret line in a focused hover" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX-XZ8W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.refreshLibraryCommand" commandName="refreshLibraryCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX--cMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX--ccW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX--csW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX--c8W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.result.terminate" commandName="Terminate Result" category="_JYQrRsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX--dMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX--dcW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX--dsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX--d8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="%toggleMarkOccurrences.description" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX--eMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.addNonNLS" commandName="Quick Fix - Add non-NLS tag" description="Invokes quick assist and selects 'Add non-NLS tag'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX_lgMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX_lgcW4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX_lgsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX_lg8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX_lhMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX_lhcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CompareWithRevisionCommand" commandName="URL..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX_lhsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ide.configureFilters" commandName="Configure Contents..." description="Configure the filters to apply to the markers view" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JX_lh8W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMkMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMkcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.find.broken.nls.keys" commandName="Find Broken Externalized Strings" description="Finds undefined, duplicate and unused externalized string keys in property files" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMksW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMk8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.menu.updateWithModifiedFiles" commandName="Update Index with Modified Files" category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMlMW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.actions.LifeCycleGenerateSources.run" commandName="Run Maven Generate Sources" description="Run Maven Generate Sources" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMlcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMlsW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMl8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMmMW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.commands.switch" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_JYQrQsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAMmcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAzoMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.addLocation" commandName="Add Repository Location" description="Add a new CVS repository location" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAzocW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.UpdateToRevisionCommand" commandName="Update to Revision" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAzosW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAzo8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.splitJoinVariableDeclaration.assist" commandName="Quick Assist - Split/Join variable declaration" description="Invokes quick assist and selects 'Split/Join variable declaration'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAzpMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the JavaScript file" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAzpcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Editor Area Visibility" description="Toggles the visibility of the editor area" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAzpsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_JYQEMsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JYAzp8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/> </commands> - <commands xmi:id="_RF1Oi8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.modify.method.parameters" commandName="Change Function Signature" description="Change function signature includes parameter names and parameter order" category="_RF9xYcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OjMRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OjcRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.edit.text.add.description" commandName="Generate Element Comment " description="Generate Element Comment" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF1OjsRFEeOsdtank6IHbg" elementId="org.eclipse.php.server.ui.phpServerShortcut.debug" commandName="Debug PHP Web Application" description="Debug PHP Web Application" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11kMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11kcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11ksRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11k8RFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.updateAll" commandName="Update All Incoming Changes" description="Update all incoming changes with new content from the repository" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11lMRFEeOsdtank6IHbg" elementId="org.eclipse.mat.ui.actions.IconAssist" commandName="Icon Assist" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11lcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.goto.prev.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the translation unit" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11lsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11l8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11mMRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.open.external.javadoc" commandName="Open Attached Javadoc" description="Open the attached Javadoc of the selected element in a browser" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11mcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to var" description="Invokes quick assist and selects 'Assign parameter to var'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11msRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF11m8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_RF78OMRFEeOsdtank6IHbg"> - <parameters xmi:id="_RF11nMRFEeOsdtank6IHbg" elementId="url" name="URL"/> - <parameters xmi:id="_RF11ncRFEeOsdtank6IHbg" elementId="browserId" name="Browser Id"/> - <parameters xmi:id="_RF11nsRFEeOsdtank6IHbg" elementId="name" name="Browser Name"/> - <parameters xmi:id="_RF2coMRFEeOsdtank6IHbg" elementId="tooltip" name="Browser Tooltip"/> + <commands xmi:id="_JYAzqMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.modify.method.parameters" commandName="Change Function Signature" description="Change function signature includes parameter names and parameter order" category="_JYSgcMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYAzqcW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBasMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.edit.text.add.description" commandName="Generate Element Comment " description="Generate Element Comment" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBascW4EeORw5cz-AoFKA" elementId="org.eclipse.php.server.ui.phpServerShortcut.debug" commandName="Debug PHP Web Application" description="Debug PHP Web Application" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBassW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBas8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBatMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBatcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.updateAll" commandName="Update All Incoming Changes" description="Update all incoming changes with new content from the repository" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBatsW4EeORw5cz-AoFKA" elementId="org.eclipse.mat.ui.actions.IconAssist" commandName="Icon Assist" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBat8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.goto.prev.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the translation unit" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBauMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYBaucW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCBwMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.external.javadoc" commandName="Open Attached Javadoc" description="Open the attached Javadoc of the selected element in a browser" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCBwcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to var" description="Invokes quick assist and selects 'Assign parameter to var'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCBwsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCBw8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_JYQEMsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JYCBxMW4EeORw5cz-AoFKA" elementId="url" name="URL"/> + <parameters xmi:id="_JYCBxcW4EeORw5cz-AoFKA" elementId="browserId" name="Browser Id"/> + <parameters xmi:id="_JYCBxsW4EeORw5cz-AoFKA" elementId="name" name="Browser Name"/> + <parameters xmi:id="_JYCBx8W4EeORw5cz-AoFKA" elementId="tooltip" name="Browser Tooltip"/> </commands> - <commands xmi:id="_RF2cocRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.generate.hashcode.equals" commandName="Generate hashCode() and equals()" description="Generates hashCode() and equals() methods for the type" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2cosRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2co8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2cpMRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.merge" commandName="Merge" description="Merge" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2cpcRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.LockCommand" commandName="Lock..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2cpsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2cp8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.command.resumeWithoutSignal" commandName="Resume Without Signal" description="Resume Without Signal" category="_RF9xZ8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2cqMRFEeOsdtank6IHbg" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_RF9KU8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2cqcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.extract.local.variable" commandName="Extract Local Variable" description="Extracts an expression into a new local variable and uses the new local variable" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2cqsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2cq8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2crMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF2crcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DsMRFEeOsdtank6IHbg" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_RF9xbMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DscRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.core.pomFileAction.run" commandName="Run Maven Build" description="Run Maven Build" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DssRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.uncomment" commandName="Uncomment" description="Uncomment the selected // style comment lines" category="_RF9xZsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3Ds8RFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DtMRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DtcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.extract.method" commandName="Extract Method" description="Extract a set of statements or an expression into a new method and use the new method" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DtsRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.refreshFromDatabaseAction" commandName="Refresh from Database" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3Dt8RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.project" commandName="Find References In Project" description="Finds all references to the selection in the project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DuMRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CreatePatchCommand" commandName="Create Patch..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DucRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.targetCreateCommand" commandName="Create Make Target" description="Create a new make build target for the selected container." category="_RF78O8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DusRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3Du8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectPreviousTraceRecord" commandName="Previous Trace Record" description="Select Previous Trace Record" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DvMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.resetImageSizeCommand" commandName="resetImageSizeCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DvcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3DvsRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.ShowAnnotationCommand" commandName="Show Annotation..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qwMRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.GotoMatchingTokenAction" commandName="Goto Matching Token" category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qwcRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.AddToSVNIgnoreCommand" commandName="Add to svn:ignore..." category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qwsRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.publishToTemplateCommand" commandName="publishToTemplateCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qw8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qxMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qxcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qxsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Vars" description="Choose vars to initialize and constructor from superclass to call " category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qx8RFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.compareWithTag" commandName="Compare With Another Branch or Version" description="Compare with a Branch or a Version on the CVS Server" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qyMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qycRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qysRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qy8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qzMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.extractLocal.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF3qzcRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the compilation unit" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R0MRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.comment" commandName="Comment" description="Turn the selected lines into # style comments" category="_RF78PcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R0cRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R0sRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R08RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.edit.text.c.select.enclosing" commandName="Select Enclosing C/C++ Element" description="Expand the selection to enclosing C/C++ element" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R1MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R1cRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.indent" commandName="Correct &Indentation" description="&Indents the current line or selection depending on surrounding source code" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R1sRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.setKeywordSubstitution" commandName="Change ASCII/Binary Property" description="Change whether the selected resources should be treated as ASCII or binary on the CVS Server" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R18RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.navigate.script.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R2MRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Checkout" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R2cRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.working.set" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_RF8jS8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R2sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_RF9xasRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R28RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R3MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R3cRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4R3sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF444MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_RF78PMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF444cRFEeOsdtank6IHbg" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF444sRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4448RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.commands.viewMemory" commandName="View Memory" description="View variable in memory view" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF445MRFEeOsdtank6IHbg" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF445cRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.core.ui.command.addPlugin" commandName="Add Maven Plugin" description="Add Maven Plugin" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF445sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.delimiter.windows" commandName="Convert Line Delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" description="Converts the line delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4458RFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.cut.line" commandName="Cut Line" description="Cut a line of text" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF446MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF446cRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.CompareWithWorkingCopyCommand" commandName="Base from Working Copy" category="_RF9KUcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF446sRFEeOsdtank6IHbg" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_RF9KW8RFEeOsdtank6IHbg"/> - <commands xmi:id="_RF4468RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.promote.local.variable" commandName="Convert Local Variable to Field" description="Convert a local variable to a field" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF447MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF447cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f8MRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f8cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.quickAccess" commandName="Quick Access" description="Quickly access UI elements" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f8sRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.dsf.debug.ui.refreshAll" commandName="Refresh Debug Views" description="Refresh all data in debug views" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f88RFEeOsdtank6IHbg" elementId="org.eclipse.dltk.debug.ui.commands.ScriptDisplay" commandName="Display" description="Display result of evaluating selected text" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f9MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f9cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the compilation unit" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f9sRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f98RFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f-MRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f-cRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f-sRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f-8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF5f_MRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_RF9xbcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RF5f_cRFEeOsdtank6IHbg" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/> + <commands xmi:id="_JYCByMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.generate.hashcode.equals" commandName="Generate hashCode() and equals()" description="Generates hashCode() and equals() methods for the type" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCBycW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo0MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo0cW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.merge" commandName="Merge" description="Merge" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo0sW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.LockCommand" commandName="Lock..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo08W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo1MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.command.resumeWithoutSignal" commandName="Resume Without Signal" description="Resume Without Signal" category="_JYSgdsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo1cW4EeORw5cz-AoFKA" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_JYRSVsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo1sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.extract.local.variable" commandName="Extract Local Variable" description="Extracts an expression into a new local variable and uses the new local variable" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo18W4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo2MW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYCo2cW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP4MW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP4cW4EeORw5cz-AoFKA" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_JYTHgsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP4sW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.core.pomFileAction.run" commandName="Run Maven Build" description="Run Maven Build" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP48W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.uncomment" commandName="Uncomment" description="Uncomment the selected // style comment lines" category="_JYSgdcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP5MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP5cW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP5sW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.extract.method" commandName="Extract Method" description="Extract a set of statements or an expression into a new method and use the new method" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP58W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.refreshFromDatabaseAction" commandName="Refresh from Database" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP6MW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.project" commandName="Find References In Project" description="Finds all references to the selection in the project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYDP6cW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CreatePatchCommand" commandName="Create Patch..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD28MW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.targetCreateCommand" commandName="Create Make Target" description="Create a new make build target for the selected container." category="_JYQENcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD28cW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD28sW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectPreviousTraceRecord" commandName="Previous Trace Record" description="Select Previous Trace Record" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD288W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.resetImageSizeCommand" commandName="resetImageSizeCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD29MW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD29cW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.ShowAnnotationCommand" commandName="Show Annotation..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD29sW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.GotoMatchingTokenAction" commandName="Goto Matching Token" category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD298W4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.AddToSVNIgnoreCommand" commandName="Add to svn:ignore..." category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD2-MW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.publishToTemplateCommand" commandName="publishToTemplateCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYD2-cW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeAMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeAcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeAsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Vars" description="Choose vars to initialize and constructor from superclass to call " category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeA8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.compareWithTag" commandName="Compare With Another Branch or Version" description="Compare with a Branch or a Version on the CVS Server" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeBMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeBcW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeBsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeB8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeCMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.extractLocal.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYEeCcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the compilation unit" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFFEMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.comment" commandName="Comment" description="Turn the selected lines into # style comments" category="_JYQEN8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFFEcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFFEsW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFFE8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.edit.text.c.select.enclosing" commandName="Select Enclosing C/C++ Element" description="Expand the selection to enclosing C/C++ element" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFFFMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFFFcW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.indent" commandName="Correct &Indentation" description="&Indents the current line or selection depending on surrounding source code" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFFFsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.setKeywordSubstitution" commandName="Change ASCII/Binary Property" description="Change whether the selected resources should be treated as ASCII or binary on the CVS Server" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFFF8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.navigate.script.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFFGMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Checkout" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsIMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.working.set" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_JYRSUMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsIcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_JYTHgMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsIsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsI8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsJMW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsJcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsJsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_JYQENsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsJ8W4EeORw5cz-AoFKA" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsKMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYFsKcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.commands.viewMemory" commandName="View Memory" description="View variable in memory view" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTMMW4EeORw5cz-AoFKA" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTMcW4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.core.ui.command.addPlugin" commandName="Add Maven Plugin" description="Add Maven Plugin" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTMsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.delimiter.windows" commandName="Convert Line Delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" description="Converts the line delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTM8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.cut.line" commandName="Cut Line" description="Cut a line of text" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTNMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTNcW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.CompareWithWorkingCopyCommand" commandName="Base from Working Copy" category="_JYRSVMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTNsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_JYR5ZcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTN8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.promote.local.variable" commandName="Convert Local Variable to Field" description="Convert a local variable to a field" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTOMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYGTOcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6QMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6QcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.quickAccess" commandName="Quick Access" description="Quickly access UI elements" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6QsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.dsf.debug.ui.refreshAll" commandName="Refresh Debug Views" description="Refresh all data in debug views" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6Q8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.debug.ui.commands.ScriptDisplay" commandName="Display" description="Display result of evaluating selected text" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6RMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6RcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the compilation unit" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6RsW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6R8W4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6SMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYG6ScW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYHhUMW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYHhUcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYHhUsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_JYTHg8W4EeORw5cz-AoFKA"> + <parameters xmi:id="_JYHhU8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/> </commands> - <commands xmi:id="_RF6HAMRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.DMLDialogSelectionAction" commandName="Edit in SQL Query Builder..." category="_RF78OcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HAcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HAsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_RF8jRcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HA8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HBMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.edit.text.script.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_RF78NMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HBcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.command.OpenFromClipboard" commandName="Open from Clipboard" description="Opens a Java element or a Java stack trace from clipboard" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HBsRFEeOsdtank6IHbg" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_RF8jTcRFEeOsdtank6IHbg"> - <parameters xmi:id="_RF6HB8RFEeOsdtank6IHbg" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/> + <commands xmi:id="_JYHhVMW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.DMLDialogSelectionAction" commandName="Edit in SQL Query Builder..." category="_JYQEM8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYHhVcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYHhVsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_JYQrRMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYHhV8W4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYHhWMW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.edit.text.script.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_JYPdJ8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYHhWcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.command.OpenFromClipboard" commandName="Open from Clipboard" description="Opens a Java element or a Java stack trace from clipboard" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIIYMW4EeORw5cz-AoFKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_JYRSUsW4EeORw5cz-AoFKA"> + <parameters xmi:id="_JYIIYcW4EeORw5cz-AoFKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/> </commands> - <commands xmi:id="_RF6HCMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.revertToReportItemCommand" commandName="revertToReportItemCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HCcRFEeOsdtank6IHbg" elementId="org.eclipse.m2e.editor.RenameArtifactAction" commandName="Rename Maven Artifact..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HCsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HC8RFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.extract.constant" commandName="Extract Constant" description="Extracts a constant into a new static field and uses the new static field" category="_RF-YccRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HDMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_RF8jTMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6HDcRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.sync" commandName="Synchronize with Repository" description="Synchronize the workspace resources with those in the repository" category="_RF78NsRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uEMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_RF9xZcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uEcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_RF9xbcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uEsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.edit.text.java.add.javadoc.comment" commandName="Add Javadoc Comment" description="Add a Javadoc comment stub to the member element" category="_RF9KVcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uE8RFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uFMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.newStyleCommand" commandName="newStyleCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uFcRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.editGroupCommand" commandName="editGroupCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uFsRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uF8RFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_RF9KXMRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uGMRFEeOsdtank6IHbg" elementId="org.eclipse.birt.report.designer.ui.command.reloadCssStyleCommand" commandName="reloadCssStyleCommand" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_RF6uGcRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.emf.exporter.genModelEditorContribution/org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" commandName="&Export Model..."/> - <commands xmi:id="_RF6uGsRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.emf.importer.genModelEditorContribution/org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" commandName="&Reload..."/> - <commands xmi:id="_RF6uG8RFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.RemoveMappingActionID" commandName="&Remove Mapping"/> - <commands xmi:id="_RF6uHMRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.TypeMatchMappingActionID" commandName="Match Mapping by &Type"/> - <commands xmi:id="_RF6uHcRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.NameMatchMappingActionID" commandName="Match Mapping by &Name"/> - <commands xmi:id="_RF6uHsRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" commandName="Create &One-sided Mapping"/> - <commands xmi:id="_RF7VIMRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateMappingActionID" commandName="Create &Mapping"/> - <commands xmi:id="_RF7VIcRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" commandName="Add &Output Root..."/> - <commands xmi:id="_RF7VIsRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" commandName="Add &Input Root..."/> - <commands xmi:id="_RF7VI8RFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="E&xecute"/> - <commands xmi:id="_RF7VJMRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Displa&y"/> - <commands xmi:id="_RF7VJcRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Insp&ect"/> - <commands xmi:id="_RF7VJsRFEeOsdtank6IHbg" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.editor/org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" commandName="Reload Dependencies"/> - <commands xmi:id="_jgf38cTSEeO088oenCNcTw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateTag" commandName="Create Tag..." category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_jggfAMTSEeO088oenCNcTw" elementId="org.eclipse.egit.ui.RepositoriesViewAddToIndex" commandName="Add to Index" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_jghGEMTSEeO088oenCNcTw" elementId="org.eclipse.egit.ui.team.CompareWithRevision" commandName="Compare with History" category="_RF8jSMRFEeOsdtank6IHbg"/> - <commands xmi:id="_jhqVkMTSEeO088oenCNcTw" elementId="org.eclipse.ui.cocoa.arrangeWindowsInFront" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.arrangeWindows.name" description="%command.arrangeWindows.desc" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_jhq8oMTSEeO088oenCNcTw" elementId="org.eclipse.ui.cocoa.minimizeWindow" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.minimize.name" description="%command.minimize.desc" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_jhq8osTSEeO088oenCNcTw" elementId="org.eclipse.ui.cocoa.fullscreenWindow" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.fullscreen.name" description="%command.fullscreen.desc" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_jhrjssTSEeO088oenCNcTw" elementId="org.eclipse.ui.cocoa.zoomWindow" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.zoom.name" description="%command.zoom.desc" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_jhsKwMTSEeO088oenCNcTw" elementId="org.eclipse.ui.cocoa.closeDialog" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.closeDialog.name" description="%command.closeDialog.desc" category="_RF78OMRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxceAMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.ant.ui.actionSet.presentation/org.eclipse.ant.ui.toggleAutoReconcile" commandName="Toggle Ant Editor Auto Reconcile" description="Toggle Ant Editor Auto Reconcile" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxfhUMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxgIYMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxgIYcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxgIYsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxgvcMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxgvccTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxgvcsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxhWgMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxhWgcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxln8MTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxmPAMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxmPAcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxm2EMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxm2EcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxm2EsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxndIMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxorQMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxorQcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.ConfigureProject" commandName="Share Project..." description="Share the project with others using a version and configuration management system." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxorQsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxp5YMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxp5YcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxp5YsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxqgcMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxrHgMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxrHgcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxrHgsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxrHg8TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxrukMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxrukcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxruksTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxruk8TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.debugview.toolbar/org.eclipse.debug.ui.debugview.toolbar.removeAllTerminated" commandName="Remove All Terminated" description="Remove All Terminated Launches" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxsVoMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxsVocTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.linkWithDebugView" commandName="Link with Debug View" description="Link with Debug View" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxsVosTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxsVo8TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.clearDefaultBreakpointGroup" commandName="Deselect Default Working Set" description="Deselect Default Working Set" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxs8sMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.setDefaultBreakpointGroup" commandName="Select Default Working Set..." description="Select Default Working Set" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxs8scTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxs8ssTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxs8s8TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.AddWatchExpression" commandName="Add Watch Expression..." description="Create a new watch expression" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxtjwMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxtjwcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxtjwsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxtjw8TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxuK0MTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxuK0cTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxuK0sTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxuK08TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxux4MTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxux4cTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variablesViewActions.AllReferencesInView" commandName="Show References" description="Shows references to each object in the variables view as an array of objects." category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxux4sTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxux48TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxvY8MTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxvY8cTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxvY8sTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxvY88TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &References" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxwAAMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxwAAcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxwAAsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxwAA8TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxwnEMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.actions.AddException" commandName="Add Java Exception Breakpoint" description="Add Java Exception Breakpoint" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxwnEcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxwnEsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxwnE8TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxxOIMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxxOIcTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowMonitorThreadInfo" commandName="Show Monitors" description="Show the Thread & Monitor Information" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxxOIsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Watch" commandName="Watch" description="Create a Watch Expression from the Selected Text" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxxOI8TSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxx1MMTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Display" commandName="Display" description="Display Result of Evaluating Selected Text" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxx1McTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Inspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_RF8jTcRFEeOsdtank6IHbg"/> - <commands xmi:id="_jxx1MsTSEeO088oenCNcTw" elementId="AUTOGEN:::org.eclipse.pde.ui.logViewActions/org.eclipse.jdt.debug.ui.LogViewActions.showStackTrace" commandName="Show Stack Trace in Console View" description="Show Stack Trace in Console View" category="_RF8jTcRFEeOsdtank6IHbg"/> - <addons xmi:id="_RF7VJ8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.core.commands.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.core.commands/org.eclipse.e4.core.commands.CommandServiceAddon"/> - <addons xmi:id="_RF7VKMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.contexts.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.services/org.eclipse.e4.ui.services.ContextServiceAddon"/> - <addons xmi:id="_RF7VKcRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.bindings.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.bindings/org.eclipse.e4.ui.bindings.BindingServiceAddon"/> - <addons xmi:id="_RF7VKsRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.workbench.commands.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.CommandProcessingAddon"/> - <addons xmi:id="_RF7VK8RFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.workbench.contexts.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon"/> - <addons xmi:id="_RF7VLMRFEeOsdtank6IHbg" elementId="org.eclipse.e4.ui.workbench.bindings.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.workbench.swt.util.BindingProcessingAddon"/> - <addons xmi:id="_RF7VLcRFEeOsdtank6IHbg" elementId="Cleanup Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon"/> - <addons xmi:id="_RF78MMRFEeOsdtank6IHbg" elementId="DnD Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon"/> - <addons xmi:id="_RF78McRFEeOsdtank6IHbg" elementId="MinMax Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon"/> - <addons xmi:id="_RF78MsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.workbench.addon.0" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.HandlerProcessingAddon"/> - <addons xmi:id="_jhpugMTSEeO088oenCNcTw" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CocoaUIHandler" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CocoaUIHandler"/> - <categories xmi:id="_RF78M8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/> - <categories xmi:id="_RF78NMRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.category.source" name="Script Source"/> - <categories xmi:id="_RF78NcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.autotools.ui.category.invokeAutotools" name="Invoke Autotools"/> - <categories xmi:id="_RF78NsRFEeOsdtank6IHbg" elementId="org.eclipse.team.cvs.ui.actionSet" name="CVS" description="Actions that apply when working with CVS repositories"/> - <categories xmi:id="_RF78N8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaedtor.10x" name="ASA 9.x table schema editor"/> - <categories xmi:id="_RF78OMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.window" name="Window"/> - <categories xmi:id="_RF78OcRFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.sqleditor.category" name="Database Tools" description="Database Development tools"/> - <categories xmi:id="_RF78OsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.category.refactoring" name="Refactor - C++" description="C/C++ Refactorings"/> - <categories xmi:id="_RF78O8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.project" name="Project"/> - <categories xmi:id="_RF78PMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/> - <categories xmi:id="_RF78PcRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.make.ui.category.source" name="Makefile Source" description="Makefile Source Actions"/> - <categories xmi:id="_RF8jQMRFEeOsdtank6IHbg" elementId="org.eclipse.rse.ui.commands.category" name="Remote Systems"/> - <categories xmi:id="_RF8jQcRFEeOsdtank6IHbg" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/> - <categories xmi:id="_RF8jQsRFEeOsdtank6IHbg" elementId="org.eclipse.emf.codegen.ecore.ui.Commands" name="EMF Code Generation" description="Commands for the EMF code generation tools"/> - <categories xmi:id="_RF8jQ8RFEeOsdtank6IHbg" elementId="org.eclipse.wb.core.actions.category" name="WindowBuilder Pro" description="WindowBuilder Pro actions"/> - <categories xmi:id="_RF8jRMRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.pldt.common.analysisDropdownCategory" name="Analysis Dropdown Category"/> - <categories xmi:id="_RF8jRcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/> - <categories xmi:id="_RF8jRsRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.category.refactoring" name="Refactor - PHP" description="PHP Refactoring Actions"/> - <categories xmi:id="_RF8jR8RFEeOsdtank6IHbg" elementId="org.eclipse.datatools.sqltools.result.category" name="SQL Results View"/> - <categories xmi:id="_RF8jSMRFEeOsdtank6IHbg" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/> - <categories xmi:id="_RF8jScRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.category.casting" name="Cast to Type or Array" description="Set of commands for displaying variables and expressions as other types or arrays."/> - <categories xmi:id="_RF8jSsRFEeOsdtank6IHbg" elementId="org.eclipse.dltk.ui.category.refactoring" name="Refactor - DLTK" description="DLTK Refactoring Actions"/> - <categories xmi:id="_RF8jS8RFEeOsdtank6IHbg" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/> - <categories xmi:id="_RF8jTMRFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.edit" name="Edit"/> - <categories xmi:id="_RF8jTcRFEeOsdtank6IHbg" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/> - <categories xmi:id="_RF9KUMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.category.reverseDebugging" name="Reverse Debugging Commands" description="Set of commands for Reverse Debugging"/> - <categories xmi:id="_RF9KUcRFEeOsdtank6IHbg" elementId="org.eclipse.team.svn.ui.command.category" name="SVN"/> - <categories xmi:id="_RF9KUsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/> - <categories xmi:id="_RF9KU8RFEeOsdtank6IHbg" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/> - <categories xmi:id="_RF9KVMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.category.tracing" name="Tracing Commands" description="Category for Tracing Commands"/> - <categories xmi:id="_RF9KVcRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/> - <categories xmi:id="_RF9KVsRFEeOsdtank6IHbg" elementId="pl.szpinda.plugin.tomcat.commands.category.key" name="Tomcat keys"/> - <categories xmi:id="_RF9KV8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.codan.ui.commands.category" name="Code Analysis"/> - <categories xmi:id="_RF9KWMRFEeOsdtank6IHbg" elementId="org.eclipse.wst.xml.views.XPathView" name="XPath"/> - <categories xmi:id="_RF9KWcRFEeOsdtank6IHbg" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/> - <categories xmi:id="_RF9KWsRFEeOsdtank6IHbg" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/> - <categories xmi:id="_RF9KW8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.file" name="File"/> - <categories xmi:id="_RF9KXMRFEeOsdtank6IHbg" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/> - <categories xmi:id="_RF9KXcRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.monitorCommands" name="Monitor Commands" description="Monitor Commands"/> - <categories xmi:id="_RF9xYMRFEeOsdtank6IHbg" elementId="org.eclipse.ptp.rm.lml.monitor.ui.jobCommands" name="Job Commands" description="Job Commands"/> - <categories xmi:id="_RF9xYcRFEeOsdtank6IHbg" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/> - <categories xmi:id="_RF9xYsRFEeOsdtank6IHbg" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/> - <categories xmi:id="_RF9xY8RFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/> - <categories xmi:id="_RF9xZMRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.category.debugViewLayout" name="Debug View Layout Commands" description="Set of commands for controlling the Debug View Layout"/> - <categories xmi:id="_RF9xZcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/> - <categories xmi:id="_RF9xZsRFEeOsdtank6IHbg" elementId="org.eclipse.cdt.ui.category.source" name="Source" description="Source commands"/> - <categories xmi:id="_RF9xZ8RFEeOsdtank6IHbg" elementId="org.eclipse.cdt.debug.ui.category.runControl" name="Run Control Commands" description="Set of commands for Run Control"/> - <categories xmi:id="_RF9xaMRFEeOsdtank6IHbg" elementId="org.eclipse.gef.category.view" name="View" description="View"/> - <categories xmi:id="_RF9xacRFEeOsdtank6IHbg" elementId="org.eclipse.php.ui.category.source" name="Source" description="PHP Source Actions"/> - <categories xmi:id="_RF9xasRFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.help" name="Help"/> - <categories xmi:id="_RF9xa8RFEeOsdtank6IHbg" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="%terminal.view.insertion.description"/> - <categories xmi:id="_RF9xbMRFEeOsdtank6IHbg" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/> - <categories xmi:id="_RF9xbcRFEeOsdtank6IHbg" elementId="org.eclipse.ui.category.navigate" name="Navigate"/> - <categories xmi:id="_RF-YcMRFEeOsdtank6IHbg" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/> - <categories xmi:id="_RF-YccRFEeOsdtank6IHbg" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/> + <commands xmi:id="_JYIIYsW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.revertToReportItemCommand" commandName="revertToReportItemCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIIY8W4EeORw5cz-AoFKA" elementId="org.eclipse.m2e.editor.RenameArtifactAction" commandName="Rename Maven Artifact..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIIZMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIIZcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.extract.constant" commandName="Extract Constant" description="Extracts a constant into a new static field and uses the new static field" category="_JYTHhcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIIZsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_JYRSUcW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIIZ8W4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.sync" commandName="Synchronize with Repository" description="Synchronize the workspace resources with those in the repository" category="_JYQEMMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIIaMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_JYSgdMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIvcMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_JYTHg8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIvccW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.edit.text.java.add.javadoc.comment" commandName="Add Javadoc Comment" description="Add a Javadoc comment stub to the member element" category="_JYRSWMW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIvcsW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIvc8W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.newStyleCommand" commandName="newStyleCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIvdMW4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.editGroupCommand" commandName="editGroupCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIvdcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIvdsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_JYR5ZsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIvd8W4EeORw5cz-AoFKA" elementId="org.eclipse.birt.report.designer.ui.command.reloadCssStyleCommand" commandName="reloadCssStyleCommand" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYIveMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.emf.exporter.genModelEditorContribution/org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" commandName="&Export Model..."/> + <commands xmi:id="_JYIvecW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.emf.importer.genModelEditorContribution/org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" commandName="&Reload..."/> + <commands xmi:id="_JYJWgMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.RemoveMappingActionID" commandName="&Remove Mapping"/> + <commands xmi:id="_JYJWgcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.TypeMatchMappingActionID" commandName="Match Mapping by &Type"/> + <commands xmi:id="_JYJWgsW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.NameMatchMappingActionID" commandName="Match Mapping by &Name"/> + <commands xmi:id="_JYJWg8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" commandName="Create &One-sided Mapping"/> + <commands xmi:id="_JYJWhMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateMappingActionID" commandName="Create &Mapping"/> + <commands xmi:id="_JYJWhcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" commandName="Add &Output Root..."/> + <commands xmi:id="_JYJWhsW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" commandName="Add &Input Root..."/> + <commands xmi:id="_JYJWh8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="E&xecute"/> + <commands xmi:id="_JYJWiMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Displa&y"/> + <commands xmi:id="_JYJWicW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Insp&ect"/> + <commands xmi:id="_JYJ9kMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.editor/org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" commandName="Reload Dependencies"/> + <commands xmi:id="_JYJ9kcW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewCreateTag" commandName="Create Tag..." category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYJ9ksW4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.RepositoriesViewAddToIndex" commandName="Add to Index" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYJ9k8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.team.CompareWithRevision" commandName="Compare with History" category="_JYQrR8W4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYJ9lMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cocoa.arrangeWindowsInFront" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.arrangeWindows.name" description="%command.arrangeWindows.desc" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYJ9lcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cocoa.minimizeWindow" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.minimize.name" description="%command.minimize.desc" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYJ9lsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cocoa.fullscreenWindow" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.fullscreen.name" description="%command.fullscreen.desc" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYJ9l8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cocoa.zoomWindow" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.zoom.name" description="%command.zoom.desc" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYJ9mMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.cocoa.closeDialog" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" commandName="%command.closeDialog.name" description="%command.closeDialog.desc" category="_JYQEMsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKkoMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.ant.ui.actionSet.presentation/org.eclipse.ant.ui.toggleAutoReconcile" commandName="Toggle Ant Editor Auto Reconcile" description="Toggle Ant Editor Auto Reconcile" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKkocW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKkosW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKko8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKkpMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKkpcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKkpsW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKkp8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKkqMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYKkqcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLLsMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLLscW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLLssW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLLs8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLLtMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLLtcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLLtsW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLLt8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLLuMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.ConfigureProject" commandName="Share Project..." description="Share the project with others using a version and configuration management system." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLywMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLywcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLywsW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLyw8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLyxMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLyxcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLyxsW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLyx8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYLyyMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ0MW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ0cW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ0sW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ08W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.debugview.toolbar/org.eclipse.debug.ui.debugview.toolbar.removeAllTerminated" commandName="Remove All Terminated" description="Remove All Terminated Launches" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ1MW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ1cW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.linkWithDebugView" commandName="Link with Debug View" description="Link with Debug View" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ1sW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ18W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.clearDefaultBreakpointGroup" commandName="Deselect Default Working Set" description="Deselect Default Working Set" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ2MW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.setDefaultBreakpointGroup" commandName="Select Default Working Set..." description="Select Default Working Set" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYMZ2cW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNA4MW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNA4cW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.AddWatchExpression" commandName="Add Watch Expression..." description="Create a new watch expression" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNA4sW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNA48W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNA5MW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNA5cW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNA5sW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNA58W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNA6MW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn8MW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn8cW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn8sW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variablesViewActions.AllReferencesInView" commandName="Show References" description="Shows references to each object in the variables view as an array of objects." category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn88W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn9MW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn9cW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn9sW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn98W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn-MW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &References" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYNn-cW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYOPAMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYOPAcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYOPAsW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYOPA8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.actions.AddException" commandName="Add Java Exception Breakpoint" description="Add Java Exception Breakpoint" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYOPBMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYOPBcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYOPBsW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYOPB8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYOPCMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowMonitorThreadInfo" commandName="Show Monitors" description="Show the Thread & Monitor Information" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYO2EMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Watch" commandName="Watch" description="Create a Watch Expression from the Selected Text" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYO2EcW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYO2EsW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Display" commandName="Display" description="Display Result of Evaluating Selected Text" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYO2E8W4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Inspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <commands xmi:id="_JYO2FMW4EeORw5cz-AoFKA" elementId="AUTOGEN:::org.eclipse.pde.ui.logViewActions/org.eclipse.jdt.debug.ui.LogViewActions.showStackTrace" commandName="Show Stack Trace in Console View" description="Show Stack Trace in Console View" category="_JYRSUsW4EeORw5cz-AoFKA"/> + <addons xmi:id="_JYO2FcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.core.commands.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.core.commands/org.eclipse.e4.core.commands.CommandServiceAddon"/> + <addons xmi:id="_JYO2FsW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.contexts.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.services/org.eclipse.e4.ui.services.ContextServiceAddon"/> + <addons xmi:id="_JYO2F8W4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.bindings.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.bindings/org.eclipse.e4.ui.bindings.BindingServiceAddon"/> + <addons xmi:id="_JYO2GMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.workbench.commands.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.CommandProcessingAddon"/> + <addons xmi:id="_JYO2GcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.workbench.contexts.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon"/> + <addons xmi:id="_JYPdIMW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.workbench.bindings.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.workbench.swt.util.BindingProcessingAddon"/> + <addons xmi:id="_JYPdIcW4EeORw5cz-AoFKA" elementId="Cleanup Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon"/> + <addons xmi:id="_JYPdIsW4EeORw5cz-AoFKA" elementId="DnD Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon"/> + <addons xmi:id="_JYPdI8W4EeORw5cz-AoFKA" elementId="MinMax Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon"/> + <addons xmi:id="_JYPdJMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.workbench.addon.0" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.HandlerProcessingAddon"/> + <addons xmi:id="_JYPdJcW4EeORw5cz-AoFKA" elementId="org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CocoaUIHandler" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CocoaUIHandler"/> + <categories xmi:id="_JYPdJsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/> + <categories xmi:id="_JYPdJ8W4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.category.source" name="Script Source"/> + <categories xmi:id="_JYPdKMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.autotools.ui.category.invokeAutotools" name="Invoke Autotools"/> + <categories xmi:id="_JYQEMMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.cvs.ui.actionSet" name="CVS" description="Actions that apply when working with CVS repositories"/> + <categories xmi:id="_JYQEMcW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaedtor.10x" name="ASA 9.x table schema editor"/> + <categories xmi:id="_JYQEMsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.window" name="Window"/> + <categories xmi:id="_JYQEM8W4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.sqleditor.category" name="Database Tools" description="Database Development tools"/> + <categories xmi:id="_JYQENMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.category.refactoring" name="Refactor - C++" description="C/C++ Refactorings"/> + <categories xmi:id="_JYQENcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.project" name="Project"/> + <categories xmi:id="_JYQENsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/> + <categories xmi:id="_JYQEN8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.make.ui.category.source" name="Makefile Source" description="Makefile Source Actions"/> + <categories xmi:id="_JYQEOMW4EeORw5cz-AoFKA" elementId="org.eclipse.rse.ui.commands.category" name="Remote Systems"/> + <categories xmi:id="_JYQrQMW4EeORw5cz-AoFKA" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/> + <categories xmi:id="_JYQrQcW4EeORw5cz-AoFKA" elementId="org.eclipse.emf.codegen.ecore.ui.Commands" name="EMF Code Generation" description="Commands for the EMF code generation tools"/> + <categories xmi:id="_JYQrQsW4EeORw5cz-AoFKA" elementId="org.eclipse.wb.core.actions.category" name="WindowBuilder Pro" description="WindowBuilder Pro actions"/> + <categories xmi:id="_JYQrQ8W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.pldt.common.analysisDropdownCategory" name="Analysis Dropdown Category"/> + <categories xmi:id="_JYQrRMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/> + <categories xmi:id="_JYQrRcW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.category.refactoring" name="Refactor - PHP" description="PHP Refactoring Actions"/> + <categories xmi:id="_JYQrRsW4EeORw5cz-AoFKA" elementId="org.eclipse.datatools.sqltools.result.category" name="SQL Results View"/> + <categories xmi:id="_JYQrR8W4EeORw5cz-AoFKA" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/> + <categories xmi:id="_JYQrSMW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.category.casting" name="Cast to Type or Array" description="Set of commands for displaying variables and expressions as other types or arrays."/> + <categories xmi:id="_JYQrScW4EeORw5cz-AoFKA" elementId="org.eclipse.dltk.ui.category.refactoring" name="Refactor - DLTK" description="DLTK Refactoring Actions"/> + <categories xmi:id="_JYRSUMW4EeORw5cz-AoFKA" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/> + <categories xmi:id="_JYRSUcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.edit" name="Edit"/> + <categories xmi:id="_JYRSUsW4EeORw5cz-AoFKA" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/> + <categories xmi:id="_JYRSU8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.category.reverseDebugging" name="Reverse Debugging Commands" description="Set of commands for Reverse Debugging"/> + <categories xmi:id="_JYRSVMW4EeORw5cz-AoFKA" elementId="org.eclipse.team.svn.ui.command.category" name="SVN"/> + <categories xmi:id="_JYRSVcW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/> + <categories xmi:id="_JYRSVsW4EeORw5cz-AoFKA" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/> + <categories xmi:id="_JYRSV8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.category.tracing" name="Tracing Commands" description="Category for Tracing Commands"/> + <categories xmi:id="_JYRSWMW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/> + <categories xmi:id="_JYR5YMW4EeORw5cz-AoFKA" elementId="pl.szpinda.plugin.tomcat.commands.category.key" name="Tomcat keys"/> + <categories xmi:id="_JYR5YcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.codan.ui.commands.category" name="Code Analysis"/> + <categories xmi:id="_JYR5YsW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.xml.views.XPathView" name="XPath"/> + <categories xmi:id="_JYR5Y8W4EeORw5cz-AoFKA" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/> + <categories xmi:id="_JYR5ZMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/> + <categories xmi:id="_JYR5ZcW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.file" name="File"/> + <categories xmi:id="_JYR5ZsW4EeORw5cz-AoFKA" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/> + <categories xmi:id="_JYR5Z8W4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.monitorCommands" name="Monitor Commands" description="Monitor Commands"/> + <categories xmi:id="_JYR5aMW4EeORw5cz-AoFKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.jobCommands" name="Job Commands" description="Job Commands"/> + <categories xmi:id="_JYSgcMW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/> + <categories xmi:id="_JYSgccW4EeORw5cz-AoFKA" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/> + <categories xmi:id="_JYSgcsW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/> + <categories xmi:id="_JYSgc8W4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.category.debugViewLayout" name="Debug View Layout Commands" description="Set of commands for controlling the Debug View Layout"/> + <categories xmi:id="_JYSgdMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/> + <categories xmi:id="_JYSgdcW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.ui.category.source" name="Source" description="Source commands"/> + <categories xmi:id="_JYSgdsW4EeORw5cz-AoFKA" elementId="org.eclipse.cdt.debug.ui.category.runControl" name="Run Control Commands" description="Set of commands for Run Control"/> + <categories xmi:id="_JYSgd8W4EeORw5cz-AoFKA" elementId="org.eclipse.gef.category.view" name="View" description="View"/> + <categories xmi:id="_JYSgeMW4EeORw5cz-AoFKA" elementId="org.eclipse.php.ui.category.source" name="Source" description="PHP Source Actions"/> + <categories xmi:id="_JYTHgMW4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.help" name="Help"/> + <categories xmi:id="_JYTHgcW4EeORw5cz-AoFKA" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="%terminal.view.insertion.description"/> + <categories xmi:id="_JYTHgsW4EeORw5cz-AoFKA" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/> + <categories xmi:id="_JYTHg8W4EeORw5cz-AoFKA" elementId="org.eclipse.ui.category.navigate" name="Navigate"/> + <categories xmi:id="_JYTHhMW4EeORw5cz-AoFKA" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/> + <categories xmi:id="_JYTHhcW4EeORw5cz-AoFKA" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/> </application:Application> diff --git a/.metadata/.plugins/org.eclipse.jdt.core/1375964667.index b/.metadata/.plugins/org.eclipse.jdt.core/1375964667.index index 65deb09cb17bd07b3a6fbebcd27ad57f92bad2b1..cc24e3c281c02f35e6479a8d11447de44ce78a86 100644 Binary files a/.metadata/.plugins/org.eclipse.jdt.core/1375964667.index and b/.metadata/.plugins/org.eclipse.jdt.core/1375964667.index differ diff --git a/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps b/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps index 6d5da90797eeb5fb7ef61040dedf58dc43b1a302..d9233408fd25224aa8b93763b47ca6e7aa15a556 100644 Binary files a/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps and b/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps differ diff --git a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png index a930fe16c945152aed77887896b5b53fc6e5b66d..a95f60827ddd5cf84fb7081d4fce1a53aae0d8d0 100644 Binary files a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png and b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png differ diff --git a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png index 2856a9fb816e0b7f73536d16c3260f37decdcf98..31311ab67f8a4b5da4a86c1844c292eb208545ab 100644 Binary files a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png and b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png differ diff --git a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/3.png b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/3.png index 31311ab67f8a4b5da4a86c1844c292eb208545ab..38192cfe62a4950df3503f139a59fdcc7b7ddba6 100644 Binary files a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/3.png and b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/3.png differ diff --git a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/4.png b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/4.png index 578fde53c84f6d8152a606f9d3454234b59ae1f2..a930fe16c945152aed77887896b5b53fc6e5b66d 100644 Binary files a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/4.png and b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/4.png differ diff --git a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/5.png b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/5.png index a95f60827ddd5cf84fb7081d4fce1a53aae0d8d0..56554ec38d3e023519caa92e643d159bddfcabc5 100644 Binary files a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/5.png and b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/5.png differ diff --git a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/6.png b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/6.png index 476665ef0c4b455049088f9ff1ef98a733fdbb4a..a6abcd86620000924d5b0b0715ce61ac59867f9b 100644 Binary files a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/6.png and b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/6.png differ diff --git a/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/7.png b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d260b4f826e411c73efa498708064b9270702d63 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/7.png differ diff --git a/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml b/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml index 08ef0c9ed0b7bb435a22a9c9098f2fe483f50e13..154b4025465f60e32dd4e53d00cc3d909c9b7e28 100644 --- a/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml +++ b/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml @@ -1,4 +1,9 @@ -<?xml version="1.0" encoding="UTF-8"?> -<workingSetManager> -<workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1395868172708_0" label="Window Working Set" name="Aggregate for window 1395868172708"/> +<?xml version="1.0" encoding="UTF-8"?> +<workingSetManager> +<workingSet editPageId="org.eclipse.jdt.ui.JavaWorkingSetPage" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1397610576037_2" label="HW03" name="HW03"> +<item elementID="=homework/src<api" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/> +<item elementID="=homework/src<util" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/> +<item elementID="=homework/src<hw3" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/> +</workingSet> +<workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1395868172708_0" label="Window Working Set" name="Aggregate for window 1395868172708"/> </workingSetManager> \ No newline at end of file diff --git a/homework/bin/hw3/EvaluatorTest.class b/homework/bin/hw3/EvaluatorTest.class new file mode 100644 index 0000000000000000000000000000000000000000..dd9d15e0cd36220f6c1f7f13b64089ff8635e716 Binary files /dev/null and b/homework/bin/hw3/EvaluatorTest.class differ diff --git a/homework/src/api/IEvaluator.java b/homework/src/api/IEvaluator.java index c890a835d1291b1e4665a77ed9bbf6a0d944f59b..b88765012da3edd37e4f3ff8c9cfcc01a06cb824 100644 --- a/homework/src/api/IEvaluator.java +++ b/homework/src/api/IEvaluator.java @@ -127,7 +127,7 @@ public interface IEvaluator * in the hand will be the value of <code>getRequiredCards()</code> * and the total number of cards in the hand will * be the value of <code>handSize()</code>. If the length - * of the given array of cards is less than <code>totalCards()</code>, + * of the given array of cards is less than <code>handSize()</code>, * this method returns null. The * given array must be sorted with highest-ranked card first * according to <code>Card.compareTo()</code>. The array diff --git a/homework/src/hw3/EvaluatorTest.java b/homework/src/hw3/EvaluatorTest.java new file mode 100644 index 0000000000000000000000000000000000000000..643394832e2fe87b5fb8a290aa109a252ec9fd61 --- /dev/null +++ b/homework/src/hw3/EvaluatorTest.java @@ -0,0 +1,5 @@ +package hw3; + +public class EvaluatorTest { + +}