diff --git a/.metadata/.log b/.metadata/.log index 7a6e54f7c2cca1d84acd633e1bbe2141cb2c78a8..9b761d810c451e92996e73cd0759c45887e61829 100644 --- a/.metadata/.log +++ b/.metadata/.log @@ -4430,3 +4430,25 @@ org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException: T at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591) at org.eclipse.equinox.launcher.Main.run(Main.java:1450) +!SESSION 2014-04-17 12:02:22.594 ----------------------------------------------- +eclipse.buildId=4.3.0.M20130911-1000 +java.version=1.6.0_65 +java.vendor=Apple Inc. +BootLoader constants: OS=macosx, ARCH=x86, WS=cocoa, NL=en_US +Framework arguments: -product org.eclipse.epp.package.standard.product -keyring /Users/siyulin/.eclipse_keyring -showlocation +Command-line arguments: -os macosx -ws cocoa -arch x86 -product org.eclipse.epp.package.standard.product -keyring /Users/siyulin/.eclipse_keyring -showlocation + +!ENTRY org.eclipse.core.net 1 0 2014-04-17 12:05:03.641 +!MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences + +!ENTRY org.eclipse.ui 4 4 2014-04-17 12:05:04.268 +!MESSAGE Unable to find Action Set: org.eclipse.ptp.debug.ui.debugActionSet + +!ENTRY org.eclipse.ui 4 4 2014-04-17 12:05:04.268 +!MESSAGE Unable to find Action Set: org.eclipse.rse.core.search.searchActionSet + +!ENTRY org.eclipse.ui 4 4 2014-04-17 12:05:04.274 +!MESSAGE Unable to find Action Set: org.eclipse.wb.core.ui.actionset + +!ENTRY org.eclipse.ui 4 4 2014-04-17 12:05:04.275 +!MESSAGE Unable to find Action Set: com_sysdeo_eclipse_tomcat_actionSet diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/34/1057af4854c60013122a860e25993110 b/.metadata/.plugins/org.eclipse.core.resources/.history/34/1057af4854c60013122a860e25993110 new file mode 100644 index 0000000000000000000000000000000000000000..f518974886dd0e30d6528efe2211f1d4c6f4c58b --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/34/1057af4854c60013122a860e25993110 @@ -0,0 +1,79 @@ +package hw3; +import static org.junit.Assert.*; + +import java.util.Arrays; + +import org.junit.Before; +import org.junit.Test; + +import api.IEvaluator; +import api.Card; +import api.Hand; +import api.Suit; + + +public class EvaluatorTest { + + @Before + public void setup(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + } + + //For One Pair Evaluator + @Test + public void checkInitialName(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The name for the One Pair Evaluator should be One Pair"); + assertEquals(msg, "One Pair", onePairEval.getName()); + } + + @Test + public void checkRankingAndHandSize(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The newly constructed OnePairEvaluator(3, 4) should have ranking of 3 and hand size of 4"); + assertEquals(msg, 3, onePairEval.getRanking()); + assertEquals(msg, 4, onePairEval.handSize()); + } + + @Test + public void checkSameRankingDifferentSuitsCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d"); + String msg = ("The newly constructed cards[2c, 2d] should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkDifferentRankingCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("Kc, Qd"); + String msg = ("The newly constructed cards[Kc, Qd] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + + @Test + public void checkMainCardsMoreThanRequiredCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("6s, Jh, Ah, 10h, 6h, Js, 6c, Kh, Qh"); + Arrays.sort(cards); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy2(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/5/e0f6ce1453c60013122a860e25993110 b/.metadata/.plugins/org.eclipse.core.resources/.history/5/e0f6ce1453c60013122a860e25993110 new file mode 100644 index 0000000000000000000000000000000000000000..7af1a92988361f86634d7a667004ec42bd9eb0a9 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/5/e0f6ce1453c60013122a860e25993110 @@ -0,0 +1,34 @@ +package hw3; +import static org.junit.Assert.*; +import org.junit.Before; +import org.junit.Test; +import api.IEvaluator; +import api.Card; +import api.Hand; +import api.Suit; + + +public class EvaluatorTest { + + @Before + public void setup(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + } + + //For One Pair Evaluator + @Test + public void checkInitialName(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The name for the One Pair Evaluator should be One Pair"); + assertEquals(msg, "One Pair", onePairEval.getName()); + } + + @Test + public void checkRankingAndHandSize(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The newly constructed OnePairEvaluator(3, 4) should have ranking of 3 and hand size of 4"); + assertEquals(msg, 3, onePairEval.getRanking()); + assertEquals(msg, 4, onePairEval.handSize()); + + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/81/907348e554c60013122a860e25993110 b/.metadata/.plugins/org.eclipse.core.resources/.history/81/907348e554c60013122a860e25993110 new file mode 100644 index 0000000000000000000000000000000000000000..c12a7b5d2694a2c7e2f5d7c94c800b6cb2321667 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/81/907348e554c60013122a860e25993110 @@ -0,0 +1,88 @@ +package hw3; +import static org.junit.Assert.*; + +import java.util.Arrays; + +import org.junit.Before; +import org.junit.Test; + +import api.IEvaluator; +import api.Card; +import api.Hand; +import api.Suit; + + +public class EvaluatorTest { + + @Before + public void setup(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + } + + //For One Pair Evaluator + @Test + public void checkInitialName(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The name for the One Pair Evaluator should be One Pair"); + assertEquals(msg, "One Pair", onePairEval.getName()); + } + + @Test + public void checkRankingAndHandSize(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The newly constructed OnePairEvaluator(3, 4) should have ranking of 3 and hand size of 4"); + assertEquals(msg, 3, onePairEval.getRanking()); + assertEquals(msg, 4, onePairEval.handSize()); + } + + @Test + public void checkSameRankingDifferentSuitsCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d"); + String msg = ("The newly constructed cards[2c, 2d] should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkDifferentRankingCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("Kc, Qd"); + String msg = ("The newly constructed cards[Kc, Qd] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + + @Test + public void checkMainCardsMoreThanRequiredCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy2(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("6s, Jh, Ah, 10h, 6h, Js, 6c, Kh, Qh"); + Arrays.sort(cards); + String msg = ("The newly constructed cards[6s, Jh, Ah, 10h, 6h, Js, 6c, Kh, Qh]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } + + @Test + public void checkCreateHand(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("6s, Jh, Ah, 10h, 6h, Js, 6c, Kh, Qh"); + Arrays.sort(cards); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/89/c011b92e54c60013122a860e25993110 b/.metadata/.plugins/org.eclipse.core.resources/.history/89/c011b92e54c60013122a860e25993110 new file mode 100644 index 0000000000000000000000000000000000000000..c6858209297d706c8a8f16d13290935a4fd14572 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/89/c011b92e54c60013122a860e25993110 @@ -0,0 +1,74 @@ +package hw3; +import static org.junit.Assert.*; +import org.junit.Before; +import org.junit.Test; +import api.IEvaluator; +import api.Card; +import api.Hand; +import api.Suit; + + +public class EvaluatorTest { + + @Before + public void setup(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + } + + //For One Pair Evaluator + @Test + public void checkInitialName(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The name for the One Pair Evaluator should be One Pair"); + assertEquals(msg, "One Pair", onePairEval.getName()); + } + + @Test + public void checkRankingAndHandSize(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The newly constructed OnePairEvaluator(3, 4) should have ranking of 3 and hand size of 4"); + assertEquals(msg, 3, onePairEval.getRanking()); + assertEquals(msg, 4, onePairEval.handSize()); + } + + @Test + public void checkSameRankingDifferentSuitsCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d"); + String msg = ("The newly constructed cards[2c, 2d] should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkDifferentRankingCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("Kc, Qd"); + String msg = ("The newly constructed cards[Kc, Qd] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + + @Test + public void checkMainCardsMoreThanRequiredCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy2(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/94/70adbf0454c60013122a860e25993110 b/.metadata/.plugins/org.eclipse.core.resources/.history/94/70adbf0454c60013122a860e25993110 new file mode 100644 index 0000000000000000000000000000000000000000..a5907cab0c86907b47f58a4b4241cc63c8674520 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/94/70adbf0454c60013122a860e25993110 @@ -0,0 +1,49 @@ +package hw3; +import static org.junit.Assert.*; +import org.junit.Before; +import org.junit.Test; +import api.IEvaluator; +import api.Card; +import api.Hand; +import api.Suit; + + +public class EvaluatorTest { + + @Before + public void setup(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + } + + //For One Pair Evaluator + @Test + public void checkInitialName(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The name for the One Pair Evaluator should be One Pair"); + assertEquals(msg, "One Pair", onePairEval.getName()); + } + + @Test + public void checkRankingAndHandSize(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The newly constructed OnePairEvaluator(3, 4) should have ranking of 3 and hand size of 4"); + assertEquals(msg, 3, onePairEval.getRanking()); + assertEquals(msg, 4, onePairEval.handSize()); + } + + @Test + public void checkSameRankingDifferentSuitsCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d"); + String msg = ("The newly constructed cards[2c, 2d] should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkDifferentRankingCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("Kc, Qd"); + String msg = ("The newly constructed cards[Kc, Qd] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/f0/7089197454c60013122a860e25993110 b/.metadata/.plugins/org.eclipse.core.resources/.history/f0/7089197454c60013122a860e25993110 new file mode 100644 index 0000000000000000000000000000000000000000..1598e276d166fca4d3d1608122c9632e3e38d9fb --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/f0/7089197454c60013122a860e25993110 @@ -0,0 +1,79 @@ +package hw3; +import static org.junit.Assert.*; + +import java.util.Arrays; + +import org.junit.Before; +import org.junit.Test; + +import api.IEvaluator; +import api.Card; +import api.Hand; +import api.Suit; + + +public class EvaluatorTest { + + @Before + public void setup(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + } + + //For One Pair Evaluator + @Test + public void checkInitialName(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The name for the One Pair Evaluator should be One Pair"); + assertEquals(msg, "One Pair", onePairEval.getName()); + } + + @Test + public void checkRankingAndHandSize(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + String msg = ("The newly constructed OnePairEvaluator(3, 4) should have ranking of 3 and hand size of 4"); + assertEquals(msg, 3, onePairEval.getRanking()); + assertEquals(msg, 4, onePairEval.handSize()); + } + + @Test + public void checkSameRankingDifferentSuitsCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d"); + String msg = ("The newly constructed cards[2c, 2d] should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkDifferentRankingCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("Kc, Qd"); + String msg = ("The newly constructed cards[Kc, Qd] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + + @Test + public void checkMainCardsMoreThanRequiredCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + Arrays.sort(cards); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy2(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("6s, Jh, Ah, 10h, 6h, Js, 6c, Kh, Qh"); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } +} 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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/.markers.snap b/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/.markers.snap new file mode 100644 index 0000000000000000000000000000000000000000..4db3f353cccb5d226a1781abb5a554e0aabf5169 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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/homework/org.eclipse.jdt.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/org.eclipse.jdt.core/state.dat deleted file mode 100644 index 8557c014856b157302889b6067b7b720312acf51..0000000000000000000000000000000000000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/homework/org.eclipse.jdt.core/state.dat and /dev/null 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..1253ec8ad8c6db053a75de6169f668d2efcd4ee5 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..c9cd30cb68b0622d8e020f7d4d3dffbb3a9ea621 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 0bfe146c26285d4d75de38045ebb61c605862cf2..22c195e3913c7e608f363689b4dd28b334a09c17 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..fbc57693fcaa69e23a3208ab1117c7a02bce6a25 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 5988083eb6febddcbbfba28e2039532653e7b7f1..0cf7085d0942e6ad5f2e7c0ac478daf86133e1df 100644 --- a/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ b/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi @@ -1,17 +1,17 @@ <?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="_2k-CAMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_2k-CAcXQEeOQKtwf9Y2DKA" bindingContexts="_2lCTw8XQEeOQKtwf9Y2DKA"> - <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="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="BalloonTests.java" tooltip="project5/src/lab5/BalloonTests.java">
<persistable path="/project5/src/lab5/BalloonTests.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="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="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="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="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="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="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="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="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="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="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="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="IEvaluator.java" tooltip="homework/src/api/IEvaluator.java">
<persistable path="/homework/src/api/IEvaluator.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="_ucxnEMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_ucxnEcZ5EeOSuo9mkUu2dw" bindingContexts="_uc7_JMZ5EeOSuo9mkUu2dw"> + <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="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="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="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="BalloonTests.java" tooltip="project5/src/lab5/BalloonTests.java">
<persistable path="/project5/src/lab5/BalloonTests.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="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="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="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="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="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="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="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="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="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="CatchAllEvaluator.java" tooltip="homework/src/hw3/CatchAllEvaluator.java">
<persistable path="/homework/src/hw3/CatchAllEvaluator.java"/>
</file>
</mruList>
</workbench>"/> <tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags> <tags>ModelMigrationProcessor.001</tags> - <children xsi:type="basic:TrimmedWindow" xmi:id="_2k-CAcXQEeOQKtwf9Y2DKA" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_2k-CAsXQEeOQKtwf9Y2DKA" label="%trimmedwindow.label.eclipseSDK" x="25" y="22" width="1280" height="800"> + <children xsi:type="basic:TrimmedWindow" xmi:id="_ucxnEcZ5EeOSuo9mkUu2dw" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_ucxnEsZ5EeOSuo9mkUu2dw" label="%trimmedwindow.label.eclipseSDK" x="25" y="22" 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 1397697017896"/> <tags>topLevel</tags> - <children xsi:type="basic:PartSashContainer" xmi:id="_2k-CAsXQEeOQKtwf9Y2DKA" selectedElement="_2k-CA8XQEeOQKtwf9Y2DKA" horizontal="true"> - <children xsi:type="advanced:PerspectiveStack" xmi:id="_2k-CA8XQEeOQKtwf9Y2DKA" containerData="7500" selectedElement="_2k-CBMXQEeOQKtwf9Y2DKA"> - <children xsi:type="advanced:Perspective" xmi:id="_2k-CBMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.JavaPerspective" selectedElement="_2k-CBcXQEeOQKtwf9Y2DKA" label="Java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/jperspective.gif"> + <children xsi:type="basic:PartSashContainer" xmi:id="_ucxnEsZ5EeOSuo9mkUu2dw" selectedElement="_ucxnE8Z5EeOSuo9mkUu2dw" horizontal="true"> + <children xsi:type="advanced:PerspectiveStack" xmi:id="_ucxnE8Z5EeOSuo9mkUu2dw" containerData="7500" selectedElement="_ucxnFMZ5EeOSuo9mkUu2dw"> + <children xsi:type="advanced:Perspective" xmi:id="_ucxnFMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.JavaPerspective" selectedElement="_ucxnFcZ5EeOSuo9mkUu2dw" 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> @@ -75,3067 +75,3150 @@ <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="_2k-CBcXQEeOQKtwf9Y2DKA" selectedElement="_2k-CEcXQEeOQKtwf9Y2DKA" horizontal="true"> - <children xsi:type="basic:PartSashContainer" xmi:id="_2k-CBsXQEeOQKtwf9Y2DKA" containerData="2500" selectedElement="_2k-CB8XQEeOQKtwf9Y2DKA"> - <children xsi:type="basic:PartStack" xmi:id="_2k-CB8XQEeOQKtwf9Y2DKA" elementId="left" containerData="6000" selectedElement="_2k-CCMXQEeOQKtwf9Y2DKA"> + <children xsi:type="basic:PartSashContainer" xmi:id="_ucxnFcZ5EeOSuo9mkUu2dw" selectedElement="_ucxnIcZ5EeOSuo9mkUu2dw" horizontal="true"> + <children xsi:type="basic:PartSashContainer" xmi:id="_ucxnFsZ5EeOSuo9mkUu2dw" containerData="2500" selectedElement="_ucxnF8Z5EeOSuo9mkUu2dw"> + <children xsi:type="basic:PartStack" xmi:id="_ucxnF8Z5EeOSuo9mkUu2dw" elementId="left" containerData="6000" selectedElement="_ucxnGMZ5EeOSuo9mkUu2dw"> <tags>newtablook</tags> <tags>org.eclipse.e4.primaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CCMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_2k-picXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CCcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_2k-ppcXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CCsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_2k-ppsXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CC8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_2k-pp8XQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CDMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.junit.ResultView" ref="_2k-pxMXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CDcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.StructureView" toBeRendered="false" ref="_2k-pxcXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CDsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.PaletteView" toBeRendered="false" ref="_2k-pxsXQEeOQKtwf9Y2DKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnGMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_ucyObsZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnGcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_ucy1dcZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnGsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_ucy1dsZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnG8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_ucy1d8Z5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnHMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.ResultView" ref="_uczca8Z5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnHcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.StructureView" toBeRendered="false" ref="_uc0DV8Z5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnHsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.PaletteView" toBeRendered="false" ref="_uc0DWMZ5EeOSuo9mkUu2dw"/> </children> - <children xsi:type="basic:PartStack" xmi:id="_2k-CD8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewMStack" toBeRendered="false" containerData="4000"> + <children xsi:type="basic:PartStack" xmi:id="_ucxnH8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewMStack" toBeRendered="false" containerData="4000"> <tags>newtablook</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CEMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesView" toBeRendered="false" ref="_2k-pw8XQEeOQKtwf9Y2DKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnIMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesView" toBeRendered="false" ref="_uczcasZ5EeOSuo9mkUu2dw"/> </children> </children> - <children xsi:type="basic:PartSashContainer" xmi:id="_2k-CEcXQEeOQKtwf9Y2DKA" containerData="7500" selectedElement="_2k-CEsXQEeOQKtwf9Y2DKA"> - <children xsi:type="basic:PartSashContainer" xmi:id="_2k-CEsXQEeOQKtwf9Y2DKA" containerData="7500" selectedElement="_2k-CE8XQEeOQKtwf9Y2DKA" horizontal="true"> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CE8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_2k-ph8XQEeOQKtwf9Y2DKA"> - <tags>Maximized</tags> - </children> - <children xsi:type="basic:PartStack" xmi:id="_2k-CFMXQEeOQKtwf9Y2DKA" elementId="right" containerData="2500" selectedElement="_2k-CFcXQEeOQKtwf9Y2DKA"> + <children xsi:type="basic:PartSashContainer" xmi:id="_ucxnIcZ5EeOSuo9mkUu2dw" containerData="7500" selectedElement="_ucxnIsZ5EeOSuo9mkUu2dw"> + <children xsi:type="basic:PartSashContainer" xmi:id="_ucxnIsZ5EeOSuo9mkUu2dw" containerData="7500" selectedElement="_ucxnI8Z5EeOSuo9mkUu2dw" horizontal="true"> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnI8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_ucyOYMZ5EeOSuo9mkUu2dw"/> + <children xsi:type="basic:PartStack" xmi:id="_ucxnJMZ5EeOSuo9mkUu2dw" elementId="right" containerData="2500" selectedElement="_ucxnJcZ5EeOSuo9mkUu2dw"> <tags>newtablook</tags> <tags>org.eclipse.e4.secondaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CFcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.ContentOutline" ref="_2k-pvMXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CFsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.texteditor.TemplatesView" toBeRendered="false" ref="_2k-pwcXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CF8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_2k-pwsXQEeOQKtwf9Y2DKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnJcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.ContentOutline" ref="_uczcSMZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnJsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.texteditor.TemplatesView" toBeRendered="false" ref="_uczcaMZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnJ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_uczcacZ5EeOSuo9mkUu2dw"/> </children> </children> - <children xsi:type="basic:PartStack" xmi:id="_2k-CGMXQEeOQKtwf9Y2DKA" elementId="bottom" visible="false" containerData="2500" selectedElement="_2k-CGcXQEeOQKtwf9Y2DKA"> + <children xsi:type="basic:PartStack" xmi:id="_ucxnKMZ5EeOSuo9mkUu2dw" elementId="bottom" visible="false" containerData="2500" selectedElement="_ucxnKcZ5EeOSuo9mkUu2dw"> <tags>newtablook</tags> <tags>org.eclipse.e4.secondaryDataStack</tags> <tags>Minimized</tags> - <tags>MinimizedByZoom</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CGcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.ProblemView" ref="_2k-pqMXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CGsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.JavadocView" ref="_2k-ptsXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CG8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.SourceView" ref="_2k-pt8XQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CHMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_2k-puMXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CHcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.console.ConsoleView" toBeRendered="false" ref="_2k-pucXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CHsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_2k-pusXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CH8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_2k-pu8XQEeOQKtwf9Y2DKA"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnKcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.ProblemView" ref="_ucy1eMZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnKsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.JavadocView" ref="_uczcQsZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnK8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.SourceView" ref="_uczcQ8Z5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnLMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_uczcRMZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnLcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.console.ConsoleView" toBeRendered="false" ref="_uczcRcZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnLsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_uczcRsZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnL8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_uczcR8Z5EeOSuo9mkUu2dw"/> </children> </children> </children> </children> </children> - <children xsi:type="basic:PartStack" xmi:id="_2k-CIMXQEeOQKtwf9Y2DKA" elementId="stickyFolderRight" toBeRendered="false" containerData="2500"> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CIcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_2k-phMXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CIsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_2k-phcXQEeOQKtwf9Y2DKA"/> - <children xsi:type="advanced:Placeholder" xmi:id="_2k-CI8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_2k-phsXQEeOQKtwf9Y2DKA"/> + <children xsi:type="basic:PartStack" xmi:id="_ucxnMMZ5EeOSuo9mkUu2dw" elementId="stickyFolderRight" toBeRendered="false" containerData="2500"> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnMcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_ucyOXcZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnMsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_ucyOXsZ5EeOSuo9mkUu2dw"/> + <children xsi:type="advanced:Placeholder" xmi:id="_ucxnM8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_ucyOX8Z5EeOSuo9mkUu2dw"/> </children> </children> - <sharedElements xsi:type="basic:Part" xmi:id="_2k-phMXQEeOQKtwf9Y2DKA" 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="_ucyOXcZ5EeOSuo9mkUu2dw" 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="_2k-phcXQEeOQKtwf9Y2DKA" 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" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_ucyOXsZ5EeOSuo9mkUu2dw" 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" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_2k-phsXQEeOQKtwf9Y2DKA" 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="_ucyOX8Z5EeOSuo9mkUu2dw" 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="_2k-ph8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.editorss" selectedElement="_2k-piMXQEeOQKtwf9Y2DKA"> - <children xsi:type="basic:PartStack" xmi:id="_2k-piMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_xEUCkMXgEeOdS_GdqNPLFQ"> + <sharedElements xsi:type="advanced:Area" xmi:id="_ucyOYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.editorss" selectedElement="_ucyOYcZ5EeOSuo9mkUu2dw"> + <children xsi:type="basic:PartStack" xmi:id="_ucyOYcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_ucyOasZ5EeOSuo9mkUu2dw"> <tags>newtablook</tags> <tags>org.eclipse.e4.primaryDataStack</tags> <tags>EditorStack</tags> - <children xsi:type="basic:Part" xmi:id="_xEUCkMXgEeOdS_GdqNPLFQ" 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="8" selectionOffset="2506" selectionTopPixel="833"/>
</editor>"/> + <tags>active</tags> + <children xsi:type="basic:Part" xmi:id="_ucyOYsZ5EeOSuo9mkUu2dw" 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="13" selectionOffset="2205" selectionTopPixel="945"/>
</editor>"/> + <tags>Editor</tags> + <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> + <tags>removeOnHide</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_ucyOY8Z5EeOSuo9mkUu2dw" 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="_ucyOZMZ5EeOSuo9mkUu2dw" 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="_ucyOZcZ5EeOSuo9mkUu2dw" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> + </children> + <children xsi:type="basic:Part" xmi:id="_ucyOZsZ5EeOSuo9mkUu2dw" 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="2191" selectionTopPixel="947"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <tags>activeOnClose</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_ucyOZ8Z5EeOSuo9mkUu2dw" 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="_ucyOaMZ5EeOSuo9mkUu2dw" 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="_ucyOacZ5EeOSuo9mkUu2dw" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> </children> - <children xsi:type="basic:Part" xmi:id="_Yog4EMZOEeOavcmG4wPqlA" 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="579" selectionTopPixel="0"/>
</editor>"/> + <children xsi:type="basic:Part" xmi:id="_ucyOasZ5EeOSuo9mkUu2dw" 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="12" selectionOffset="3981" selectionTopPixel="2772"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> + <tags>active</tags> + <menus xsi:type="menu:PopupMenu" xmi:id="_ucyOa8Z5EeOSuo9mkUu2dw" 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="_ucyObMZ5EeOSuo9mkUu2dw" 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="_ucyObcZ5EeOSuo9mkUu2dw" elementId="#OverviewRulerContext"> + <tags>menuContribution:popup</tags> + <tags>popup:#OverviewRulerContext</tags> + </menus> </children> </children> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_2k-picXQEeOQKtwf9Y2DKA" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_ucyObsZ5EeOSuo9mkUu2dw" 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 1397697017896">
<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> - <menus xmi:id="_2k-pisXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.PackageExplorer"> + <menus xmi:id="_ucyOb8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.PackageExplorer"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_2k-poMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.PackageExplorer"> + <menus xsi:type="menu:PopupMenu" xmi:id="_ucyOhcZ5EeOSuo9mkUu2dw" 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="_ucyOhsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.PackageExplorer"> <tags>menuContribution:popup</tags> <tags>popup:org.eclipse.jdt.ui.PackageExplorer</tags> </menus> - <toolbar xmi:id="_2k-pocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.PackageExplorer" visible="false"/> + <toolbar xmi:id="_ucy1ccZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.PackageExplorer"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_2k-ppcXQEeOQKtwf9Y2DKA" 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="_ucy1dcZ5EeOSuo9mkUu2dw" 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="_2k-ppsXQEeOQKtwf9Y2DKA" 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="_ucy1dsZ5EeOSuo9mkUu2dw" 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="_2k-pp8XQEeOQKtwf9Y2DKA" 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="_ucy1d8Z5EeOSuo9mkUu2dw" 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="_2k-pqMXQEeOQKtwf9Y2DKA" 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, 61 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 (57 items)"/>
<category IMemento.internal.id="Warnings"/>
<category IMemento.internal.id="Errors"/>
</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>"/> + <sharedElements xsi:type="basic:Part" xmi:id="_ucy1eMZ5EeOSuo9mkUu2dw" 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, 59 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 (61 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="_2k-pqcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.ProblemView"> + <menus xmi:id="_ucy1ecZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.ProblemView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_2k-ptMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.ProblemView"> + <menus xsi:type="menu:PopupMenu" xmi:id="_ucy1hMZ5EeOSuo9mkUu2dw" 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="_uczcQMZ5EeOSuo9mkUu2dw" 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="_2k-ptcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.ProblemView" visible="false"/> + <toolbar xmi:id="_uczcQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.ProblemView"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_2k-ptsXQEeOQKtwf9Y2DKA" 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="_uczcQsZ5EeOSuo9mkUu2dw" 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="_2k-pt8XQEeOQKtwf9Y2DKA" 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="_uczcQ8Z5EeOSuo9mkUu2dw" 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="_2k-puMXQEeOQKtwf9Y2DKA" 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="_uczcRMZ5EeOSuo9mkUu2dw" 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="_2k-pucXQEeOQKtwf9Y2DKA" 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="_uczcRcZ5EeOSuo9mkUu2dw" 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"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_2k-pusXQEeOQKtwf9Y2DKA" 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="_uczcRsZ5EeOSuo9mkUu2dw" 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="_2k-pu8XQEeOQKtwf9Y2DKA" 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" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_uczcR8Z5EeOSuo9mkUu2dw" 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" closeable="true"> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_2k-pvMXQEeOQKtwf9Y2DKA" 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="_uczcSMZ5EeOSuo9mkUu2dw" 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="_2k-pvcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.ContentOutline"> + <menus xmi:id="_uczcScZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.ContentOutline"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_2k-pwMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.ContentOutline" visible="false"/> + <menus xsi:type="menu:PopupMenu" xmi:id="_uczcUsZ5EeOSuo9mkUu2dw" 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="_uczcU8Z5EeOSuo9mkUu2dw" 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="_uczcVMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.outline"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.ui.outline</tags> + </menus> + <toolbar xmi:id="_uczcVcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.ContentOutline"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_2k-pwcXQEeOQKtwf9Y2DKA" 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="_uczcaMZ5EeOSuo9mkUu2dw" 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="_2k-pwsXQEeOQKtwf9Y2DKA" 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="_uczcacZ5EeOSuo9mkUu2dw" 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="_2k-pw8XQEeOQKtwf9Y2DKA" 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="_uczcasZ5EeOSuo9mkUu2dw" 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="_2k-pxMXQEeOQKtwf9Y2DKA" 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" tooltip="EvaluatorTest [Runner: JUnit 4]" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_uczca8Z5EeOSuo9mkUu2dw" 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" tooltip="EvaluatorTest [Runner: JUnit 4]" 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="_0ClyIMZPEeOavcmG4wPqlA" elementId="org.eclipse.jdt.junit.ResultView"> + <menus xmi:id="_uczcbMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.ResultView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_0CmZMMZPEeOavcmG4wPqlA" elementId="org.eclipse.jdt.junit.ResultView" visible="false"/> + <menus xsi:type="menu:PopupMenu" xmi:id="_uczcd8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.ResultView"> + <tags>menuContribution:popup</tags> + <tags>popup:org.eclipse.jdt.junit.ResultView</tags> + </menus> + <toolbar xmi:id="_uczceMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.ResultView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_2k-pxcXQEeOQKtwf9Y2DKA" 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="_uc0DV8Z5EeOSuo9mkUu2dw" 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="_2k-pxsXQEeOQKtwf9Y2DKA" 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="_uc0DWMZ5EeOSuo9mkUu2dw" 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> - <trimBars xmi:id="_2k-px8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.main.toolbar"> - <children xsi:type="menu:ToolBar" xmi:id="_2k-pyMXQEeOQKtwf9Y2DKA" elementId="group.file" toBeRendered="false"> + <trimBars xmi:id="_uc0DWcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.main.toolbar"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0DWsZ5EeOSuo9mkUu2dw" elementId="group.file" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_2k-pycXQEeOQKtwf9Y2DKA" elementId="group.file" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_uc0DW8Z5EeOSuo9mkUu2dw" elementId="group.file" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k-pysXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.workbench.file"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0DXMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.workbench.file"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SRmMMZKEeOavcmG4wPqlA" elementId="new.group"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SSNQMZKEeOavcmG4wPqlA" elementId="newWizardDropDown"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SSNQcZKEeOavcmG4wPqlA" elementId="new.ext" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SSNQsZKEeOavcmG4wPqlA" elementId="save.group" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SSNQ8ZKEeOavcmG4wPqlA" elementId="save"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SSNRMZKEeOavcmG4wPqlA" elementId="saveAll"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SSNRcZKEeOavcmG4wPqlA" elementId="save.ext" visible="false"/> - <children xsi:type="menu:HandledToolItem" xmi:id="_0SS0UMZKEeOavcmG4wPqlA" elementId="print" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.gif" tooltip="Print" command="_2lwFJsXQEeOQKtwf9Y2DKA"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SXFwMZKEeOavcmG4wPqlA" elementId="print.ext" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SXs0MZKEeOavcmG4wPqlA" elementId="build.group"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SXs0cZKEeOavcmG4wPqlA" elementId="build.ext" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SXs0sZKEeOavcmG4wPqlA" elementId="additions"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DXcZ5EeOSuo9mkUu2dw" elementId="new.group"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DXsZ5EeOSuo9mkUu2dw" elementId="newWizardDropDown"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DX8Z5EeOSuo9mkUu2dw" elementId="new.ext" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DYMZ5EeOSuo9mkUu2dw" elementId="save.group" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DYcZ5EeOSuo9mkUu2dw" elementId="save"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DYsZ5EeOSuo9mkUu2dw" elementId="saveAll"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DY8Z5EeOSuo9mkUu2dw" elementId="save.ext" visible="false"/> + <children xsi:type="menu:HandledToolItem" xmi:id="_uc0DZMZ5EeOSuo9mkUu2dw" elementId="print" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.gif" tooltip="Print" command="_ueLVR8Z5EeOSuo9mkUu2dw"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DZcZ5EeOSuo9mkUu2dw" elementId="print.ext" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DZsZ5EeOSuo9mkUu2dw" elementId="build.group"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DZ8Z5EeOSuo9mkUu2dw" elementId="build.ext" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DaMZ5EeOSuo9mkUu2dw" elementId="additions"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k-p2MXQEeOQKtwf9Y2DKA" elementId="additions" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0DacZ5EeOSuo9mkUu2dw" elementId="additions" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_2k-p2cXQEeOQKtwf9Y2DKA" elementId="additions" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_uc0DasZ5EeOSuo9mkUu2dw" elementId="additions" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_QTMXQEeOQKtwf9Y2DKA" elementId="com_sysdeo_eclipse_tomcat_actionSet" visible="false"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0De8Z5EeOSuo9mkUu2dw" elementId="com_sysdeo_eclipse_tomcat_actionSet" visible="false"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_2k_QTcXQEeOQKtwf9Y2DKA" elementId="additions"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_2k_QTsXQEeOQKtwf9Y2DKA" elementId="com.sysdeo.eclipse.tomcat.start"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_2k_QT8XQEeOQKtwf9Y2DKA" elementId="com.sysdeo.eclipse.tomcat.stop"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_2k_QUMXQEeOQKtwf9Y2DKA" elementId="com.sysdeo.eclipse.tomcat.restart"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DfMZ5EeOSuo9mkUu2dw" elementId="additions"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DfcZ5EeOSuo9mkUu2dw" elementId="com.sysdeo.eclipse.tomcat.start"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DfsZ5EeOSuo9mkUu2dw" elementId="com.sysdeo.eclipse.tomcat.stop"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0Df8Z5EeOSuo9mkUu2dw" elementId="com.sysdeo.eclipse.tomcat.restart"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_QUcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.breakpointActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0DgMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.breakpointActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqGQMZKEeOavcmG4wPqlA" elementId="breakpointGroup"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqGQcZKEeOavcmG4wPqlA" elementId="org.eclipse.debug.ui.actions.SkipAllBreakpoints"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DgcZ5EeOSuo9mkUu2dw" elementId="breakpointGroup"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DgsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.actions.SkipAllBreakpoints"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_QVMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.launchActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0Dg8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.launchActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqGQsZKEeOavcmG4wPqlA" elementId="debug"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqGQ8ZKEeOavcmG4wPqlA" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqtUMZKEeOavcmG4wPqlA" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqtUcZKEeOavcmG4wPqlA" elementId="org.eclipse.debug.internal.ui.actions.ProfileDropDownAction"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqtUsZKEeOavcmG4wPqlA" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DhMZ5EeOSuo9mkUu2dw" elementId="debug"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DhcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DhsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0Dh8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.internal.ui.actions.ProfileDropDownAction"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DiMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_QWsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0DicZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqtU8ZKEeOavcmG4wPqlA" elementId="JavaWizards"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqtVMZKEeOavcmG4wPqlA" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqtVcZKEeOavcmG4wPqlA" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TqtVsZKEeOavcmG4wPqlA" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DisZ5EeOSuo9mkUu2dw" elementId="JavaWizards"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0Di8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DjMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DjcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_QX8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.searchActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0DjsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.search.searchActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TrUYMZKEeOavcmG4wPqlA" elementId="Search"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TrUYcZKEeOavcmG4wPqlA" elementId="openType"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TrUYsZKEeOavcmG4wPqlA" elementId="org.eclipse.search.OpenSearchDialogPage"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0Dj8Z5EeOSuo9mkUu2dw" elementId="Search"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DkMZ5EeOSuo9mkUu2dw" elementId="openType"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DkcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.search.OpenSearchDialogPage"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_Yt3cIMXgEeOdS_GdqNPLFQ" elementId="org.eclipse.ui.edit.text.actionSet.presentation"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0DksZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.actionSet.presentation"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0nkgwMZKEeOavcmG4wPqlA" elementId="Presentation"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0nkgwcZKEeOavcmG4wPqlA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0nkgwsZKEeOavcmG4wPqlA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0nlH0MZKEeOavcmG4wPqlA" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0nlH0cZKEeOavcmG4wPqlA" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0nlH0sZKEeOavcmG4wPqlA" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0Dk8Z5EeOSuo9mkUu2dw" elementId="Presentation"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DlMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DlcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0DlsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qYcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_QY8XQEeOQKtwf9Y2DKA" elementId="group.nav" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0qYsZ5EeOSuo9mkUu2dw" elementId="group.nav" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_2k_QZMXQEeOQKtwf9Y2DKA" elementId="group.nav" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_uc0qY8Z5EeOSuo9mkUu2dw" elementId="group.nav" toBeRendered="false"/> + </children> + <children xsi:type="menu:ToolBar" xmi:id="_uc0qZMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.workbench.navigate"> + <tags>Draggable</tags> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qZcZ5EeOSuo9mkUu2dw" elementId="history.group"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qZsZ5EeOSuo9mkUu2dw" elementId="group.application" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qZ8Z5EeOSuo9mkUu2dw" elementId="backardHistory"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qaMZ5EeOSuo9mkUu2dw" elementId="forwardHistory"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qacZ5EeOSuo9mkUu2dw" elementId="pin.group"/> + <children xsi:type="menu:HandledToolItem" xmi:id="_uc0qasZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.gif" tooltip="Pin Editor" enabled="false" command="_ud1XBsZ5EeOSuo9mkUu2dw"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qa8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qbMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qbcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_QZcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.workbench.navigate"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0qbsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.CompilationUnitEditor" visible="false"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SXs08ZKEeOavcmG4wPqlA" elementId="history.group"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SYT4MZKEeOavcmG4wPqlA" elementId="group.application" visible="false"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SYT4cZKEeOavcmG4wPqlA" elementId="backardHistory"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SYT4sZKEeOavcmG4wPqlA" elementId="forwardHistory"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SYT48ZKEeOavcmG4wPqlA" elementId="pin.group"/> - <children xsi:type="menu:HandledToolItem" xmi:id="_0SY68MZKEeOavcmG4wPqlA" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.gif" tooltip="Pin Editor" enabled="false" command="_2lltJcXQEeOQKtwf9Y2DKA"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TrUY8ZKEeOavcmG4wPqlA" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TrUZMZKEeOavcmG4wPqlA" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0TrUZcZKEeOavcmG4wPqlA" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_Qb8XQEeOQKtwf9Y2DKA" elementId="group.editor" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0qb8Z5EeOSuo9mkUu2dw" elementId="group.editor" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_2k_QcMXQEeOQKtwf9Y2DKA" elementId="group.editor" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_uc0qcMZ5EeOSuo9mkUu2dw" elementId="group.editor" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_QccXQEeOQKtwf9Y2DKA" elementId="group.help" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0qccZ5EeOSuo9mkUu2dw" elementId="group.help" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_2k_QcsXQEeOQKtwf9Y2DKA" elementId="group.help" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_uc0qcsZ5EeOSuo9mkUu2dw" elementId="group.help" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_2k_Qc8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.workbench.help" visible="false"> + <children xsi:type="menu:ToolBar" xmi:id="_uc0qc8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.workbench.help" visible="false"> <tags>Draggable</tags> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SZiAMZKEeOavcmG4wPqlA" elementId="group.help"/> - <children xsi:type="menu:OpaqueToolItem" xmi:id="_0SZiAcZKEeOavcmG4wPqlA" elementId="group.application" visible="false"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qdMZ5EeOSuo9mkUu2dw" elementId="group.help"/> + <children xsi:type="menu:OpaqueToolItem" xmi:id="_uc0qdcZ5EeOSuo9mkUu2dw" elementId="group.application" visible="false"/> </children> - <children xsi:type="menu:ToolControl" xmi:id="_2k_QdsXQEeOQKtwf9Y2DKA" 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="_uc0qdsZ5EeOSuo9mkUu2dw" 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="_2k_Qd8XQEeOQKtwf9Y2DKA" 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="_uc0qd8Z5EeOSuo9mkUu2dw" 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="_2k_QeMXQEeOQKtwf9Y2DKA" elementId="SearchField" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.quickaccess.SearchField"/> - <children xsi:type="menu:ToolControl" xmi:id="_2k_QecXQEeOQKtwf9Y2DKA" 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="_uc0qeMZ5EeOSuo9mkUu2dw" elementId="SearchField" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.quickaccess.SearchField"/> + <children xsi:type="menu:ToolControl" xmi:id="_uc0qecZ5EeOSuo9mkUu2dw" 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="_2k_QesXQEeOQKtwf9Y2DKA" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher"> + <children xsi:type="menu:ToolControl" xmi:id="_uc0qesZ5EeOSuo9mkUu2dw" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher"> <tags>Draggable</tags> </children> </trimBars> - <trimBars xmi:id="_2k_Qe8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.trim.status" side="Bottom"> - <children xsi:type="menu:ToolControl" xmi:id="_2k_QfMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.StatusLine" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> + <trimBars xmi:id="_uc0qe8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.trim.status" side="Bottom"> + <children xsi:type="menu:ToolControl" xmi:id="_uc0qfMZ5EeOSuo9mkUu2dw" 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="_2k_QfcXQEeOQKtwf9Y2DKA" 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="_2k_QfsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> + <children xsi:type="menu:ToolControl" xmi:id="_uc0qfcZ5EeOSuo9mkUu2dw" 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="_uc0qfsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> <tags>Draggable</tags> </children> </trimBars> - <trimBars xmi:id="_2k_Qf8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left"> - <children xsi:type="menu:ToolControl" xmi:id="_cNg98MZQEeOavcmG4wPqlA" 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"> + <trimBars xmi:id="_uc0qf8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left"> + <children xsi:type="menu:ToolControl" xmi:id="_uc0qgMZ5EeOSuo9mkUu2dw" 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="_2k_QgMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.trim.vertical2" side="Right"> - <children xsi:type="menu:ToolControl" xmi:id="_cNxcoMZQEeOavcmG4wPqlA" 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="_uc0qgcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.trim.vertical2" side="Right"> + <children xsi:type="menu:ToolControl" xmi:id="_uc0qgsZ5EeOSuo9mkUu2dw" 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="_uc0qg8Z5EeOSuo9mkUu2dw" elementId="bottom(org.eclipse.jdt.ui.JavaPerspective)" 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="_cN4xYMZQEeOavcmG4wPqlA" elementId="bottom(org.eclipse.jdt.ui.JavaPerspective)" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack"> + <children xsi:type="menu:ToolControl" xmi:id="_uc0qhMZ5EeOSuo9mkUu2dw" 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="_Ksa4cMXREeOGcfz2MGiB3Q" 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="_KsaRYcXREeOGcfz2MGiB3Q"/> - <handlers xmi:id="_Ksa4csXREeOGcfz2MGiB3Q" 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="_Ksa4ccXREeOGcfz2MGiB3Q"/> - <handlers xmi:id="_KsbfgcXREeOGcfz2MGiB3Q" 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="_KsbfgMXREeOGcfz2MGiB3Q"/> - <handlers xmi:id="_KscGkMXREeOGcfz2MGiB3Q" 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="_Ksbfg8XREeOGcfz2MGiB3Q"/> - <handlers xmi:id="_KscGksXREeOGcfz2MGiB3Q" 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="_KscGkcXREeOGcfz2MGiB3Q"/> - <bindingTables xmi:id="_2k_QhcXQEeOQKtwf9Y2DKA" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_2lCTw8XQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_2k_QicXQEeOQKtwf9Y2DKA" keySequence="ALT+SHIFT+F2" command="_2lcjLcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_QjcXQEeOQKtwf9Y2DKA" keySequence="ALT+SHIFT+F1" command="_2lYRwMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_QjsXQEeOQKtwf9Y2DKA" keySequence="CTRL+SPACE" command="_2lrMqsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_Qj8XQEeOQKtwf9Y2DKA" keySequence="CTRL+SHIFT+SPACE" command="_2liCtMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_Ql8XQEeOQKtwf9Y2DKA" keySequence="ALT+SHIFT+F3" command="_2l0WmMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_QnMXQEeOQKtwf9Y2DKA" keySequence="ALT+PAGE_UP" command="_2lrMpMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_QnsXQEeOQKtwf9Y2DKA" keySequence="ALT+PAGE_DOWN" command="_2leYYMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsE6M8XREeOGcfz2MGiB3Q" keySequence="COMMAND+F10" command="_2lqlmcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsIkk8XREeOGcfz2MGiB3Q" keySequence="COMMAND+1" command="_2ldKQsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsIklMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+L" command="_2lm7OMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsKZwcXREeOGcfz2MGiB3Q" keySequence="COMMAND+V" command="_2lm7RsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsKZwsXREeOGcfz2MGiB3Q" keySequence="COMMAND+X" command="_2lto9MXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsKZw8XREeOGcfz2MGiB3Q" keySequence="COMMAND+Z" command="_2lZf7cXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsMO88XREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+Z" command="_2lfmhcXQEeOQKtwf9Y2DKA"> - <tags>platform:cocoa</tags> - </bindings> - <bindings xmi:id="_KsMO9cXREeOGcfz2MGiB3Q" keySequence="SHIFT+F10" command="_2lY42sXQEeOQKtwf9Y2DKA"> - <tags>platform:cocoa</tags> - </bindings> - <bindings xmi:id="_KsNdEMXREeOGcfz2MGiB3Q" keySequence="COMMAND+C" command="_2lpXhMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsOrM8XREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+I" command="_2lmUIcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsPSRMXREeOGcfz2MGiB3Q" keySequence="COMMAND+A" command="_2lpXgMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsVY4MXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+D" command="_2lfmf8XQEeOQKtwf9Y2DKA"/> + <handlers xmi:id="_uc0qhcZ5EeOSuo9mkUu2dw" 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="_ueXig8Z5EeOSuo9mkUu2dw"/> + <handlers xmi:id="_uc0qhsZ5EeOSuo9mkUu2dw" 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="_ueXihMZ5EeOSuo9mkUu2dw"/> + <handlers xmi:id="_uc0qh8Z5EeOSuo9mkUu2dw" 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="_ueXihcZ5EeOSuo9mkUu2dw"/> + <handlers xmi:id="_uc0qiMZ5EeOSuo9mkUu2dw" 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="_ueXihsZ5EeOSuo9mkUu2dw"/> + <handlers xmi:id="_uc0qicZ5EeOSuo9mkUu2dw" 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="_ueXih8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc0qisZ5EeOSuo9mkUu2dw" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_uc7_JMZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc0qi8Z5EeOSuo9mkUu2dw" keySequence="ALT+SHIFT+F2" command="_udexu8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qjMZ5EeOSuo9mkUu2dw" keySequence="ALT+SHIFT+F1" command="_udUZqMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qjcZ5EeOSuo9mkUu2dw" keySequence="CTRL+SPACE" command="_ueBkS8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qjsZ5EeOSuo9mkUu2dw" keySequence="CTRL+SHIFT+SPACE" command="_udrmCMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qj8Z5EeOSuo9mkUu2dw" keySequence="ALT+SHIFT+F3" command="_ueUfM8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qkMZ5EeOSuo9mkUu2dw" keySequence="ALT+PAGE_UP" command="_ueBkRcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qkcZ5EeOSuo9mkUu2dw" keySequence="ALT+PAGE_DOWN" command="_udjqNMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qksZ5EeOSuo9mkUu2dw" keySequence="COMMAND+F10" command="_ueAWKsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qk8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+1" command="_udhN9MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qlMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+L" command="_ud3zQ8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qlcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+V" command="_ud4aV8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qlsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+X" command="_ueGcx8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0ql8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+Z" command="_udYrF8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qmMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+Z" command="_udmthcZ5EeOSuo9mkUu2dw"> + <tags>platform:cocoa</tags> + </bindings> + <bindings xmi:id="_uc0qmcZ5EeOSuo9mkUu2dw" keySequence="SHIFT+F10" command="_udW16MZ5EeOSuo9mkUu2dw"> + <tags>platform:cocoa</tags> + </bindings> + <bindings xmi:id="_uc0qmsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+C" command="_ud-g8sZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc0qm8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+I" command="_ud1XCcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RcMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+A" command="_ud954sZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RccZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+D" command="_udmGecZ5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2k_Qn8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.contexts.window" bindingContext="_2lCTxMXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_2k_QusXQEeOQKtwf9Y2DKA" keySequence="SHIFT+F5" command="_2lniUsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_QwMXQEeOQKtwf9Y2DKA" keySequence="F4" command="_2lsa0sXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_Q2MXQEeOQKtwf9Y2DKA" keySequence="SHIFT+F2" command="_2lx6XsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_Q2cXQEeOQKtwf9Y2DKA" keySequence="F3" command="_2leYXsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3NcXQEeOQKtwf9Y2DKA" keySequence="ALT+CR" command="_2lg0lsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3NsXQEeOQKtwf9Y2DKA" keySequence="F5" command="_2loJWcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3N8XQEeOQKtwf9Y2DKA" keySequence="DEL" command="_2lZf0sXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3QsXQEeOQKtwf9Y2DKA" keySequence="ALT+F7" command="_2ltB1cXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3Q8XQEeOQKtwf9Y2DKA" keySequence="ALT+SHIFT+F7" command="_2lp-j8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3ScXQEeOQKtwf9Y2DKA" keySequence="CTRL+Q" command="_2le_ccXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3SsXQEeOQKtwf9Y2DKA" keySequence="F2" command="_2lowcsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3TsXQEeOQKtwf9Y2DKA" keySequence="CTRL+H" command="_2lwsRMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3iMXQEeOQKtwf9Y2DKA" keySequence="ALT+CTRL+H" command="_2lZf48XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_Kr_aoMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+NUMPAD_MULTIPLY" command="_2lltFcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsABscXREeOGcfz2MGiB3Q" keySequence="COMMAND+E" command="_2lm7QMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsBP0MXREeOGcfz2MGiB3Q" keySequence="COMMAND+]" command="_2lgNgMXQEeOQKtwf9Y2DKA"> + <bindingTables xmi:id="_uc1RcsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.contexts.window" bindingContext="_uc7_JcZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc1Rc8Z5EeOSuo9mkUu2dw" keySequence="SHIFT+F5" command="_ud5odcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RdMZ5EeOSuo9mkUu2dw" keySequence="F4" command="_ueEnkMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RdcZ5EeOSuo9mkUu2dw" keySequence="SHIFT+F2" command="_uePms8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RdsZ5EeOSuo9mkUu2dw" keySequence="F3" command="_udjqMsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1Rd8Z5EeOSuo9mkUu2dw" keySequence="ALT+CR" command="_udoiscZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1ReMZ5EeOSuo9mkUu2dw" keySequence="F5" command="_ud62kMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RecZ5EeOSuo9mkUu2dw" keySequence="DEL" command="_udXc9sZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1ResZ5EeOSuo9mkUu2dw" keySequence="ALT+F7" command="_ueEnmsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1Re8Z5EeOSuo9mkUu2dw" keySequence="ALT+SHIFT+F7" command="_ud_vE8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RfMZ5EeOSuo9mkUu2dw" keySequence="CTRL+Q" command="_udk4VcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RfcZ5EeOSuo9mkUu2dw" keySequence="F2" command="_ud8EucZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RfsZ5EeOSuo9mkUu2dw" keySequence="CTRL+H" command="_ueNKd8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1Rf8Z5EeOSuo9mkUu2dw" keySequence="ALT+CTRL+H" command="_udYEC8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RgMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+NUMPAD_MULTIPLY" command="_ud0v8MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RgcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+E" command="_ud4aUcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RgsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+]" command="_udmtisZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsB24MXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+ARROW_LEFT" command="_2ltB2MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc1Rg8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+ARROW_LEFT" command="_ueFOocZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsB24cXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+C" command="_2lg0oMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc1RhMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+C" command="_udpJwMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsDsEMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+F11" command="_2lgNh8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc1RhcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+F11" command="_udnUk8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsDsEcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+L" command="_2lyhacXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc1RhsZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+L" command="_ueQNxsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsDsEsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Z" command="_2lY4zMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc1Rh8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Z" command="_udWO08Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsDsE8XREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+R" command="_2ldxVsXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc1RiMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+R" command="_udicGMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsETIcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+." command="_2lZf4MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc1RicZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+." command="_udYECMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsETI8XREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+T" command="_2lgNjsXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc1RisZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+T" command="_udnUmsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsFhQ8XREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+U" command="_2lmULcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsFhRcXREeOGcfz2MGiB3Q" keySequence="COMMAND+G" command="_2lauB8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGIUMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+T" command="_2lcjO8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGIVcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+O" command="_2le_ZsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGvZMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+N" command="_2llGDMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsHWccXREeOGcfz2MGiB3Q" keySequence="COMMAND+U" command="_2l1kssXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsHWcsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+SHIFT+M" command="_2loJY8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsHWdMXREeOGcfz2MGiB3Q" keySequence="COMMAND+N" command="_2lbVCsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsH9gMXREeOGcfz2MGiB3Q" keySequence="COMMAND+W" command="_2lbVCcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsH9gcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+W" command="_2l0WlcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsH9gsXREeOGcfz2MGiB3Q" keySequence="COMMAND+S" command="_2lsaysXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsH9g8XREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+S" command="_2lb8FcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsH9hMXREeOGcfz2MGiB3Q" keySequence="COMMAND+P" command="_2lwFJsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsH9hcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+R" command="_2lbVHsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsH9hsXREeOGcfz2MGiB3Q" keySequence="COMMAND+3" command="_2l0WmsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJLocXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+NUMPAD_DIVIDE" command="_2lfmcsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJLpcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+F8" command="_2lcjPcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJysMXREeOGcfz2MGiB3Q" keySequence="COMMAND+F8" command="_2l09rMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJyscXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+F7" command="_2lcjM8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJyssXREeOGcfz2MGiB3Q" keySequence="COMMAND+F7" command="_2lg0k8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJys8XREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+F6" command="_2lqlosXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJytMXREeOGcfz2MGiB3Q" keySequence="COMMAND+F6" command="_2laG9MXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJytcXREeOGcfz2MGiB3Q" keySequence="COMMAND+." command="_2lat_8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJytsXREeOGcfz2MGiB3Q" keySequence="COMMAND+F" command="_2leYVsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsKZxcXREeOGcfz2MGiB3Q" keySequence="COMMAND+I" command="_2lg0lsXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc1Ri8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+U" command="_ud2lI8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RjMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+G" command="_udbHWsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RjcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+T" command="_udf_1cZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RjsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+O" command="_udkRR8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1Rj8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+N" command="_udy6yMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RkMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+U" command="_ueWUZ8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RkcZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+SHIFT+M" command="_ud62msZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RksZ5EeOSuo9mkUu2dw" keySequence="COMMAND+N" command="_udcVc8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1Rk8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+W" command="_udcVcsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc1RlMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+W" command="_ueUfMMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14gMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+S" command="_ueEAg8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14gcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+S" command="_uddjkMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14gsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+P" command="_ueLVR8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14g8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+R" command="_udc8icZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14hMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+3" command="_ueUfNcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14hcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+NUMPAD_DIVIDE" command="_udlfZsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14hsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+F8" command="_udf_18Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14h8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+F8" command="_ueVtWMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14iMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+F7" command="_udfYxcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14icZ5EeOSuo9mkUu2dw" keySequence="COMMAND+F7" command="_udn7q8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14isZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+F6" command="_ueA9OMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14i8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+F6" command="_udZ5MsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14jMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+." command="_udbHUsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14jcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+F" command="_udjDJsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14jsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+I" command="_udoiscZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsLA0cXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+V" command="_2loJX8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14j8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+V" command="_ud62lsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsLA0sXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+W" command="_2lowbcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14kMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+W" command="_ud8EtMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsLA08XREeOGcfz2MGiB3Q" keySequence="COMMAND+F11" command="_2lZf7sXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14kcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+F11" command="_udYrGMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsLn4MXREeOGcfz2MGiB3Q" keySequence="COMMAND+[" command="_2ltB2MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14ksZ5EeOSuo9mkUu2dw" keySequence="COMMAND+[" command="_ueFOocZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsLn4sXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+N" command="_2lZf6cXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14k8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+N" command="_udYrE8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsLn5MXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+3" command="_2luQBMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14lMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+3" command="_ueHq5MZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsMO8MXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+M" command="_2lyhc8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14lcZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+M" command="_ueQ01MZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsMO8cXREeOGcfz2MGiB3Q" keySequence="COMMAND+F12" command="_2le_ZcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14lsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+F12" command="_udkRRsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsMO9MXREeOGcfz2MGiB3Q" keySequence="CTRL+M" command="_2lb8JMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14l8Z5EeOSuo9mkUu2dw" keySequence="CTRL+M" command="_udeKoMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsMO9sXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+S" command="_2lniRMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14mMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+S" command="_ud5BYcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsM2AMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+F10" command="_2ldxRcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14mcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+F10" command="_udh1A8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsNdEcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+H" command="_2lYRycXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsNdFMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+I" command="_2lbVDcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14msZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+H" command="_udVAs8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc14m8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+I" command="_udcVdsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsNdFcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+CTRL+D A" command="_2lgNkcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14nMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+CTRL+D A" command="_udn7oMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsNdFsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+CTRL+D O" command="_2lniQcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14ncZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+CTRL+D O" command="_ud4aWcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsOEIMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+CTRL+D E" command="_2lb8GcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14nsZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+CTRL+D E" command="_uddjlMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsOEIcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+CTRL+D P" command="_2lzvg8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14n8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+CTRL+D P" command="_ueSqAcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsOEIsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+CTRL+D Q" command="_2lveFsXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14oMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+CTRL+D Q" command="_ueKHJMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsOEI8XREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+CTRL+D J" command="_2lyhZsXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14ocZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+CTRL+D J" command="_ueQNw8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsOEJMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+CTRL+D T" command="_2lrzvcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14osZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+CTRL+D T" command="_ueCyacZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsOEJcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+ARROW_RIGHT" command="_2lgNgMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14o8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+ARROW_RIGHT" command="_udmtisZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsOrMcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+SHIFT+A" command="_2lmUMsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsPSQMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+J" command="_2l09ssXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc14pMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+SHIFT+A" command="_ud3MMMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc2fkMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+J" command="_ueWUY8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsPSQ8XREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+A" command="_2leYYcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsPSRcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+G" command="_2lm7O8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsP5VsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+X P" command="_2lwsP8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fkcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+A" command="_udjqNcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc2fksZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+G" command="_ud3zRsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc2fk8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+X P" command="_ueNKcsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsQgYMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q T" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2flMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q T" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsQgYcXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/> + <parameters xmi:id="_uc2flcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/> </bindings> - <bindings xmi:id="_KsQgYsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q O" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2flsZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q O" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsQgY8XREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/> + <parameters xmi:id="_uc2fl8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/> </bindings> - <bindings xmi:id="_KsQgZMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q Y" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fmMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q Y" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsQgZcXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.sync.views.SynchronizeView"/> + <parameters xmi:id="_uc2fmcZ5EeOSuo9mkUu2dw" 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="_KsRHcMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q B" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fmsZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q B" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsRHccXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/> + <parameters xmi:id="_uc2fm8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/> </bindings> - <bindings xmi:id="_KsRHcsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q J" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fnMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q J" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsRHc8XREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/> + <parameters xmi:id="_uc2fncZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/> </bindings> - <bindings xmi:id="_KsRHdMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q C" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fnsZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q C" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsRHdcXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/> + <parameters xmi:id="_uc2fn8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/> </bindings> - <bindings xmi:id="_KsRHdsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+X E" command="_2l0WoMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2foMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+X E" command="_ueVGQcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsRugMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q Q" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2focZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q Q" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsRugcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q V" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fosZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q V" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsRugsXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/> + <parameters xmi:id="_uc2fo8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/> </bindings> - <bindings xmi:id="_KsRug8XREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q H" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fpMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q H" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsRuhMXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.cheatsheets.views.CheatSheetView"/> + <parameters xmi:id="_uc2fpcZ5EeOSuo9mkUu2dw" 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="_KsRuhcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q Z" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fpsZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q Z" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsRuhsXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/> + <parameters xmi:id="_uc2fp8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/> </bindings> - <bindings xmi:id="_KsSVkMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+X O" command="_2lb8KcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fqMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+X O" command="_udeKpcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsSVkcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+X T" command="_2lg0lcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fqcZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+X T" command="_udoisMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsSVksXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q D" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fqsZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q D" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsSVk8XREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/> + <parameters xmi:id="_uc2fq8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/> </bindings> - <bindings xmi:id="_KsSVlMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+X Q" command="_2ltB3sXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2frMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+X Q" command="_ueFOp8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsSVlcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q L" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2frcZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q L" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsSVlsXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/> + <parameters xmi:id="_uc2frsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/> </bindings> - <bindings xmi:id="_KsS8oMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q S" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fr8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q S" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsS8ocXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.search.ui.views.SearchView"/> + <parameters xmi:id="_uc2fsMZ5EeOSuo9mkUu2dw" 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="_KsS8osXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q P" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fscZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q P" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsS8o8XREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/> + <parameters xmi:id="_uc2fssZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/> </bindings> - <bindings xmi:id="_KsS8pMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+X J" command="_2lwsNcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2fs8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+X J" command="_ueMjZcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsS8pcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+X A" command="_2l09o8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2ftMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+X A" command="_ueVGScZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsTjsMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+Q X" command="_2lj35MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2ftcZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+Q X" command="_udv3d8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> - <parameters xmi:id="_KsTjscXREeOGcfz2MGiB3Q" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/> + <parameters xmi:id="_uc2ftsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/> </bindings> - <bindings xmi:id="_KsTjtMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+B" command="_2le_bcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsUKwcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+E" command="_2lcjMcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsUx0MXREeOGcfz2MGiB3Q" keySequence="COMMAND+B" command="_2lltFMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsUx0cXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+G" command="_2lZf2MXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsUx1cXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+F" command="_2l0Wn8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc2ft8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+B" command="_udk4UcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc2fuMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+E" command="_udfYw8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc2fucZ5EeOSuo9mkUu2dw" keySequence="COMMAND+B" command="_ud0I6MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc2fusZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+G" command="_udYEAMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc2fu8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+F" command="_ueVGQMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_0DrJgcZKEeOavcmG4wPqlA" keySequence="COMMAND+CTRL+F" command="_KsbfgMXREeOGcfz2MGiB3Q"/> + <bindings xmi:id="_uc3GoMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+CTRL+F" command="_ueXihcZ5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2k_3icXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.cEditorScope" bindingContext="_2lC6lMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2k_3r8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.textEditorScope" bindingContext="_2lCTycXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_2k_3ssXQEeOQKtwf9Y2DKA" keySequence="CTRL+ARROW_UP" command="_2lwFI8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3tcXQEeOQKtwf9Y2DKA" keySequence="ALT+ARROW_DOWN" command="_2luP8cXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3t8XQEeOQKtwf9Y2DKA" keySequence="CTRL+ARROW_DOWN" command="_2lveJMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2k_3vMXQEeOQKtwf9Y2DKA" keySequence="CTRL+SHIFT+Q" command="_2leYWMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2lAeRcXQEeOQKtwf9Y2DKA" keySequence="INSERT" command="_2lm7McXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2lAeR8XQEeOQKtwf9Y2DKA" keySequence="SHIFT+CR" command="_2lrMpsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2lAeTMXQEeOQKtwf9Y2DKA" keySequence="F2" command="_2lmUNsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2lAeUMXQEeOQKtwf9Y2DKA" keySequence="ALT+ARROW_UP" command="_2lg0msXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsABsMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+NUMPAD_MULTIPLY" command="_2lmUKMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsAowMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+J" command="_2lu3BsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsBP0cXREeOGcfz2MGiB3Q" keySequence="ALT+ARROW_LEFT" command="_2laG58XQEeOQKtwf9Y2DKA"> + <bindingTables xmi:id="_uc3GocZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.cEditorScope" bindingContext="_uc8mN8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc3GosZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.textEditorScope" bindingContext="_uc7_KsZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc3Go8Z5EeOSuo9mkUu2dw" keySequence="CTRL+ARROW_UP" command="_ueLVRMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GpMZ5EeOSuo9mkUu2dw" keySequence="ALT+ARROW_DOWN" command="_ueGcycZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GpcZ5EeOSuo9mkUu2dw" keySequence="CTRL+ARROW_DOWN" command="_ueLVQMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GpsZ5EeOSuo9mkUu2dw" keySequence="CTRL+SHIFT+Q" command="_udjDKMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3Gp8Z5EeOSuo9mkUu2dw" keySequence="INSERT" command="_ud3MN8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GqMZ5EeOSuo9mkUu2dw" keySequence="SHIFT+CR" command="_ueBkR8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GqcZ5EeOSuo9mkUu2dw" keySequence="F2" command="_ud3MNMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GqsZ5EeOSuo9mkUu2dw" keySequence="ALT+ARROW_UP" command="_udoitcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3Gq8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+NUMPAD_MULTIPLY" command="_ud1-FsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GrMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+J" command="_ueIR88Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GrcZ5EeOSuo9mkUu2dw" keySequence="ALT+ARROW_LEFT" command="_udZSI8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsDFAMXREeOGcfz2MGiB3Q" keySequence="ALT+ARROW_RIGHT" command="_2lxTT8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3GrsZ5EeOSuo9mkUu2dw" keySequence="ALT+ARROW_RIGHT" command="_ueOYksZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsDFAcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+DEL" command="_2laG88XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsETIsXREeOGcfz2MGiB3Q" keySequence="END" command="_2lY438XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3Gr8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+DEL" command="_udZ5McZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GsMZ5EeOSuo9mkUu2dw" keySequence="END" command="_udXc88Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsETJMXREeOGcfz2MGiB3Q" keySequence="COMMAND+HOME" command="_2lwsQ8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsETJcXREeOGcfz2MGiB3Q" keySequence="COMMAND+END" command="_2lY438XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsE6MMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+Y" command="_2ltB4sXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsE6McXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+X" command="_2liCvMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsE6MsXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+CR" command="_2lY4wcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsE6NMXREeOGcfz2MGiB3Q" keySequence="COMMAND+F10" command="_2lsa1sXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsFhQMXREeOGcfz2MGiB3Q" keySequence="COMMAND+L" command="_2luP_cXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsIkkMXREeOGcfz2MGiB3Q" keySequence="COMMAND+K" command="_2lzIgMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsIkkcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+K" command="_2lj348XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsIkksXREeOGcfz2MGiB3Q" keySequence="COMMAND+J" command="_2lqlnsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsIklcXREeOGcfz2MGiB3Q" keySequence="COMMAND+NUMPAD_SUBTRACT" command="_2lgNmMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJLoMXREeOGcfz2MGiB3Q" keySequence="COMMAND+NUMPAD_ADD" command="_2ldKMsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJLosXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+NUMPAD_DIVIDE" command="_2lqlpsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJLo8XREeOGcfz2MGiB3Q" keySequence="COMMAND+NUMPAD_MULTIPLY" command="_2lrMq8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsJLpMXREeOGcfz2MGiB3Q" keySequence="COMMAND+NUMPAD_DIVIDE" command="_2lfmdcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsLA0MXREeOGcfz2MGiB3Q" keySequence="CTRL+." command="_2l09rsXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3GscZ5EeOSuo9mkUu2dw" keySequence="COMMAND+HOME" command="_ueNKdsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GssZ5EeOSuo9mkUu2dw" keySequence="COMMAND+END" command="_udXc88Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3Gs8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+Y" command="_ueFOq8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GtMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+X" command="_udsNF8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GtcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+CR" command="_udVnw8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3GtsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+F10" command="_ueEnlMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3tsMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+L" command="_ueHD2MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3tscZ5EeOSuo9mkUu2dw" keySequence="COMMAND+K" command="_ueSC8MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3tssZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+K" command="_udv3dsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3ts8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+J" command="_ueA9NMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3ttMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+NUMPAD_SUBTRACT" command="_udn7p8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3ttcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+NUMPAD_ADD" command="_udgm4MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3ttsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+NUMPAD_DIVIDE" command="_ueBkQMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3tt8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+NUMPAD_MULTIPLY" command="_ueBkTMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3tuMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+NUMPAD_DIVIDE" command="_udlfacZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3tucZ5EeOSuo9mkUu2dw" keySequence="CTRL+." command="_ueVtWsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsLA1MXREeOGcfz2MGiB3Q" keySequence="HOME" command="_2lwsQ8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tusZ5EeOSuo9mkUu2dw" keySequence="HOME" command="_ueNKdsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsM2BcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+ARROW_LEFT" command="_2lu3AcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tu8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+ARROW_LEFT" command="_ueHq58Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsNdEsXREeOGcfz2MGiB3Q" keySequence="SHIFT+END" command="_2lb8G8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tvMZ5EeOSuo9mkUu2dw" keySequence="SHIFT+END" command="_uddjlsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsNdE8XREeOGcfz2MGiB3Q" keySequence="COMMAND+ARROW_LEFT" command="_2lsaw8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tvcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+ARROW_LEFT" command="_ueDZeMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsOrMsXREeOGcfz2MGiB3Q" keySequence="COMMAND+D" command="_2lb8HcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsOrNMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+INSERT" command="_2leYXcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsOrNcXREeOGcfz2MGiB3Q" keySequence="COMMAND+ARROW_RIGHT" command="_2lj39cXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tvsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+D" command="_uddjmMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3tv8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+INSERT" command="_udjqMcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3twMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+ARROW_RIGHT" command="_udxFlMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsPSQsXREeOGcfz2MGiB3Q" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_2l0Wl8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3twcZ5EeOSuo9mkUu2dw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_ueUfMsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsP5UsXREeOGcfz2MGiB3Q" keySequence="ALT+DEL" command="_2lZf68XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3twsZ5EeOSuo9mkUu2dw" keySequence="ALT+DEL" command="_udYrFcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsTjssXREeOGcfz2MGiB3Q" keySequence="ALT+SHIFT+ARROW_LEFT" command="_2ldxV8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tw8Z5EeOSuo9mkUu2dw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_udicGcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsTjtcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+ARROW_UP" command="_2lgNiMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsUKwMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+A" command="_2lsay8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3txMZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+ARROW_UP" command="_udnUlMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3txcZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+A" command="_ueEAhMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsUKwsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+ARROW_DOWN" command="_2lg0ocXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsUx0sXREeOGcfz2MGiB3Q" keySequence="ALT+BS" command="_2laG_sXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3txsZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+ARROW_DOWN" command="_udpJwcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3tx8Z5EeOSuo9mkUu2dw" keySequence="ALT+BS" command="_udZ5PMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsUx08XREeOGcfz2MGiB3Q" keySequence="SHIFT+HOME" command="_2lYRx8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tyMZ5EeOSuo9mkUu2dw" keySequence="SHIFT+HOME" command="_udVAscZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsUx1sXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+ARROW_RIGHT" command="_2lYRzcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tycZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+ARROW_RIGHT" command="_udVAt8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> </bindingTables> - <bindingTables xmi:id="_2lAeXMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.phpEditorScope" bindingContext="_2lC6h8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lAedsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_2lCTzsXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_KsAowcXREeOGcfz2MGiB3Q" keySequence="COMMAND+CTRL+\" command="_2l0WosXQEeOQKtwf9Y2DKA"> + <bindingTables xmi:id="_uc3tysZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.phpEditorScope" bindingContext="_uc7_OcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc3ty8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_uc7_L8Z5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc3tzMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+CTRL+\" command="_ueVGQ8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsBP0sXREeOGcfz2MGiB3Q" keySequence="ALT+CTRL+ARROW_UP" command="_2ldxQMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tzcZ5EeOSuo9mkUu2dw" keySequence="ALT+CTRL+ARROW_UP" command="_udhN-8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsCd8MXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+\" command="_2l0WosXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsFhQcXREeOGcfz2MGiB3Q" keySequence="COMMAND+O" command="_2lauAcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGIUcXREeOGcfz2MGiB3Q" keySequence="COMMAND+F3" command="_2lsawcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGIU8XREeOGcfz2MGiB3Q" keySequence="COMMAND+T" command="_2lp-ksXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGIVMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+P" command="_2lb8LMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGIVsXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+M" command="_2lwFK8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGvYMXREeOGcfz2MGiB3Q" keySequence="COMMAND+/" command="_2lY40sXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGvYsXREeOGcfz2MGiB3Q" keySequence="COMMAND+7" command="_2lY40sXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsKZxMXREeOGcfz2MGiB3Q" keySequence="COMMAND+I" command="_2lp-jMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsLn5cXREeOGcfz2MGiB3Q" keySequence="COMMAND+CTRL+/" command="_2lmUJMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc3tzsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+\" command="_ueVGQ8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3tz8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+O" command="_udbHVMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3t0MZ5EeOSuo9mkUu2dw" keySequence="COMMAND+F3" command="_ueDZdsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc3t0cZ5EeOSuo9mkUu2dw" keySequence="COMMAND+T" command="_ud_vFsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4UwMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+P" command="_udeKqMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4UwcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+M" command="_ueL8UcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4UwsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+/" command="_udW14MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4Uw8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+7" command="_udW14MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4UxMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+I" command="_ud_vEMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4UxcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+CTRL+/" command="_ud1-EsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsMO8sXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+U" command="_2lg0p8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc4UxsZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+U" command="_udpJx8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsM2AsXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+O" command="_2lYRv8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc4Ux8Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+O" command="_udUZp8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsM2A8XREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+C" command="_2lY40sXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsOrMMXREeOGcfz2MGiB3Q" keySequence="CTRL+SHIFT+ARROW_UP" command="_2ltB4MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc4UyMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+C" command="_udW14MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4UycZ5EeOSuo9mkUu2dw" keySequence="CTRL+SHIFT+ARROW_UP" command="_ueFOqcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsPSQcXREeOGcfz2MGiB3Q" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_2lyha8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc4UysZ5EeOSuo9mkUu2dw" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_ueQNyMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsP5UMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+F" command="_2lfmfsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsP5U8XREeOGcfz2MGiB3Q" keySequence="COMMAND+2 R" command="_2laG5cXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsP5VMXREeOGcfz2MGiB3Q" keySequence="COMMAND+2 L" command="_2lb8GMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsP5VcXREeOGcfz2MGiB3Q" keySequence="COMMAND+2 F" command="_2lg0n8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsTjs8XREeOGcfz2MGiB3Q" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_2lpXfMXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc4Uy8Z5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+F" command="_udmGeMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4UzMZ5EeOSuo9mkUu2dw" keySequence="COMMAND+2 R" command="_udZSIcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4UzcZ5EeOSuo9mkUu2dw" keySequence="COMMAND+2 L" command="_uddjk8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4UzsZ5EeOSuo9mkUu2dw" keySequence="COMMAND+2 F" command="_udoiusZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4Uz8Z5EeOSuo9mkUu2dw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_ud9S1sZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsUKw8XREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+B" command="_2lveI8XQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc4U0MZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+B" command="_ueKuOcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsUKxcXREeOGcfz2MGiB3Q" keySequence="ALT+CTRL+ARROW_DOWN" command="_2l0WnsXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc4U0cZ5EeOSuo9mkUu2dw" keySequence="ALT+CTRL+ARROW_DOWN" command="_ueUfOcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsUKxsXREeOGcfz2MGiB3Q" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_2lj39MXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc4U0sZ5EeOSuo9mkUu2dw" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_udxFk8Z5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> </bindingTables> - <bindingTables xmi:id="_2lAej8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.scriptEditorScope" bindingContext="_2lC6l8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lAeocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_2lCTzMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFUMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_2lC6gMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFYcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" bindingContext="_2lC6r8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFZcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" bindingContext="_2lCTz8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFb8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_2lCTysXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_2lBFccXQEeOQKtwf9Y2DKA" keySequence="SHIFT+F2" command="_2lp-h8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2lBFcsXQEeOQKtwf9Y2DKA" keySequence="F3" command="_2ldKOsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsDsFMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+R" command="_2lltIcXQEeOQKtwf9Y2DKA"> + <bindingTables xmi:id="_uc4U08Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.scriptEditorScope" bindingContext="_uc8mOsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc4U1MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_uc7_LcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc4U1cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_uc7_MsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc4U1sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" bindingContext="_uc9NRMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc4U18Z5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" bindingContext="_uc7_MMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc4U2MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_uc7_K8Z5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc4U2cZ5EeOSuo9mkUu2dw" keySequence="SHIFT+F2" command="_ud_IBMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4U2sZ5EeOSuo9mkUu2dw" keySequence="F3" command="_udgm6MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4U28Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+R" command="_ud1XAsZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsM2AcXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+O" command="_2lzvkcXQEeOQKtwf9Y2DKA"> + <bindings xmi:id="_uc4U3MZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+O" command="_ueT4IcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> - <bindings xmi:id="_KsPSRsXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+F" command="_2lfmfsXQEeOQKtwf9Y2DKA"/> + <bindings xmi:id="_uc4U3cZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+F" command="_udmGeMZ5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2lBFdcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_2lC6mMXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_KsFhQsXREeOGcfz2MGiB3Q" keySequence="COMMAND+O" command="_2lyhcsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsP5UcXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+F" command="_2lqln8XQEeOQKtwf9Y2DKA"/> + <bindingTables xmi:id="_uc4U3sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_uc8mO8Z5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc4U38Z5EeOSuo9mkUu2dw" keySequence="COMMAND+O" command="_ueQ008Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4U4MZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+F" command="_ueA9NcZ5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2lBFeMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.context.views" bindingContext="_2lC6oMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFhcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.cViewScope" bindingContext="_2lC6n8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFj8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.java.editorScope" bindingContext="_2lC6lsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFksXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.xml.editorScope" bindingContext="_2lC6kcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFlsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_2lCTzcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFrsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.debug.ui.debugging" bindingContext="_2lC6osXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFscXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.serverViewScope" bindingContext="_2lCTx8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFtsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.debugging" bindingContext="_2lC6p8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBFvMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.debugging" bindingContext="_2lC6ocXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_2lBsZMXQEeOQKtwf9Y2DKA" keySequence="F6" command="_2lY4ycXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2lBsZcXQEeOQKtwf9Y2DKA" keySequence="F7" command="_2lj388XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2lBsZsXQEeOQKtwf9Y2DKA" keySequence="F8" command="_2l1ks8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_2lBsZ8XQEeOQKtwf9Y2DKA" keySequence="F5" command="_2lwFIcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGvZcXREeOGcfz2MGiB3Q" keySequence="COMMAND+R" command="_2lbVFsXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGvZsXREeOGcfz2MGiB3Q" keySequence="COMMAND+F2" command="_2lcjK8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsLn48XREeOGcfz2MGiB3Q" keySequence="ALT+F5" command="_2luP9MXQEeOQKtwf9Y2DKA"> + <bindingTables xmi:id="_uc470MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.context.views" bindingContext="_uc8mQ8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc470cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.cViewScope" bindingContext="_uc8mQsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc470sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.java.editorScope" bindingContext="_uc8mOcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc4708Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.xml.editorScope" bindingContext="_uc8mNMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc471MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_uc7_LsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc471cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.debug.ui.debugging" bindingContext="_uc8mRcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc471sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.serverViewScope" bindingContext="_uc7_KMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc4718Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.debugging" bindingContext="_uc8mSsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc472MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.debugging" bindingContext="_uc8mRMZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc472cZ5EeOSuo9mkUu2dw" keySequence="F6" command="_udWO0MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc472sZ5EeOSuo9mkUu2dw" keySequence="F7" command="_udxFksZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4728Z5EeOSuo9mkUu2dw" keySequence="F8" command="_ueWUaMZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc473MZ5EeOSuo9mkUu2dw" keySequence="F5" command="_ueLVQsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc473cZ5EeOSuo9mkUu2dw" keySequence="COMMAND+R" command="_udc8gcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc473sZ5EeOSuo9mkUu2dw" keySequence="COMMAND+F2" command="_udexucZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc4738Z5EeOSuo9mkUu2dw" keySequence="ALT+F5" command="_ueGczMZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> </bindingTables> - <bindingTables xmi:id="_2lBsaMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" bindingContext="_2lC6o8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsa8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.core.runtime.xml" bindingContext="_2lC6hsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsbsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" bindingContext="_2lC6jsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsccXQEeOQKtwf9Y2DKA" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_2lC6t8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsfsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_2lCTyMXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_2lBsgMXQEeOQKtwf9Y2DKA" keySequence="ALT+CR" command="_2lwFKcXQEeOQKtwf9Y2DKA"/> + <bindingTables xmi:id="_uc474MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" bindingContext="_uc8mRsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc474cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.core.runtime.xml" bindingContext="_uc7_OMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc474sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" bindingContext="_uc8mMcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc4748Z5EeOSuo9mkUu2dw" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_uc9NTMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc475MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_uc7_KcZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc475cZ5EeOSuo9mkUu2dw" keySequence="ALT+CR" command="_ueLVSsZ5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2lBsgcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_2lCTxsXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_KsKZwMXREeOGcfz2MGiB3Q" keySequence="COMMAND+V" command="_2lZf3cXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsM2BsXREeOGcfz2MGiB3Q" keySequence="COMMAND+C" command="_2lniRsXQEeOQKtwf9Y2DKA"/> + <bindingTables xmi:id="_uc475sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_uc7_J8Z5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc4758Z5EeOSuo9mkUu2dw" keySequence="COMMAND+V" command="_udYEBcZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc476MZ5EeOSuo9mkUu2dw" keySequence="COMMAND+C" command="_ud5BY8Z5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2lBshMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" bindingContext="_2lCTy8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsiMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_2lC6rMXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_KsGIUsXREeOGcfz2MGiB3Q" keySequence="COMMAND+T" command="_2le_c8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsHWc8XREeOGcfz2MGiB3Q" keySequence="COMMAND+N" command="_2ldxSMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsHWdcXREeOGcfz2MGiB3Q" keySequence="COMMAND+W" command="_2lcjOcXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsLn4cXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+N" command="_2lm7MMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsLn5sXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+M" command="_2lY4zcXQEeOQKtwf9Y2DKA"/> + <bindingTables xmi:id="_uc476cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" bindingContext="_uc7_LMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc476sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_uc9NQcZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc4768Z5EeOSuo9mkUu2dw" keySequence="COMMAND+T" command="_udk4V8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc477MZ5EeOSuo9mkUu2dw" keySequence="COMMAND+N" command="_udh1BsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc5i4MZ5EeOSuo9mkUu2dw" keySequence="COMMAND+W" command="_udf_08Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc5i4cZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+N" command="_ud3MNsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc5i4sZ5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+M" command="_udWO1MZ5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2lBsjsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_2lC6msXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_KsGvYcXREeOGcfz2MGiB3Q" keySequence="COMMAND+/" command="_2lY40sXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsGvY8XREeOGcfz2MGiB3Q" keySequence="COMMAND+7" command="_2lY40sXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsM2BMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+C" command="_2lY40sXQEeOQKtwf9Y2DKA"/> + <bindingTables xmi:id="_uc5i48Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_uc8mPcZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc5i5MZ5EeOSuo9mkUu2dw" keySequence="COMMAND+/" command="_udW14MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc5i5cZ5EeOSuo9mkUu2dw" keySequence="COMMAND+7" command="_udW14MZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc5i5sZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+C" command="_udW14MZ5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2lBsksXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_2lC6pcXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_KsETIMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+." command="_2lYRu8XQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsFhRMXREeOGcfz2MGiB3Q" keySequence="COMMAND+G" command="_2lcjMMXQEeOQKtwf9Y2DKA"/> - <bindings xmi:id="_KsHWcMXREeOGcfz2MGiB3Q" keySequence="COMMAND+SHIFT+," command="_2lzvjsXQEeOQKtwf9Y2DKA"/> + <bindingTables xmi:id="_uc5i58Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_uc8mSMZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc5i6MZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+." command="_udUZo8Z5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc5i6cZ5EeOSuo9mkUu2dw" keySequence="COMMAND+G" command="_udfYwsZ5EeOSuo9mkUu2dw"/> + <bindings xmi:id="_uc5i6sZ5EeOSuo9mkUu2dw" keySequence="COMMAND+SHIFT+," command="_ueTRFMZ5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2lBslsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.console" bindingContext="_2lC6m8XQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_KsUx1MXREeOGcfz2MGiB3Q" keySequence="CTRL+D" command="_2lb8K8XQEeOQKtwf9Y2DKA"/> + <bindingTables xmi:id="_uc5i68Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.console" bindingContext="_uc8mPsZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc5i7MZ5EeOSuo9mkUu2dw" keySequence="CTRL+D" command="_udeKp8Z5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2lBsmMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.editor.scope" bindingContext="_2lCT0MXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsmsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_2lC6tMXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_KsUKxMXREeOGcfz2MGiB3Q" keySequence="ALT+COMMAND+B" command="_2lveI8XQEeOQKtwf9Y2DKA"> + <bindingTables xmi:id="_uc5i7cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.editor.scope" bindingContext="_uc7_McZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i7sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_uc9NScZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc5i78Z5EeOSuo9mkUu2dw" keySequence="ALT+COMMAND+B" command="_ueKuOcZ5EeOSuo9mkUu2dw"> <tags>platform:cocoa</tags> </bindings> </bindingTables> - <bindingTables xmi:id="_2lBsnMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_2lC6nsXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_KsM2B8XREeOGcfz2MGiB3Q" keySequence="COMMAND+C" command="_2lbVCMXQEeOQKtwf9Y2DKA"/> + <bindingTables xmi:id="_uc5i8MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_uc8mQcZ5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc5i8cZ5EeOSuo9mkUu2dw" keySequence="COMMAND+C" command="_udcVccZ5EeOSuo9mkUu2dw"/> </bindingTables> - <bindingTables xmi:id="_2lBsnsXQEeOQKtwf9Y2DKA" bindingContext="_2lC6uMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsn8XQEeOQKtwf9Y2DKA" bindingContext="_2lC6ucXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsoMXQEeOQKtwf9Y2DKA" bindingContext="_2lC6usXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsocXQEeOQKtwf9Y2DKA" bindingContext="_2lC6u8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsosXQEeOQKtwf9Y2DKA" bindingContext="_2lC6vMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBso8XQEeOQKtwf9Y2DKA" bindingContext="_2lC6vcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBspMXQEeOQKtwf9Y2DKA" bindingContext="_2lC6vsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBspcXQEeOQKtwf9Y2DKA" bindingContext="_2lC6v8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBspsXQEeOQKtwf9Y2DKA" bindingContext="_2lC6wMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsp8XQEeOQKtwf9Y2DKA" bindingContext="_2lC6wcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsqMXQEeOQKtwf9Y2DKA" bindingContext="_2lC6wsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsqcXQEeOQKtwf9Y2DKA" bindingContext="_2lC6w8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsqsXQEeOQKtwf9Y2DKA" bindingContext="_2lC6xMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsq8XQEeOQKtwf9Y2DKA" bindingContext="_2lC6xcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsrMXQEeOQKtwf9Y2DKA" bindingContext="_2lC6xsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsrcXQEeOQKtwf9Y2DKA" bindingContext="_2lC6x8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsrsXQEeOQKtwf9Y2DKA" bindingContext="_2lC6yMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsr8XQEeOQKtwf9Y2DKA" bindingContext="_2lC6ycXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBssMXQEeOQKtwf9Y2DKA" bindingContext="_2lC6ysXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsscXQEeOQKtwf9Y2DKA" bindingContext="_2lC6y8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsssXQEeOQKtwf9Y2DKA" bindingContext="_2lC6zMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBss8XQEeOQKtwf9Y2DKA" bindingContext="_2lC6zcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBstMXQEeOQKtwf9Y2DKA" bindingContext="_2lC6zsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBstcXQEeOQKtwf9Y2DKA" bindingContext="_2lC6z8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBstsXQEeOQKtwf9Y2DKA" bindingContext="_2lC60MXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBst8XQEeOQKtwf9Y2DKA" bindingContext="_2lC60cXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsuMXQEeOQKtwf9Y2DKA" bindingContext="_2lC60sXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsucXQEeOQKtwf9Y2DKA" bindingContext="_2lC608XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsusXQEeOQKtwf9Y2DKA" bindingContext="_2lC61MXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsu8XQEeOQKtwf9Y2DKA" bindingContext="_2lC61cXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsvMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhkMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsvcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhkcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsvsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhksXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsv8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhk8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBswMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhlMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBswcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhlcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBswsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhlsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsw8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhl8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsxMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhmMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lBsxcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhmcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTcMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhmsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTccXQEeOQKtwf9Y2DKA" bindingContext="_2lDhm8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTcsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhnMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTc8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhncXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTdMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhnsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTdcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhn8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTdsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhoMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTd8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhocXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTeMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhosXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTecXQEeOQKtwf9Y2DKA" bindingContext="_2lDho8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTesXQEeOQKtwf9Y2DKA" bindingContext="_2lDhpMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTe8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhpcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTfMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhpsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTfcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhp8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTfsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhqMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTf8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhqcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTgMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhqsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTgcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhq8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTgsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhrMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTg8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhrcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCThMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhrsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCThcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhr8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCThsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhsMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTh8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhscXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTiMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhssXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTicXQEeOQKtwf9Y2DKA" bindingContext="_2lDhs8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTisXQEeOQKtwf9Y2DKA" bindingContext="_2lDhtMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTi8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhtcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTjMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhtsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTjcXQEeOQKtwf9Y2DKA" bindingContext="_2lDht8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTjsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhuMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTj8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhucXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTkMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhusXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTkcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhu8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTksXQEeOQKtwf9Y2DKA" bindingContext="_2lDhvMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTk8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhvcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTlMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhvsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTlcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhv8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTlsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhwMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTl8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhwcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTmMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhwsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTmcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhw8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTmsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhxMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTm8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhxcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTnMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhxsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTncXQEeOQKtwf9Y2DKA" bindingContext="_2lDhx8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTnsXQEeOQKtwf9Y2DKA" bindingContext="_2lDhyMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTn8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhycXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCToMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhysXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTocXQEeOQKtwf9Y2DKA" bindingContext="_2lDhy8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTosXQEeOQKtwf9Y2DKA" bindingContext="_2lDhzMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTo8XQEeOQKtwf9Y2DKA" bindingContext="_2lDhzcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTpMXQEeOQKtwf9Y2DKA" bindingContext="_2lDhzsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTpcXQEeOQKtwf9Y2DKA" bindingContext="_2lDhz8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTpsXQEeOQKtwf9Y2DKA" bindingContext="_2lDh0MXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTp8XQEeOQKtwf9Y2DKA" bindingContext="_2lDh0cXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTqMXQEeOQKtwf9Y2DKA" bindingContext="_2lDh0sXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTqcXQEeOQKtwf9Y2DKA" bindingContext="_2lDh08XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTqsXQEeOQKtwf9Y2DKA" bindingContext="_2lDh1MXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTq8XQEeOQKtwf9Y2DKA" bindingContext="_2lDh1cXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTrMXQEeOQKtwf9Y2DKA" bindingContext="_2lDh1sXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTrcXQEeOQKtwf9Y2DKA" bindingContext="_2lDh18XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTrsXQEeOQKtwf9Y2DKA" bindingContext="_2lDh2MXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTr8XQEeOQKtwf9Y2DKA" bindingContext="_2lDh2cXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTsMXQEeOQKtwf9Y2DKA" bindingContext="_2lDh2sXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTscXQEeOQKtwf9Y2DKA" bindingContext="_2lDh28XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTssXQEeOQKtwf9Y2DKA" bindingContext="_2lDh3MXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTs8XQEeOQKtwf9Y2DKA" bindingContext="_2lDh3cXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTtMXQEeOQKtwf9Y2DKA" bindingContext="_2lDh3sXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTtcXQEeOQKtwf9Y2DKA" bindingContext="_2lDh38XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTtsXQEeOQKtwf9Y2DKA" bindingContext="_2lDh4MXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTt8XQEeOQKtwf9Y2DKA" bindingContext="_2lEIoMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTuMXQEeOQKtwf9Y2DKA" bindingContext="_2lEIocXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTucXQEeOQKtwf9Y2DKA" bindingContext="_2lEIosXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTusXQEeOQKtwf9Y2DKA" bindingContext="_2lEIo8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTu8XQEeOQKtwf9Y2DKA" bindingContext="_2lEIpMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTvMXQEeOQKtwf9Y2DKA" bindingContext="_2lEIpcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTvcXQEeOQKtwf9Y2DKA" bindingContext="_2lEIpsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTvsXQEeOQKtwf9Y2DKA" bindingContext="_2lEIp8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTv8XQEeOQKtwf9Y2DKA" bindingContext="_2lEIqMXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTwMXQEeOQKtwf9Y2DKA" bindingContext="_2lEIqcXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTwcXQEeOQKtwf9Y2DKA" bindingContext="_2lEIqsXQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_2lCTwsXQEeOQKtwf9Y2DKA" bindingContext="_2lEIq8XQEeOQKtwf9Y2DKA"/> - <bindingTables xmi:id="_KscGk8XREeOGcfz2MGiB3Q" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" bindingContext="_2lC6rsXQEeOQKtwf9Y2DKA"> - <bindings xmi:id="_0DrwkMZKEeOavcmG4wPqlA" keySequence="M1+W" command="_KscGkcXREeOGcfz2MGiB3Q"/> + <bindingTables xmi:id="_uc5i8sZ5EeOSuo9mkUu2dw" bindingContext="_uc9NTcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i88Z5EeOSuo9mkUu2dw" bindingContext="_uc9NTsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i9MZ5EeOSuo9mkUu2dw" bindingContext="_uc9NT8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i9cZ5EeOSuo9mkUu2dw" bindingContext="_uc9NUMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i9sZ5EeOSuo9mkUu2dw" bindingContext="_uc9NUcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i98Z5EeOSuo9mkUu2dw" bindingContext="_uc9NUsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i-MZ5EeOSuo9mkUu2dw" bindingContext="_uc9NU8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i-cZ5EeOSuo9mkUu2dw" bindingContext="_uc9NVMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i-sZ5EeOSuo9mkUu2dw" bindingContext="_uc9NVcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i-8Z5EeOSuo9mkUu2dw" bindingContext="_uc9NVsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i_MZ5EeOSuo9mkUu2dw" bindingContext="_uc9NV8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i_cZ5EeOSuo9mkUu2dw" bindingContext="_uc9NWMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i_sZ5EeOSuo9mkUu2dw" bindingContext="_uc9NWcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5i_8Z5EeOSuo9mkUu2dw" bindingContext="_uc9NWsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5jAMZ5EeOSuo9mkUu2dw" bindingContext="_uc9NW8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5jAcZ5EeOSuo9mkUu2dw" bindingContext="_uc9NXMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5jAsZ5EeOSuo9mkUu2dw" bindingContext="_uc9NXcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc5jA8Z5EeOSuo9mkUu2dw" bindingContext="_uc9NXsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J8MZ5EeOSuo9mkUu2dw" bindingContext="_uc9NX8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J8cZ5EeOSuo9mkUu2dw" bindingContext="_uc90UMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J8sZ5EeOSuo9mkUu2dw" bindingContext="_uc90UcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J88Z5EeOSuo9mkUu2dw" bindingContext="_uc90UsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J9MZ5EeOSuo9mkUu2dw" bindingContext="_uc90U8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J9cZ5EeOSuo9mkUu2dw" bindingContext="_uc90VMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J9sZ5EeOSuo9mkUu2dw" bindingContext="_uc90VcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J98Z5EeOSuo9mkUu2dw" bindingContext="_uc90VsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J-MZ5EeOSuo9mkUu2dw" bindingContext="_uc90V8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J-cZ5EeOSuo9mkUu2dw" bindingContext="_uc90WMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J-sZ5EeOSuo9mkUu2dw" bindingContext="_uc90WcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J-8Z5EeOSuo9mkUu2dw" bindingContext="_uc90WsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J_MZ5EeOSuo9mkUu2dw" bindingContext="_uc90W8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J_cZ5EeOSuo9mkUu2dw" bindingContext="_uc90XMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J_sZ5EeOSuo9mkUu2dw" bindingContext="_uc90XcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6J_8Z5EeOSuo9mkUu2dw" bindingContext="_uc90XsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KAMZ5EeOSuo9mkUu2dw" bindingContext="_uc90X8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KAcZ5EeOSuo9mkUu2dw" bindingContext="_uc90YMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KAsZ5EeOSuo9mkUu2dw" bindingContext="_uc90YcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KA8Z5EeOSuo9mkUu2dw" bindingContext="_uc90YsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KBMZ5EeOSuo9mkUu2dw" bindingContext="_uc90Y8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KBcZ5EeOSuo9mkUu2dw" bindingContext="_uc90ZMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KBsZ5EeOSuo9mkUu2dw" bindingContext="_uc90ZcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KB8Z5EeOSuo9mkUu2dw" bindingContext="_uc90ZsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KCMZ5EeOSuo9mkUu2dw" bindingContext="_uc90Z8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KCcZ5EeOSuo9mkUu2dw" bindingContext="_uc90aMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KCsZ5EeOSuo9mkUu2dw" bindingContext="_uc90acZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KC8Z5EeOSuo9mkUu2dw" bindingContext="_uc90asZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KDMZ5EeOSuo9mkUu2dw" bindingContext="_uc90a8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KDcZ5EeOSuo9mkUu2dw" bindingContext="_uc90bMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KDsZ5EeOSuo9mkUu2dw" bindingContext="_uc90bcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KD8Z5EeOSuo9mkUu2dw" bindingContext="_uc-bYMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KEMZ5EeOSuo9mkUu2dw" bindingContext="_uc-bYcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KEcZ5EeOSuo9mkUu2dw" bindingContext="_uc-bYsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KEsZ5EeOSuo9mkUu2dw" bindingContext="_uc-bY8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KE8Z5EeOSuo9mkUu2dw" bindingContext="_uc-bZMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6KFMZ5EeOSuo9mkUu2dw" bindingContext="_uc-bZcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xAMZ5EeOSuo9mkUu2dw" bindingContext="_uc-bZsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xAcZ5EeOSuo9mkUu2dw" bindingContext="_uc-bZ8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xAsZ5EeOSuo9mkUu2dw" bindingContext="_uc-baMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xA8Z5EeOSuo9mkUu2dw" bindingContext="_uc-bacZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xBMZ5EeOSuo9mkUu2dw" bindingContext="_uc-basZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xBcZ5EeOSuo9mkUu2dw" bindingContext="_uc-ba8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xBsZ5EeOSuo9mkUu2dw" bindingContext="_uc-bbMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xB8Z5EeOSuo9mkUu2dw" bindingContext="_uc-bbcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xCMZ5EeOSuo9mkUu2dw" bindingContext="_uc-bbsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xCcZ5EeOSuo9mkUu2dw" bindingContext="_uc-bb8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xCsZ5EeOSuo9mkUu2dw" bindingContext="_uc-bcMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xC8Z5EeOSuo9mkUu2dw" bindingContext="_uc-bccZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xDMZ5EeOSuo9mkUu2dw" bindingContext="_uc-bcsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xDcZ5EeOSuo9mkUu2dw" bindingContext="_uc-bc8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xDsZ5EeOSuo9mkUu2dw" bindingContext="_uc-bdMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xD8Z5EeOSuo9mkUu2dw" bindingContext="_uc-bdcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xEMZ5EeOSuo9mkUu2dw" bindingContext="_uc-bdsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xEcZ5EeOSuo9mkUu2dw" bindingContext="_uc-bd8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xEsZ5EeOSuo9mkUu2dw" bindingContext="_uc-beMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xE8Z5EeOSuo9mkUu2dw" bindingContext="_uc-becZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xFMZ5EeOSuo9mkUu2dw" bindingContext="_uc-besZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xFcZ5EeOSuo9mkUu2dw" bindingContext="_uc_CcMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xFsZ5EeOSuo9mkUu2dw" bindingContext="_uc_CccZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xF8Z5EeOSuo9mkUu2dw" bindingContext="_uc_CcsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xGMZ5EeOSuo9mkUu2dw" bindingContext="_uc_Cc8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xGcZ5EeOSuo9mkUu2dw" bindingContext="_uc_CdMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xGsZ5EeOSuo9mkUu2dw" bindingContext="_uc_CdcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xG8Z5EeOSuo9mkUu2dw" bindingContext="_uc_CdsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xHMZ5EeOSuo9mkUu2dw" bindingContext="_uc_Cd8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xHcZ5EeOSuo9mkUu2dw" bindingContext="_uc_CeMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xHsZ5EeOSuo9mkUu2dw" bindingContext="_uc_CecZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xH8Z5EeOSuo9mkUu2dw" bindingContext="_uc_CesZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xIMZ5EeOSuo9mkUu2dw" bindingContext="_uc_Ce8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc6xIcZ5EeOSuo9mkUu2dw" bindingContext="_uc_CfMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YEMZ5EeOSuo9mkUu2dw" bindingContext="_uc_CfcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YEcZ5EeOSuo9mkUu2dw" bindingContext="_uc_CfsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YEsZ5EeOSuo9mkUu2dw" bindingContext="_uc_Cf8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YE8Z5EeOSuo9mkUu2dw" bindingContext="_uc_CgMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YFMZ5EeOSuo9mkUu2dw" bindingContext="_uc_CgcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YFcZ5EeOSuo9mkUu2dw" bindingContext="_uc_CgsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YFsZ5EeOSuo9mkUu2dw" bindingContext="_uc_Cg8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YF8Z5EeOSuo9mkUu2dw" bindingContext="_uc_ChMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YGMZ5EeOSuo9mkUu2dw" bindingContext="_uc_ChcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YGcZ5EeOSuo9mkUu2dw" bindingContext="_uc_ChsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YGsZ5EeOSuo9mkUu2dw" bindingContext="_uc_Ch8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YG8Z5EeOSuo9mkUu2dw" bindingContext="_uc_CiMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YHMZ5EeOSuo9mkUu2dw" bindingContext="_uc_pgMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YHcZ5EeOSuo9mkUu2dw" bindingContext="_uc_pgcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YHsZ5EeOSuo9mkUu2dw" bindingContext="_uc_pgsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YH8Z5EeOSuo9mkUu2dw" bindingContext="_uc_pg8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YIMZ5EeOSuo9mkUu2dw" bindingContext="_uc_phMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YIcZ5EeOSuo9mkUu2dw" bindingContext="_uc_phcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YIsZ5EeOSuo9mkUu2dw" bindingContext="_uc_phsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YI8Z5EeOSuo9mkUu2dw" bindingContext="_uc_ph8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YJMZ5EeOSuo9mkUu2dw" bindingContext="_uc_piMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YJcZ5EeOSuo9mkUu2dw" bindingContext="_uc_picZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YJsZ5EeOSuo9mkUu2dw" bindingContext="_uc_pisZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YJ8Z5EeOSuo9mkUu2dw" bindingContext="_uc_pi8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YKMZ5EeOSuo9mkUu2dw" bindingContext="_uc_pjMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YKcZ5EeOSuo9mkUu2dw" bindingContext="_uc_pjcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YKsZ5EeOSuo9mkUu2dw" bindingContext="_uc_pjsZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YK8Z5EeOSuo9mkUu2dw" bindingContext="_uc_pj8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YLMZ5EeOSuo9mkUu2dw" bindingContext="_uc_pkMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YLcZ5EeOSuo9mkUu2dw" bindingContext="_uc_pkcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YLsZ5EeOSuo9mkUu2dw" bindingContext="_uc_pksZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7YL8Z5EeOSuo9mkUu2dw" bindingContext="_uc_pk8Z5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7_IMZ5EeOSuo9mkUu2dw" bindingContext="_uc_plMZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7_IcZ5EeOSuo9mkUu2dw" bindingContext="_uc_plcZ5EeOSuo9mkUu2dw"/> + <bindingTables xmi:id="_uc7_IsZ5EeOSuo9mkUu2dw" contributorURI="platform:/fragment/org.eclipse.e4.ui.workbench.renderers.swt.cocoa" bindingContext="_uc9NQ8Z5EeOSuo9mkUu2dw"> + <bindings xmi:id="_uc7_I8Z5EeOSuo9mkUu2dw" keySequence="M1+W" command="_ueXih8Z5EeOSuo9mkUu2dw"/> </bindingTables> - <rootContext xmi:id="_2lCTw8XQEeOQKtwf9Y2DKA" 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="_2lCTxMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open"> - <children xmi:id="_2lCTxcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/> - <children xmi:id="_2lCTxsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/> - <children xmi:id="_2lCTx8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/> - <children xmi:id="_2lCTyMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/> - <children xmi:id="_2lCTycXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context"> - <children xmi:id="_2lCTysXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/> - <children xmi:id="_2lCTy8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" name="Makefile Editor" description="Editor for makefiles"/> - <children xmi:id="_2lCTzMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context"> - <children xmi:id="_2lCTzcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/> + <rootContext xmi:id="_uc7_JMZ5EeOSuo9mkUu2dw" 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="_uc7_JcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open"> + <children xmi:id="_uc7_JsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/> + <children xmi:id="_uc7_J8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/> + <children xmi:id="_uc7_KMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/> + <children xmi:id="_uc7_KcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/> + <children xmi:id="_uc7_KsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context"> + <children xmi:id="_uc7_K8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/> + <children xmi:id="_uc7_LMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" name="Makefile Editor" description="Editor for makefiles"/> + <children xmi:id="_uc7_LcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context"> + <children xmi:id="_uc7_LsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/> </children> - <children xmi:id="_2lCTzsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/> - <children xmi:id="_2lCTz8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" name="Editing SQL" description="Editing SQL Context"/> - <children xmi:id="_2lCT0MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.editor.scope" name="Autoconf Editor" description="Editor for Autoconf Configuration Source Files"/> - <children xmi:id="_2lC6gMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"> - <children xmi:id="_2lC6gcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/> - <children xmi:id="_2lC6gsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/> - <children xmi:id="_2lC6g8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jst.jsp.core.jspsource" name="JSP Source" description="JSP Source"/> - <children xmi:id="_2lC6hMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/> - <children xmi:id="_2lC6hcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/> - <children xmi:id="_2lC6hsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/> - <children xmi:id="_2lC6h8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.phpEditorScope" name="Editing PHP source" description="Editing PHP source context"/> - <children xmi:id="_2lC6iMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/> - <children xmi:id="_2lC6icXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/> - <children xmi:id="_2lC6isXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/> - <children xmi:id="_2lC6i8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/> - <children xmi:id="_2lC6jMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/> - <children xmi:id="_2lC6jcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/> - <children xmi:id="_2lC6jsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" name="Editing JSP Source" description="Editing JSP Source"/> - <children xmi:id="_2lC6j8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.core.phpsource" name="Editing PHP source" description="Editing PHP source context"/> - <children xmi:id="_2lC6kMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/> - <children xmi:id="_2lC6kcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.xml.editorScope" name="WindowBuilder XML scope"/> - <children xmi:id="_2lC6ksXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/> - <children xmi:id="_2lC6k8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/> + <children xmi:id="_uc7_L8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/> + <children xmi:id="_uc7_MMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" name="Editing SQL" description="Editing SQL Context"/> + <children xmi:id="_uc7_McZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.editor.scope" name="Autoconf Editor" description="Editor for Autoconf Configuration Source Files"/> + <children xmi:id="_uc7_MsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"> + <children xmi:id="_uc7_M8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/> + <children xmi:id="_uc7_NMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/> + <children xmi:id="_uc7_NcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jst.jsp.core.jspsource" name="JSP Source" description="JSP Source"/> + <children xmi:id="_uc7_NsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/> + <children xmi:id="_uc7_N8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/> + <children xmi:id="_uc7_OMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/> + <children xmi:id="_uc7_OcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.phpEditorScope" name="Editing PHP source" description="Editing PHP source context"/> + <children xmi:id="_uc7_OsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/> + <children xmi:id="_uc7_O8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/> + <children xmi:id="_uc7_PMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/> + <children xmi:id="_uc7_PcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/> + <children xmi:id="_uc7_PsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/> + <children xmi:id="_uc8mMMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/> + <children xmi:id="_uc8mMcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" name="Editing JSP Source" description="Editing JSP Source"/> + <children xmi:id="_uc8mMsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.core.phpsource" name="Editing PHP source" description="Editing PHP source context"/> + <children xmi:id="_uc8mM8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/> + <children xmi:id="_uc8mNMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.xml.editorScope" name="WindowBuilder XML scope"/> + <children xmi:id="_uc8mNcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/> + <children xmi:id="_uc8mNsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/> </children> - <children xmi:id="_2lC6lMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.cEditorScope" name="C/C++ Editor" description="Editor for C/C++ Source Files"> - <children xmi:id="_2lC6lcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rdt.editor.RemoteCEditorScope" name="Remote C/C++ Editor"/> + <children xmi:id="_uc8mN8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.cEditorScope" name="C/C++ Editor" description="Editor for C/C++ Source Files"> + <children xmi:id="_uc8mOMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rdt.editor.RemoteCEditorScope" name="Remote C/C++ Editor"/> </children> - <children xmi:id="_2lC6lsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.java.editorScope" name="WindowBuilder Java scope"/> - <children xmi:id="_2lC6l8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.scriptEditorScope" name="Editing Script Source" description="Editing Script Source Context"/> - <children xmi:id="_2lC6mMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/> - <children xmi:id="_2lC6mcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/> - <children xmi:id="_2lC6msXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/> + <children xmi:id="_uc8mOcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.java.editorScope" name="WindowBuilder Java scope"/> + <children xmi:id="_uc8mOsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.scriptEditorScope" name="Editing Script Source" description="Editing Script Source Context"/> + <children xmi:id="_uc8mO8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/> + <children xmi:id="_uc8mPMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/> + <children xmi:id="_uc8mPcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/> </children> - <children xmi:id="_2lC6m8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/> - <children xmi:id="_2lC6nMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.schemaobjecteditor.schemaediting" name="Schema Object Editor" description="Schema Object Editor"/> - <children xmi:id="_2lC6ncXQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/> - <children xmi:id="_2lC6nsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/> - <children xmi:id="_2lC6n8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.cViewScope" name="In C/C++ Views" description="In C/C++ Views"/> - <children xmi:id="_2lC6oMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.context.views" name="DLTK View" description="DLTK Views Context"/> - <children xmi:id="_2lC6ocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs"> - <children xmi:id="_2lC6osXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.debug.ui.debugging" name="Debugging Script" description="Context available during script debugging"/> - <children xmi:id="_2lC6o8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" name="In Disassembly" description="When debugging in assembly mode"/> - <children xmi:id="_2lC6pMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.debug.ui.debugging" name="Debugging PHP" description="Debugging PHP"/> - <children xmi:id="_2lC6pcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/> - <children xmi:id="_2lC6psXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.debug.ui.xdebug" name="Debugging PHP" description="Debugging PHP"/> - <children xmi:id="_2lC6p8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.debugging" name="Debugging C/C++" description="Debugging C/C++ Programs"/> - <children xmi:id="_2lC6qMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xsl.debug.ui.context" name="XSLT Debugging" description="Context for debugging XSLT"/> - <children xmi:id="_2lC6qcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.debug.ui.debugging" name="Debugging Parallel" description="Debugging Parallel Programs"/> - <children xmi:id="_2lC6qsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/> + <children xmi:id="_uc8mPsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/> + <children xmi:id="_uc8mP8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.schemaobjecteditor.schemaediting" name="Schema Object Editor" description="Schema Object Editor"/> + <children xmi:id="_uc8mQMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/> + <children xmi:id="_uc8mQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/> + <children xmi:id="_uc8mQsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.cViewScope" name="In C/C++ Views" description="In C/C++ Views"/> + <children xmi:id="_uc8mQ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.context.views" name="DLTK View" description="DLTK Views Context"/> + <children xmi:id="_uc8mRMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs"> + <children xmi:id="_uc8mRcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.debug.ui.debugging" name="Debugging Script" description="Context available during script debugging"/> + <children xmi:id="_uc8mRsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" name="In Disassembly" description="When debugging in assembly mode"/> + <children xmi:id="_uc8mR8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.php.debug.ui.debugging" name="Debugging PHP" description="Debugging PHP"/> + <children xmi:id="_uc8mSMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/> + <children xmi:id="_uc8mScZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.debug.ui.xdebug" name="Debugging PHP" description="Debugging PHP"/> + <children xmi:id="_uc8mSsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.debugging" name="Debugging C/C++" description="Debugging C/C++ Programs"/> + <children xmi:id="_uc8mS8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xsl.debug.ui.context" name="XSLT Debugging" description="Context for debugging XSLT"/> + <children xmi:id="_uc8mTMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.debug.ui.debugging" name="Debugging Parallel" description="Debugging Parallel Programs"/> + <children xmi:id="_uc8mTcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/> </children> - <children xmi:id="_2lC6q8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.internal.ui.editors.parts.graphicaleditorwithflyoutpalette.context" name="reportdesignereditpart.context"/> - <children xmi:id="_2lC6rMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/> - <children xmi:id="_2lC6rcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/> + <children xmi:id="_uc9NQMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.internal.ui.editors.parts.graphicaleditorwithflyoutpalette.context" name="reportdesignereditpart.context"/> + <children xmi:id="_uc9NQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/> + <children xmi:id="_uc9NQsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/> </children> - <children xmi:id="_2lC6rsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/> - <children xmi:id="_2lC6r8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" name="In Macro Expansion Hover" description="In Macro Expansion Hover"/> + <children xmi:id="_uc9NQ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/> + <children xmi:id="_uc9NRMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" name="In Macro Expansion Hover" description="In Macro Expansion Hover"/> </rootContext> - <rootContext xmi:id="_2lC6sMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/> - <rootContext xmi:id="_2lC6scXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/> - <rootContext xmi:id="_2lC6ssXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.wsdl.ui.editor.designView" name="WSDL Editor Design View" description="WSDL Editor Design View"/> - <rootContext xmi:id="_2lC6s8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/> - <rootContext xmi:id="_2lC6tMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/> - <rootContext xmi:id="_2lC6tcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.wsdl.ui.editor.sourceView" name="WSDL Editor Source View" description="WSDL Editor Source View"/> - <rootContext xmi:id="_2lC6tsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/> - <rootContext xmi:id="_2lC6t8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.tm.terminal.TerminalContext" name="Terminal widget context" description="Override ALT+x menu access keys"/> - <rootContext xmi:id="_2lC6uMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.ant.ui.actions.ManageBreakpointRulerAction"/> - <rootContext xmi:id="_2lC6ucXQEeOQKtwf9Y2DKA" 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="_2lC6usXQEeOQKtwf9Y2DKA" 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="_2lC6u8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction" name="Auto::org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction"/> - <rootContext xmi:id="_2lC6vMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.texteditor.BookmarkRulerAction" name="Auto::org.eclipse.ui.texteditor.BookmarkRulerAction"/> - <rootContext xmi:id="_2lC6vcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction" name="Auto::org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction"/> - <rootContext xmi:id="_2lC6vsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction"/> - <rootContext xmi:id="_2lC6v8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" name="Auto::org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor"/> - <rootContext xmi:id="_2lC6wMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" name="Auto::org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor"/> - <rootContext xmi:id="_2lC6wcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.mapping.action.RemoveMappingActionID" name="Auto::org.eclipse.emf.mapping.action.RemoveMappingActionID"/> - <rootContext xmi:id="_2lC6wsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.mapping.action.TypeMatchMappingActionID" name="Auto::org.eclipse.emf.mapping.action.TypeMatchMappingActionID"/> - <rootContext xmi:id="_2lC6w8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.mapping.action.NameMatchMappingActionID" name="Auto::org.eclipse.emf.mapping.action.NameMatchMappingActionID"/> - <rootContext xmi:id="_2lC6xMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" name="Auto::org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID"/> - <rootContext xmi:id="_2lC6xcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.mapping.action.CreateMappingActionID" name="Auto::org.eclipse.emf.mapping.action.CreateMappingActionID"/> - <rootContext xmi:id="_2lC6xsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" name="Auto::org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID"/> - <rootContext xmi:id="_2lC6x8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" name="Auto::org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID"/> - <rootContext xmi:id="_2lC6yMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.SnippetExecute" name="Auto::org.eclipse.jdt.debug.ui.SnippetExecute"/> - <rootContext xmi:id="_2lC6ycXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.SnippetDisplay" name="Auto::org.eclipse.jdt.debug.ui.SnippetDisplay"/> - <rootContext xmi:id="_2lC6ysXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.SnippetInspect" name="Auto::org.eclipse.jdt.debug.ui.SnippetInspect"/> - <rootContext xmi:id="_2lC6y8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction"/> - <rootContext xmi:id="_2lC6zMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction"/> - <rootContext xmi:id="_2lC6zcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/> - <rootContext xmi:id="_2lC6zsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction"/> - <rootContext xmi:id="_2lC6z8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.texteditor.SelectRulerAction" name="Auto::org.eclipse.ui.texteditor.SelectRulerAction"/> - <rootContext xmi:id="_2lC60MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.jdt.downloadSourcesAction" name="Auto::org.eclipse.m2e.jdt.downloadSourcesAction"/> - <rootContext xmi:id="_2lC60cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.internal.ui.editor.PhpSelectRulerAction" name="Auto::org.eclipse.php.internal.ui.editor.PhpSelectRulerAction"/> - <rootContext xmi:id="_2lC60sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rdt.ui.editors.RemoteCEditor.RulerToggleBreakpointAction" name="Auto::org.eclipse.ptp.rdt.ui.editors.RemoteCEditor.RulerToggleBreakpointAction"/> - <rootContext xmi:id="_2lC608XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.editor.actions.SwitchAction" name="Auto::org.eclipse.wb.core.editor.actions.SwitchAction"/> - <rootContext xmi:id="_2lC61MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" name="Auto::org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction"/> - <rootContext xmi:id="_2lC61cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" name="Auto::org.eclipse.wb.core.xml.editor.actions.SwitchAction"/> - <rootContext xmi:id="_2lDhkMXQEeOQKtwf9Y2DKA" elementId="StructureSelectEnclosing" name="Auto::StructureSelectEnclosing"/> - <rootContext xmi:id="_2lDhkcXQEeOQKtwf9Y2DKA" elementId="StructureSelectNext" name="Auto::StructureSelectNext"/> - <rootContext xmi:id="_2lDhksXQEeOQKtwf9Y2DKA" elementId="StructureSelectPrevious" name="Auto::StructureSelectPrevious"/> - <rootContext xmi:id="_2lDhk8XQEeOQKtwf9Y2DKA" elementId="StructureSelectHistory" name="Auto::StructureSelectHistory"/> - <rootContext xmi:id="_2lDhlMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" name="Auto::org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint"/> - <rootContext xmi:id="_2lDhlcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction"/> - <rootContext xmi:id="_2lDhlsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction"/> - <rootContext xmi:id="_2lDhl8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/> - <rootContext xmi:id="_2lDhmMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction"/> - <rootContext xmi:id="_2lDhmcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" name="Auto::org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate"/> - <rootContext xmi:id="_2lDhmsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/> - <rootContext xmi:id="_2lDhm8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/> - <rootContext xmi:id="_2lDhnMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/> - <rootContext xmi:id="_2lDhncXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/> - <rootContext xmi:id="_2lDhnsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/> - <rootContext xmi:id="_2lDhn8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/> - <rootContext xmi:id="_2lDhoMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/> - <rootContext xmi:id="_2lDhocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/> - <rootContext xmi:id="_2lDhosXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/> - <rootContext xmi:id="_2lDho8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/> - <rootContext xmi:id="_2lDhpMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/> - <rootContext xmi:id="_2lDhpcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/> - <rootContext xmi:id="_2lDhpsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/> - <rootContext xmi:id="_2lDhp8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/> - <rootContext xmi:id="_2lDhqMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/> - <rootContext xmi:id="_2lDhqcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/> - <rootContext xmi:id="_2lDhqsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.CVSActionSet" name="Auto::org.eclipse.team.cvs.ui.CVSActionSet"/> - <rootContext xmi:id="_2lDhq8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/> - <rootContext xmi:id="_2lDhrMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/> - <rootContext xmi:id="_2lDhrcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/> - <rootContext xmi:id="_2lDhrsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/> - <rootContext xmi:id="_2lDhr8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/> - <rootContext xmi:id="_2lDhsMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/> - <rootContext xmi:id="_2lDhscXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/> - <rootContext xmi:id="_2lDhssXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/> - <rootContext xmi:id="_2lDhs8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/> - <rootContext xmi:id="_2lDhtMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/> - <rootContext xmi:id="_2lDhtcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/> - <rootContext xmi:id="_2lDhtsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.debug.ui.DeubgScript" name="Auto::org.eclipse.birt.report.debug.ui.DeubgScript"/> - <rootContext xmi:id="_2lDht8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.publishActionSet" name="Auto::org.eclipse.birt.report.designer.ui.publishActionSet"/> - <rootContext xmi:id="_2lDhuMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.previewActionSet" name="Auto::org.eclipse.birt.report.designer.ui.previewActionSet"/> - <rootContext xmi:id="_2lDhucXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.viewDocumentActionSet" name="Auto::org.eclipse.birt.report.designer.ui.viewDocumentActionSet"/> - <rootContext xmi:id="_2lDhusXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.debugActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugActionSet"/> - <rootContext xmi:id="_2lDhu8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.reverseDebuggingActionSet" name="Auto::org.eclipse.cdt.debug.ui.reverseDebuggingActionSet"/> - <rootContext xmi:id="_2lDhvMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.tracepointActionSet" name="Auto::org.eclipse.cdt.debug.ui.tracepointActionSet"/> - <rootContext xmi:id="_2lDhvcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.debugViewLayoutActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugViewLayoutActionSet"/> - <rootContext xmi:id="_2lDhvsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.dsf.debug.ui.updateModes" name="Auto::org.eclipse.cdt.dsf.debug.ui.updateModes"/> - <rootContext xmi:id="_2lDhv8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.updateActionSet" name="Auto::org.eclipse.cdt.make.ui.updateActionSet"/> - <rootContext xmi:id="_2lDhwMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.makeTargetActionSet" name="Auto::org.eclipse.cdt.make.ui.makeTargetActionSet"/> - <rootContext xmi:id="_2lDhwcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.CodingActionSet" name="Auto::org.eclipse.cdt.ui.CodingActionSet"/> - <rootContext xmi:id="_2lDhwsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.SearchActionSet" name="Auto::org.eclipse.cdt.ui.SearchActionSet"/> - <rootContext xmi:id="_2lDhw8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.NavigationActionSet" name="Auto::org.eclipse.cdt.ui.NavigationActionSet"/> - <rootContext xmi:id="_2lDhxMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.OpenActionSet" name="Auto::org.eclipse.cdt.ui.OpenActionSet"/> - <rootContext xmi:id="_2lDhxcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.buildConfigActionSet" name="Auto::org.eclipse.cdt.ui.buildConfigActionSet"/> - <rootContext xmi:id="_2lDhxsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.CElementCreationActionSet" name="Auto::org.eclipse.cdt.ui.CElementCreationActionSet"/> - <rootContext xmi:id="_2lDhx8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.text.c.actionSet.presentation" name="Auto::org.eclipse.cdt.ui.text.c.actionSet.presentation"/> - <rootContext xmi:id="_2lDhyMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.actionSet" name="Auto::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet"/> - <rootContext xmi:id="_2lDhycXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.debug.ui.ScriptDebugActionSet" name="Auto::org.eclipse.dltk.debug.ui.ScriptDebugActionSet"/> - <rootContext xmi:id="_2lDhysXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.testing.testingActionSet" name="Auto::org.eclipse.dltk.testing.testingActionSet"/> - <rootContext xmi:id="_2lDhy8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.ScriptCodingActionSet" name="Auto::org.eclipse.dltk.ui.ScriptCodingActionSet"/> - <rootContext xmi:id="_2lDhzMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.A_OpenActionSet" name="Auto::org.eclipse.dltk.ui.A_OpenActionSet"/> - <rootContext xmi:id="_2lDhzcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.text.actionSet.presentation" name="Auto::org.eclipse.dltk.ui.text.actionSet.presentation"/> - <rootContext xmi:id="_2lDhzsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.SearchActionSet" name="Auto::org.eclipse.dltk.ui.SearchActionSet"/> - <rootContext xmi:id="_2lDhz8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" name="Auto::org.eclipse.jst.j2ee.J2eeMainActionSet"/> - <rootContext xmi:id="_2lDh0MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.mat.ui.actionSet.openIconAssist" name="Auto::org.eclipse.mat.ui.actionSet.openIconAssist"/> - <rootContext xmi:id="_2lDh0cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.mat.ui.actionSet.openExternalFile" name="Auto::org.eclipse.mat.ui.actionSet.openExternalFile"/> - <rootContext xmi:id="_2lDh0sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.mat.ui.actionSet.openAcquireDialog" name="Auto::org.eclipse.mat.ui.actionSet.openAcquireDialog"/> - <rootContext xmi:id="_2lDh08XQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.debug.ui.actionSet" name="Auto::org.eclipse.php.debug.ui.actionSet"/> - <rootContext xmi:id="_2lDh1MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.text.php.actionSet.presentation" name="Auto::org.eclipse.php.ui.text.php.actionSet.presentation"/> - <rootContext xmi:id="_2lDh1cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.PHPActionSet" name="Auto::org.eclipse.php.ui.PHPActionSet"/> - <rootContext xmi:id="_2lDh1sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.A_OpenActionSet" name="Auto::org.eclipse.php.ui.A_OpenActionSet"/> - <rootContext xmi:id="_2lDh18XQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.SearchActionSet" name="Auto::org.eclipse.php.ui.SearchActionSet"/> - <rootContext xmi:id="_2lDh2MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pdt.ui.RefactoringActionSet" name="Auto::org.eclipse.pdt.ui.RefactoringActionSet"/> - <rootContext xmi:id="_2lDh2cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pdt.ui.SourceActionsSet" name="Auto::org.eclipse.pdt.ui.SourceActionsSet"/> - <rootContext xmi:id="_2lDh2sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.debug.ui.debugActionSet" name="Auto::org.eclipse.ptp.debug.ui.debugActionSet"/> - <rootContext xmi:id="_2lDh28XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rdt.ui.SearchActionSet" name="Auto::org.eclipse.ptp.rdt.ui.SearchActionSet"/> - <rootContext xmi:id="_2lDh3MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.rse.core.search.searchActionSet" name="Auto::org.eclipse.rse.core.search.searchActionSet"/> - <rootContext xmi:id="_2lDh3cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.revision.graph.action.shortcuts" name="Auto::org.eclipse.team.svn.revision.graph.action.shortcuts"/> - <rootContext xmi:id="_2lDh3sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.action.shortcuts" name="Auto::org.eclipse.team.svn.ui.action.shortcuts"/> - <rootContext xmi:id="_2lDh38XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.ui.actionset" name="Auto::org.eclipse.wb.core.ui.actionset"/> - <rootContext xmi:id="_2lDh4MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/> - <rootContext xmi:id="_2lEIoMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/> - <rootContext xmi:id="_2lEIocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/> - <rootContext xmi:id="_2lEIosXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/> - <rootContext xmi:id="_2lEIo8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/> - <rootContext xmi:id="_2lEIpMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/> - <rootContext xmi:id="_2lEIpcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/> - <rootContext xmi:id="_2lEIpsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/> - <rootContext xmi:id="_2lEIp8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/> - <rootContext xmi:id="_2lEIqMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.ws.explorer.explorer" name="Auto::org.eclipse.wst.ws.explorer.explorer"/> - <rootContext xmi:id="_2lEIqcXQEeOQKtwf9Y2DKA" elementId="com_sysdeo_eclipse_tomcat_actionSet" name="Auto::com_sysdeo_eclipse_tomcat_actionSet"/> - <rootContext xmi:id="_2lEIqsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/> - <rootContext xmi:id="_2lEIq8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/> - <descriptors xmi:id="_2lEIrMXQEeOQKtwf9Y2DKA" 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="_uc9NRcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/> + <rootContext xmi:id="_uc9NRsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/> + <rootContext xmi:id="_uc9NR8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.wsdl.ui.editor.designView" name="WSDL Editor Design View" description="WSDL Editor Design View"/> + <rootContext xmi:id="_uc9NSMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/> + <rootContext xmi:id="_uc9NScZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/> + <rootContext xmi:id="_uc9NSsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.wsdl.ui.editor.sourceView" name="WSDL Editor Source View" description="WSDL Editor Source View"/> + <rootContext xmi:id="_uc9NS8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/> + <rootContext xmi:id="_uc9NTMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.tm.terminal.TerminalContext" name="Terminal widget context" description="Override ALT+x menu access keys"/> + <rootContext xmi:id="_uc9NTcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.ant.ui.actions.ManageBreakpointRulerAction"/> + <rootContext xmi:id="_uc9NTsZ5EeOSuo9mkUu2dw" 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="_uc9NT8Z5EeOSuo9mkUu2dw" 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="_uc9NUMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction" name="Auto::org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction"/> + <rootContext xmi:id="_uc9NUcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.texteditor.BookmarkRulerAction" name="Auto::org.eclipse.ui.texteditor.BookmarkRulerAction"/> + <rootContext xmi:id="_uc9NUsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction" name="Auto::org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction"/> + <rootContext xmi:id="_uc9NU8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction"/> + <rootContext xmi:id="_uc9NVMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" name="Auto::org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor"/> + <rootContext xmi:id="_uc9NVcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" name="Auto::org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor"/> + <rootContext xmi:id="_uc9NVsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.mapping.action.RemoveMappingActionID" name="Auto::org.eclipse.emf.mapping.action.RemoveMappingActionID"/> + <rootContext xmi:id="_uc9NV8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.mapping.action.TypeMatchMappingActionID" name="Auto::org.eclipse.emf.mapping.action.TypeMatchMappingActionID"/> + <rootContext xmi:id="_uc9NWMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.mapping.action.NameMatchMappingActionID" name="Auto::org.eclipse.emf.mapping.action.NameMatchMappingActionID"/> + <rootContext xmi:id="_uc9NWcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" name="Auto::org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID"/> + <rootContext xmi:id="_uc9NWsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.mapping.action.CreateMappingActionID" name="Auto::org.eclipse.emf.mapping.action.CreateMappingActionID"/> + <rootContext xmi:id="_uc9NW8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" name="Auto::org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID"/> + <rootContext xmi:id="_uc9NXMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" name="Auto::org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID"/> + <rootContext xmi:id="_uc9NXcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.SnippetExecute" name="Auto::org.eclipse.jdt.debug.ui.SnippetExecute"/> + <rootContext xmi:id="_uc9NXsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.SnippetDisplay" name="Auto::org.eclipse.jdt.debug.ui.SnippetDisplay"/> + <rootContext xmi:id="_uc9NX8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.SnippetInspect" name="Auto::org.eclipse.jdt.debug.ui.SnippetInspect"/> + <rootContext xmi:id="_uc90UMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction"/> + <rootContext xmi:id="_uc90UcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction"/> + <rootContext xmi:id="_uc90UsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/> + <rootContext xmi:id="_uc90U8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction"/> + <rootContext xmi:id="_uc90VMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.texteditor.SelectRulerAction" name="Auto::org.eclipse.ui.texteditor.SelectRulerAction"/> + <rootContext xmi:id="_uc90VcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.jdt.downloadSourcesAction" name="Auto::org.eclipse.m2e.jdt.downloadSourcesAction"/> + <rootContext xmi:id="_uc90VsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.internal.ui.editor.PhpSelectRulerAction" name="Auto::org.eclipse.php.internal.ui.editor.PhpSelectRulerAction"/> + <rootContext xmi:id="_uc90V8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rdt.ui.editors.RemoteCEditor.RulerToggleBreakpointAction" name="Auto::org.eclipse.ptp.rdt.ui.editors.RemoteCEditor.RulerToggleBreakpointAction"/> + <rootContext xmi:id="_uc90WMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.editor.actions.SwitchAction" name="Auto::org.eclipse.wb.core.editor.actions.SwitchAction"/> + <rootContext xmi:id="_uc90WcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" name="Auto::org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction"/> + <rootContext xmi:id="_uc90WsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" name="Auto::org.eclipse.wb.core.xml.editor.actions.SwitchAction"/> + <rootContext xmi:id="_uc90W8Z5EeOSuo9mkUu2dw" elementId="StructureSelectEnclosing" name="Auto::StructureSelectEnclosing"/> + <rootContext xmi:id="_uc90XMZ5EeOSuo9mkUu2dw" elementId="StructureSelectNext" name="Auto::StructureSelectNext"/> + <rootContext xmi:id="_uc90XcZ5EeOSuo9mkUu2dw" elementId="StructureSelectPrevious" name="Auto::StructureSelectPrevious"/> + <rootContext xmi:id="_uc90XsZ5EeOSuo9mkUu2dw" elementId="StructureSelectHistory" name="Auto::StructureSelectHistory"/> + <rootContext xmi:id="_uc90X8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" name="Auto::org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint"/> + <rootContext xmi:id="_uc90YMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction"/> + <rootContext xmi:id="_uc90YcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction"/> + <rootContext xmi:id="_uc90YsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/> + <rootContext xmi:id="_uc90Y8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction"/> + <rootContext xmi:id="_uc90ZMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" name="Auto::org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate"/> + <rootContext xmi:id="_uc90ZcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/> + <rootContext xmi:id="_uc90ZsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/> + <rootContext xmi:id="_uc90Z8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/> + <rootContext xmi:id="_uc90aMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/> + <rootContext xmi:id="_uc90acZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/> + <rootContext xmi:id="_uc90asZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/> + <rootContext xmi:id="_uc90a8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/> + <rootContext xmi:id="_uc90bMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/> + <rootContext xmi:id="_uc90bcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/> + <rootContext xmi:id="_uc-bYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/> + <rootContext xmi:id="_uc-bYcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/> + <rootContext xmi:id="_uc-bYsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/> + <rootContext xmi:id="_uc-bY8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/> + <rootContext xmi:id="_uc-bZMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/> + <rootContext xmi:id="_uc-bZcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/> + <rootContext xmi:id="_uc-bZsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/> + <rootContext xmi:id="_uc-bZ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.CVSActionSet" name="Auto::org.eclipse.team.cvs.ui.CVSActionSet"/> + <rootContext xmi:id="_uc-baMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/> + <rootContext xmi:id="_uc-bacZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/> + <rootContext xmi:id="_uc-basZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/> + <rootContext xmi:id="_uc-ba8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/> + <rootContext xmi:id="_uc-bbMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/> + <rootContext xmi:id="_uc-bbcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/> + <rootContext xmi:id="_uc-bbsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/> + <rootContext xmi:id="_uc-bb8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/> + <rootContext xmi:id="_uc-bcMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/> + <rootContext xmi:id="_uc-bccZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/> + <rootContext xmi:id="_uc-bcsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/> + <rootContext xmi:id="_uc-bc8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.debug.ui.DeubgScript" name="Auto::org.eclipse.birt.report.debug.ui.DeubgScript"/> + <rootContext xmi:id="_uc-bdMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.publishActionSet" name="Auto::org.eclipse.birt.report.designer.ui.publishActionSet"/> + <rootContext xmi:id="_uc-bdcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.previewActionSet" name="Auto::org.eclipse.birt.report.designer.ui.previewActionSet"/> + <rootContext xmi:id="_uc-bdsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.viewDocumentActionSet" name="Auto::org.eclipse.birt.report.designer.ui.viewDocumentActionSet"/> + <rootContext xmi:id="_uc-bd8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.debugActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugActionSet"/> + <rootContext xmi:id="_uc-beMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.reverseDebuggingActionSet" name="Auto::org.eclipse.cdt.debug.ui.reverseDebuggingActionSet"/> + <rootContext xmi:id="_uc-becZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.tracepointActionSet" name="Auto::org.eclipse.cdt.debug.ui.tracepointActionSet"/> + <rootContext xmi:id="_uc-besZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.debugViewLayoutActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugViewLayoutActionSet"/> + <rootContext xmi:id="_uc_CcMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.dsf.debug.ui.updateModes" name="Auto::org.eclipse.cdt.dsf.debug.ui.updateModes"/> + <rootContext xmi:id="_uc_CccZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.updateActionSet" name="Auto::org.eclipse.cdt.make.ui.updateActionSet"/> + <rootContext xmi:id="_uc_CcsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.makeTargetActionSet" name="Auto::org.eclipse.cdt.make.ui.makeTargetActionSet"/> + <rootContext xmi:id="_uc_Cc8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.CodingActionSet" name="Auto::org.eclipse.cdt.ui.CodingActionSet"/> + <rootContext xmi:id="_uc_CdMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.SearchActionSet" name="Auto::org.eclipse.cdt.ui.SearchActionSet"/> + <rootContext xmi:id="_uc_CdcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.NavigationActionSet" name="Auto::org.eclipse.cdt.ui.NavigationActionSet"/> + <rootContext xmi:id="_uc_CdsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.OpenActionSet" name="Auto::org.eclipse.cdt.ui.OpenActionSet"/> + <rootContext xmi:id="_uc_Cd8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.buildConfigActionSet" name="Auto::org.eclipse.cdt.ui.buildConfigActionSet"/> + <rootContext xmi:id="_uc_CeMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.CElementCreationActionSet" name="Auto::org.eclipse.cdt.ui.CElementCreationActionSet"/> + <rootContext xmi:id="_uc_CecZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.text.c.actionSet.presentation" name="Auto::org.eclipse.cdt.ui.text.c.actionSet.presentation"/> + <rootContext xmi:id="_uc_CesZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.actionSet" name="Auto::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet"/> + <rootContext xmi:id="_uc_Ce8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.debug.ui.ScriptDebugActionSet" name="Auto::org.eclipse.dltk.debug.ui.ScriptDebugActionSet"/> + <rootContext xmi:id="_uc_CfMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.testing.testingActionSet" name="Auto::org.eclipse.dltk.testing.testingActionSet"/> + <rootContext xmi:id="_uc_CfcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.ScriptCodingActionSet" name="Auto::org.eclipse.dltk.ui.ScriptCodingActionSet"/> + <rootContext xmi:id="_uc_CfsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.A_OpenActionSet" name="Auto::org.eclipse.dltk.ui.A_OpenActionSet"/> + <rootContext xmi:id="_uc_Cf8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.text.actionSet.presentation" name="Auto::org.eclipse.dltk.ui.text.actionSet.presentation"/> + <rootContext xmi:id="_uc_CgMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.SearchActionSet" name="Auto::org.eclipse.dltk.ui.SearchActionSet"/> + <rootContext xmi:id="_uc_CgcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" name="Auto::org.eclipse.jst.j2ee.J2eeMainActionSet"/> + <rootContext xmi:id="_uc_CgsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.mat.ui.actionSet.openIconAssist" name="Auto::org.eclipse.mat.ui.actionSet.openIconAssist"/> + <rootContext xmi:id="_uc_Cg8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.mat.ui.actionSet.openExternalFile" name="Auto::org.eclipse.mat.ui.actionSet.openExternalFile"/> + <rootContext xmi:id="_uc_ChMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.mat.ui.actionSet.openAcquireDialog" name="Auto::org.eclipse.mat.ui.actionSet.openAcquireDialog"/> + <rootContext xmi:id="_uc_ChcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.debug.ui.actionSet" name="Auto::org.eclipse.php.debug.ui.actionSet"/> + <rootContext xmi:id="_uc_ChsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.text.php.actionSet.presentation" name="Auto::org.eclipse.php.ui.text.php.actionSet.presentation"/> + <rootContext xmi:id="_uc_Ch8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.PHPActionSet" name="Auto::org.eclipse.php.ui.PHPActionSet"/> + <rootContext xmi:id="_uc_CiMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.A_OpenActionSet" name="Auto::org.eclipse.php.ui.A_OpenActionSet"/> + <rootContext xmi:id="_uc_pgMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.SearchActionSet" name="Auto::org.eclipse.php.ui.SearchActionSet"/> + <rootContext xmi:id="_uc_pgcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pdt.ui.RefactoringActionSet" name="Auto::org.eclipse.pdt.ui.RefactoringActionSet"/> + <rootContext xmi:id="_uc_pgsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pdt.ui.SourceActionsSet" name="Auto::org.eclipse.pdt.ui.SourceActionsSet"/> + <rootContext xmi:id="_uc_pg8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.debug.ui.debugActionSet" name="Auto::org.eclipse.ptp.debug.ui.debugActionSet"/> + <rootContext xmi:id="_uc_phMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rdt.ui.SearchActionSet" name="Auto::org.eclipse.ptp.rdt.ui.SearchActionSet"/> + <rootContext xmi:id="_uc_phcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.rse.core.search.searchActionSet" name="Auto::org.eclipse.rse.core.search.searchActionSet"/> + <rootContext xmi:id="_uc_phsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.revision.graph.action.shortcuts" name="Auto::org.eclipse.team.svn.revision.graph.action.shortcuts"/> + <rootContext xmi:id="_uc_ph8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.action.shortcuts" name="Auto::org.eclipse.team.svn.ui.action.shortcuts"/> + <rootContext xmi:id="_uc_piMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.ui.actionset" name="Auto::org.eclipse.wb.core.ui.actionset"/> + <rootContext xmi:id="_uc_picZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/> + <rootContext xmi:id="_uc_pisZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/> + <rootContext xmi:id="_uc_pi8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/> + <rootContext xmi:id="_uc_pjMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/> + <rootContext xmi:id="_uc_pjcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/> + <rootContext xmi:id="_uc_pjsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/> + <rootContext xmi:id="_uc_pj8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/> + <rootContext xmi:id="_uc_pkMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/> + <rootContext xmi:id="_uc_pkcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/> + <rootContext xmi:id="_uc_pksZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.ws.explorer.explorer" name="Auto::org.eclipse.wst.ws.explorer.explorer"/> + <rootContext xmi:id="_uc_pk8Z5EeOSuo9mkUu2dw" elementId="com_sysdeo_eclipse_tomcat_actionSet" name="Auto::com_sysdeo_eclipse_tomcat_actionSet"/> + <rootContext xmi:id="_uc_plMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/> + <rootContext xmi:id="_uc_plcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/> + <descriptors xmi:id="_uc_plsZ5EeOSuo9mkUu2dw" 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="_2lEIrcXQEeOQKtwf9Y2DKA" 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="_uc_pl8Z5EeOSuo9mkUu2dw" 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="_2lEIrsXQEeOQKtwf9Y2DKA" 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="_udAQkMZ5EeOSuo9mkUu2dw" 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="_2lEIr8XQEeOQKtwf9Y2DKA" 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="_udAQkcZ5EeOSuo9mkUu2dw" 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="_2lEIsMXQEeOQKtwf9Y2DKA" 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="_udAQksZ5EeOSuo9mkUu2dw" 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="_2lEIscXQEeOQKtwf9Y2DKA" 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="_udAQk8Z5EeOSuo9mkUu2dw" 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="_2lEIssXQEeOQKtwf9Y2DKA" 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="_udAQlMZ5EeOSuo9mkUu2dw" 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="_2lEIs8XQEeOQKtwf9Y2DKA" 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="_udAQlcZ5EeOSuo9mkUu2dw" 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="_2lEItMXQEeOQKtwf9Y2DKA" 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="_udAQlsZ5EeOSuo9mkUu2dw" 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="_2lEItcXQEeOQKtwf9Y2DKA" 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="_udAQl8Z5EeOSuo9mkUu2dw" 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="_2lEItsXQEeOQKtwf9Y2DKA" 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="_udAQmMZ5EeOSuo9mkUu2dw" 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="_2lEIt8XQEeOQKtwf9Y2DKA" 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="_udAQmcZ5EeOSuo9mkUu2dw" 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="_2lEIuMXQEeOQKtwf9Y2DKA" 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="_udAQmsZ5EeOSuo9mkUu2dw" 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="_2lEIucXQEeOQKtwf9Y2DKA" 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="_udAQm8Z5EeOSuo9mkUu2dw" 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="_2lEIusXQEeOQKtwf9Y2DKA" 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="_udAQnMZ5EeOSuo9mkUu2dw" 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="_2lEIu8XQEeOQKtwf9Y2DKA" 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="_udAQncZ5EeOSuo9mkUu2dw" 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="_2lEIvMXQEeOQKtwf9Y2DKA" 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="_udAQnsZ5EeOSuo9mkUu2dw" 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="_2lEIvcXQEeOQKtwf9Y2DKA" 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="_udAQn8Z5EeOSuo9mkUu2dw" 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="_2lEIvsXQEeOQKtwf9Y2DKA" 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="_udAQoMZ5EeOSuo9mkUu2dw" 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="_2lEIv8XQEeOQKtwf9Y2DKA" 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="_udAQocZ5EeOSuo9mkUu2dw" 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="_2lEIwMXQEeOQKtwf9Y2DKA" 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="_udAQosZ5EeOSuo9mkUu2dw" 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="_2lEIwcXQEeOQKtwf9Y2DKA" 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="_udAQo8Z5EeOSuo9mkUu2dw" 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="_2lEIwsXQEeOQKtwf9Y2DKA" 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="_udAQpMZ5EeOSuo9mkUu2dw" 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="_2lEIw8XQEeOQKtwf9Y2DKA" 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="_udAQpcZ5EeOSuo9mkUu2dw" 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="_2lEIxMXQEeOQKtwf9Y2DKA" 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="_udAQpsZ5EeOSuo9mkUu2dw" 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="_2lEIxcXQEeOQKtwf9Y2DKA" 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="_udAQp8Z5EeOSuo9mkUu2dw" 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="_2lEIxsXQEeOQKtwf9Y2DKA" 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="_udA3oMZ5EeOSuo9mkUu2dw" 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="_2lEIx8XQEeOQKtwf9Y2DKA" 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="_udA3ocZ5EeOSuo9mkUu2dw" 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="_2lEIyMXQEeOQKtwf9Y2DKA" 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="_udA3osZ5EeOSuo9mkUu2dw" 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="_2lEIycXQEeOQKtwf9Y2DKA" 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="_udA3o8Z5EeOSuo9mkUu2dw" 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="_2lEIysXQEeOQKtwf9Y2DKA" 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="_udA3pMZ5EeOSuo9mkUu2dw" 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="_2lEIy8XQEeOQKtwf9Y2DKA" 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="_udA3pcZ5EeOSuo9mkUu2dw" 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="_2lEIzMXQEeOQKtwf9Y2DKA" 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="_udA3psZ5EeOSuo9mkUu2dw" 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="_2lEIzcXQEeOQKtwf9Y2DKA" 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="_udA3p8Z5EeOSuo9mkUu2dw" 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="_2lEIzsXQEeOQKtwf9Y2DKA" 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="_udA3qMZ5EeOSuo9mkUu2dw" 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="_2lEIz8XQEeOQKtwf9Y2DKA" 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="_udA3qcZ5EeOSuo9mkUu2dw" 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="_2lEI0MXQEeOQKtwf9Y2DKA" 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="_udA3qsZ5EeOSuo9mkUu2dw" 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="_2lEI0cXQEeOQKtwf9Y2DKA" 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="_udA3q8Z5EeOSuo9mkUu2dw" 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="_2lEI0sXQEeOQKtwf9Y2DKA" 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="_udA3rMZ5EeOSuo9mkUu2dw" 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="_2lEI08XQEeOQKtwf9Y2DKA" 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="_udA3rcZ5EeOSuo9mkUu2dw" 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="_2lEI1MXQEeOQKtwf9Y2DKA" 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="_udA3rsZ5EeOSuo9mkUu2dw" 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="_2lEI1cXQEeOQKtwf9Y2DKA" 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="_udA3r8Z5EeOSuo9mkUu2dw" 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="_2lEI1sXQEeOQKtwf9Y2DKA" 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="_udA3sMZ5EeOSuo9mkUu2dw" 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="_2lEI18XQEeOQKtwf9Y2DKA" 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="_udA3scZ5EeOSuo9mkUu2dw" 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="_2lEI2MXQEeOQKtwf9Y2DKA" 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="_udA3ssZ5EeOSuo9mkUu2dw" 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="_2lEI2cXQEeOQKtwf9Y2DKA" 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="_udA3s8Z5EeOSuo9mkUu2dw" 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="_2lEI2sXQEeOQKtwf9Y2DKA" 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="_udA3tMZ5EeOSuo9mkUu2dw" 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="_2lEI28XQEeOQKtwf9Y2DKA" 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="_udA3tcZ5EeOSuo9mkUu2dw" 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="_2lEI3MXQEeOQKtwf9Y2DKA" 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="_udBesMZ5EeOSuo9mkUu2dw" 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="_2lEI3cXQEeOQKtwf9Y2DKA" 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="_udBescZ5EeOSuo9mkUu2dw" 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="_2lEI3sXQEeOQKtwf9Y2DKA" 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="_udBessZ5EeOSuo9mkUu2dw" 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="_2lEI38XQEeOQKtwf9Y2DKA" 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="_udBes8Z5EeOSuo9mkUu2dw" 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="_2lEI4MXQEeOQKtwf9Y2DKA" 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="_udBetMZ5EeOSuo9mkUu2dw" 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="_2lEI4cXQEeOQKtwf9Y2DKA" 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="_udBetcZ5EeOSuo9mkUu2dw" 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="_2lEI4sXQEeOQKtwf9Y2DKA" 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="_udBetsZ5EeOSuo9mkUu2dw" 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="_2lEI48XQEeOQKtwf9Y2DKA" 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="_udBet8Z5EeOSuo9mkUu2dw" 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="_2lEI5MXQEeOQKtwf9Y2DKA" 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="_udBeuMZ5EeOSuo9mkUu2dw" 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="_2lEI5cXQEeOQKtwf9Y2DKA" 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="_udBeucZ5EeOSuo9mkUu2dw" 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="_2lEI5sXQEeOQKtwf9Y2DKA" 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="_udBeusZ5EeOSuo9mkUu2dw" 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="_2lEI58XQEeOQKtwf9Y2DKA" 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="_udBeu8Z5EeOSuo9mkUu2dw" 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="_2lEI6MXQEeOQKtwf9Y2DKA" 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="_udCFwMZ5EeOSuo9mkUu2dw" 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="_2lEI6cXQEeOQKtwf9Y2DKA" 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="_udCFwcZ5EeOSuo9mkUu2dw" 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="_2lEI6sXQEeOQKtwf9Y2DKA" 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="_udCFwsZ5EeOSuo9mkUu2dw" 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="_2lEvsMXQEeOQKtwf9Y2DKA" 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="_udCFw8Z5EeOSuo9mkUu2dw" 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="_2lEvscXQEeOQKtwf9Y2DKA" 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="_udCFxMZ5EeOSuo9mkUu2dw" 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="_2lEvssXQEeOQKtwf9Y2DKA" 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="_udCFxcZ5EeOSuo9mkUu2dw" 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="_2lEvs8XQEeOQKtwf9Y2DKA" 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="_udCFxsZ5EeOSuo9mkUu2dw" 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="_2lEvtMXQEeOQKtwf9Y2DKA" 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="_udCFx8Z5EeOSuo9mkUu2dw" 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="_2lEvtcXQEeOQKtwf9Y2DKA" 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="_udCFyMZ5EeOSuo9mkUu2dw" 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="_2lEvtsXQEeOQKtwf9Y2DKA" 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="_udCFycZ5EeOSuo9mkUu2dw" 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="_2lEvt8XQEeOQKtwf9Y2DKA" 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="_udCFysZ5EeOSuo9mkUu2dw" 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="_2lEvuMXQEeOQKtwf9Y2DKA" 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="_udCFy8Z5EeOSuo9mkUu2dw" 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="_2lEvucXQEeOQKtwf9Y2DKA" 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="_udCFzMZ5EeOSuo9mkUu2dw" 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="_2lEvusXQEeOQKtwf9Y2DKA" 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="_udCFzcZ5EeOSuo9mkUu2dw" 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="_2lEvu8XQEeOQKtwf9Y2DKA" 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="_udCs0MZ5EeOSuo9mkUu2dw" 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="_2lEvvMXQEeOQKtwf9Y2DKA" 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="_udCs0cZ5EeOSuo9mkUu2dw" 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="_2lEvvcXQEeOQKtwf9Y2DKA" 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="_udCs0sZ5EeOSuo9mkUu2dw" 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="_2lEvvsXQEeOQKtwf9Y2DKA" 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="_udCs08Z5EeOSuo9mkUu2dw" 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="_2lEvv8XQEeOQKtwf9Y2DKA" 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="_udCs1MZ5EeOSuo9mkUu2dw" 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="_2lEvwMXQEeOQKtwf9Y2DKA" 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="_udCs1cZ5EeOSuo9mkUu2dw" 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="_2lEvwcXQEeOQKtwf9Y2DKA" 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="_udCs1sZ5EeOSuo9mkUu2dw" 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="_2lEvwsXQEeOQKtwf9Y2DKA" 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="_udCs18Z5EeOSuo9mkUu2dw" 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="_2lEvw8XQEeOQKtwf9Y2DKA" 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="_udCs2MZ5EeOSuo9mkUu2dw" 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="_2lEvxMXQEeOQKtwf9Y2DKA" 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="_udCs2cZ5EeOSuo9mkUu2dw" 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="_2lEvxcXQEeOQKtwf9Y2DKA" 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="_udCs2sZ5EeOSuo9mkUu2dw" 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="_2lEvxsXQEeOQKtwf9Y2DKA" 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="_udCs28Z5EeOSuo9mkUu2dw" 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="_2lEvx8XQEeOQKtwf9Y2DKA" 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="_udCs3MZ5EeOSuo9mkUu2dw" 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="_2lEvyMXQEeOQKtwf9Y2DKA" 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="_udCs3cZ5EeOSuo9mkUu2dw" 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="_2lEvycXQEeOQKtwf9Y2DKA" 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="_udCs3sZ5EeOSuo9mkUu2dw" 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="_2lEvysXQEeOQKtwf9Y2DKA" 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="_udDT4MZ5EeOSuo9mkUu2dw" 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="_2lEvy8XQEeOQKtwf9Y2DKA" 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="_udDT4cZ5EeOSuo9mkUu2dw" 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="_2lEvzMXQEeOQKtwf9Y2DKA" 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="_udDT4sZ5EeOSuo9mkUu2dw" 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="_2lEvzcXQEeOQKtwf9Y2DKA" 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="_udDT48Z5EeOSuo9mkUu2dw" 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="_2lEvzsXQEeOQKtwf9Y2DKA" 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="_udDT5MZ5EeOSuo9mkUu2dw" 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="_2lEvz8XQEeOQKtwf9Y2DKA" 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="_udDT5cZ5EeOSuo9mkUu2dw" 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="_2lEv0MXQEeOQKtwf9Y2DKA" 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="_udDT5sZ5EeOSuo9mkUu2dw" 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="_2lEv0cXQEeOQKtwf9Y2DKA" 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="_udDT58Z5EeOSuo9mkUu2dw" 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="_2lEv0sXQEeOQKtwf9Y2DKA" 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="_udDT6MZ5EeOSuo9mkUu2dw" 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="_2lEv08XQEeOQKtwf9Y2DKA" 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="_udDT6cZ5EeOSuo9mkUu2dw" 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="_2lEv1MXQEeOQKtwf9Y2DKA" 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="_udDT6sZ5EeOSuo9mkUu2dw" 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="_2lEv1cXQEeOQKtwf9Y2DKA" 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="_udDT68Z5EeOSuo9mkUu2dw" 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="_2lEv1sXQEeOQKtwf9Y2DKA" 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="_udDT7MZ5EeOSuo9mkUu2dw" 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="_2lEv18XQEeOQKtwf9Y2DKA" 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="_udDT7cZ5EeOSuo9mkUu2dw" 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="_2lEv2MXQEeOQKtwf9Y2DKA" 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="_udDT7sZ5EeOSuo9mkUu2dw" 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="_2lEv2cXQEeOQKtwf9Y2DKA" 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="_udDT78Z5EeOSuo9mkUu2dw" 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="_2lEv2sXQEeOQKtwf9Y2DKA" 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="_udDT8MZ5EeOSuo9mkUu2dw" 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="_2lEv28XQEeOQKtwf9Y2DKA" 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="_udD68MZ5EeOSuo9mkUu2dw" 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="_2lEv3MXQEeOQKtwf9Y2DKA" 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="_udD68cZ5EeOSuo9mkUu2dw" 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="_2lEv3cXQEeOQKtwf9Y2DKA" 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="_udD68sZ5EeOSuo9mkUu2dw" 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="_2lEv3sXQEeOQKtwf9Y2DKA" 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="_udD688Z5EeOSuo9mkUu2dw" 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="_2lEv38XQEeOQKtwf9Y2DKA" 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="_udD69MZ5EeOSuo9mkUu2dw" 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="_2lEv4MXQEeOQKtwf9Y2DKA" 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="_udD69cZ5EeOSuo9mkUu2dw" 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="_2lEv4cXQEeOQKtwf9Y2DKA" 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="_udD69sZ5EeOSuo9mkUu2dw" 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="_2lEv4sXQEeOQKtwf9Y2DKA" 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="_udD698Z5EeOSuo9mkUu2dw" 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="_2lEv48XQEeOQKtwf9Y2DKA" 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="_udD6-MZ5EeOSuo9mkUu2dw" 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="_2lEv5MXQEeOQKtwf9Y2DKA" 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="_udD6-cZ5EeOSuo9mkUu2dw" 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="_2lEv5cXQEeOQKtwf9Y2DKA" 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="_udD6-sZ5EeOSuo9mkUu2dw" 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="_2lEv5sXQEeOQKtwf9Y2DKA" 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="_udD6-8Z5EeOSuo9mkUu2dw" 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="_2lEv58XQEeOQKtwf9Y2DKA" 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="_udD6_MZ5EeOSuo9mkUu2dw" 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="_2lEv6MXQEeOQKtwf9Y2DKA" 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="_udD6_cZ5EeOSuo9mkUu2dw" 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="_2lEv6cXQEeOQKtwf9Y2DKA" 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="_udD6_sZ5EeOSuo9mkUu2dw" 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="_2lEv6sXQEeOQKtwf9Y2DKA" 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="_udD6_8Z5EeOSuo9mkUu2dw" 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="_2lFWwMXQEeOQKtwf9Y2DKA" 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="_udD7AMZ5EeOSuo9mkUu2dw" 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="_2lFWwcXQEeOQKtwf9Y2DKA" 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="_udD7AcZ5EeOSuo9mkUu2dw" 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="_2lFWwsXQEeOQKtwf9Y2DKA" 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="_udD7AsZ5EeOSuo9mkUu2dw" 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="_2lFWw8XQEeOQKtwf9Y2DKA" 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="_udEiAMZ5EeOSuo9mkUu2dw" 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="_2lFWxMXQEeOQKtwf9Y2DKA" 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="_udEiAcZ5EeOSuo9mkUu2dw" 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="_2lFWxcXQEeOQKtwf9Y2DKA" 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="_udEiAsZ5EeOSuo9mkUu2dw" 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="_2lFWxsXQEeOQKtwf9Y2DKA" 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="_udEiA8Z5EeOSuo9mkUu2dw" 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="_2lFWx8XQEeOQKtwf9Y2DKA" 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="_udEiBMZ5EeOSuo9mkUu2dw" 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="_2lFWyMXQEeOQKtwf9Y2DKA" 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="_udEiBcZ5EeOSuo9mkUu2dw" 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="_2lFWycXQEeOQKtwf9Y2DKA" 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="_udEiBsZ5EeOSuo9mkUu2dw" 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="_2lFWysXQEeOQKtwf9Y2DKA" 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="_udEiB8Z5EeOSuo9mkUu2dw" 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="_2lFWy8XQEeOQKtwf9Y2DKA" 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="_udEiCMZ5EeOSuo9mkUu2dw" 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="_2lFWzMXQEeOQKtwf9Y2DKA" 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="_udEiCcZ5EeOSuo9mkUu2dw" 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="_2lFWzcXQEeOQKtwf9Y2DKA" 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="_udEiCsZ5EeOSuo9mkUu2dw" 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="_2lFWzsXQEeOQKtwf9Y2DKA" 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="_udEiC8Z5EeOSuo9mkUu2dw" 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="_2lFWz8XQEeOQKtwf9Y2DKA" 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="_udEiDMZ5EeOSuo9mkUu2dw" 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="_2lFW0MXQEeOQKtwf9Y2DKA" 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="_udEiDcZ5EeOSuo9mkUu2dw" 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="_2lFW0cXQEeOQKtwf9Y2DKA" 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="_udEiDsZ5EeOSuo9mkUu2dw" 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="_2lFW0sXQEeOQKtwf9Y2DKA" 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="_udEiD8Z5EeOSuo9mkUu2dw" 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="_2lFW08XQEeOQKtwf9Y2DKA" 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="_udEiEMZ5EeOSuo9mkUu2dw" 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="_2lFW1MXQEeOQKtwf9Y2DKA" 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="_udEiEcZ5EeOSuo9mkUu2dw" 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="_2lFW1cXQEeOQKtwf9Y2DKA" 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="_udEiEsZ5EeOSuo9mkUu2dw" 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="_2lFW1sXQEeOQKtwf9Y2DKA" 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="_udEiE8Z5EeOSuo9mkUu2dw" 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="_2lYRu8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRvMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRvcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRvsXQEeOQKtwf9Y2DKA" 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="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRv8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRwMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_2l3Z4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRwcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoAddress" commandName="Go to Address..." description="Navigate to address" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRwsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.pldt.openshmem.command4" commandName="find.openshmem.artifacts" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRw8XQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRxMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.connectivity.commands.import" commandName="Import Profiles Command" description="Command to import connection profiles" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRxcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.open.quick.type.hierarchy" commandName="Quick Type Hierarchy" description="Shows quick type hierarchy" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRxsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.ShareProjectsCommand" commandName="Share Projects..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRx8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRyMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.groupDebugContexts" commandName="Group" description="Groups the selected debug contexts" category="_2l3Z68XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRycXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRysXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRy8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRzMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRzcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRzsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lYRz8XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4wMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_2l2y38XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4wcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4wsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.refactor.extract.local.variable" commandName="Extract Local Variable - Refactoring " description="Extract a local variable for the selected expression" category="_2l2Lz8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4w8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4xMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.EditConflictsCommand" commandName="Edit Conflicts" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4xcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4xsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rdt.sync.ui.SyncCommand" commandName="Sync Operations" category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lY4x8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rdt.sync.ui.syncCommand.syncModeParameter" name="Sync Mode" optional="false"/> + <commands xmi:id="_udUZo8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZpMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZpcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZpsZ5EeOSuo9mkUu2dw" 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="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZp8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZqMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_uegFYMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZqcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoAddress" commandName="Go to Address..." description="Navigate to address" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZqsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.pldt.openshmem.command4" commandName="find.openshmem.artifacts" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZq8Z5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZrMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.connectivity.commands.import" commandName="Import Profiles Command" description="Command to import connection profiles" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udUZrcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.open.quick.type.hierarchy" commandName="Quick Type Hierarchy" description="Shows quick type hierarchy" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVAsMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.ShareProjectsCommand" commandName="Share Projects..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVAscZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVAssZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.groupDebugContexts" commandName="Group" description="Groups the selected debug contexts" category="_uegFacZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVAs8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVAtMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVAtcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVAtsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVAt8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVnwMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVnwcZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVnwsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_uefeU8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVnw8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVnxMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.refactor.extract.local.variable" commandName="Extract Local Variable - Refactoring " description="Extract a local variable for the selected expression" category="_uedpI8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVnxcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVnxsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.EditConflictsCommand" commandName="Edit Conflicts" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVnx8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udVnyMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rdt.sync.ui.SyncCommand" commandName="Sync Operations" category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udVnycZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rdt.sync.ui.syncCommand.syncModeParameter" name="Sync Mode" optional="false"/> </commands> - <commands xmi:id="_2lY4yMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4ycXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4ysXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.hover.backwardMacroExpansion" commandName="Back" description="Step backward in macro expansions" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4y8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4zMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4zcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4zsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.debug" commandName="Debug CLI Application" description="Debug CLI Application" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY4z8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewRebase" commandName="Rebase" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY40MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY40cXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY40sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY408XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY41MXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY41cXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY41sXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY418XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY42MXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY42cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY42sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY428XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY43MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY43cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY43sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.refactor.extract.constant" commandName="Extract Constant - Refactoring " description="Extract a constant for the selected expression" category="_2l2Lz8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lY438XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf0MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.attachProfileAction" commandName="Set Connection Information" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf0cXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf0sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf08XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf1MXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf1cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.refactor.getters.and.setters" commandName="Generate Getters and Setters..." description="Generates getters and setters for a selected field" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf1sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf18XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf2MXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf2cXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lZf2sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_udVnysZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udWO0MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udWO0cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.hover.backwardMacroExpansion" commandName="Back" description="Step backward in macro expansions" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udWO0sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udWO08Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udWO1MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udWO1cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.debug" commandName="Debug CLI Application" description="Debug CLI Application" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udWO1sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewRebase" commandName="Rebase" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udWO18Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udWO2MZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW14MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW14cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW14sZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW148Z5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW15MZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW15cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW15sZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW158Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW16MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udW16cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc8MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc8cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc8sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.refactor.extract.constant" commandName="Extract Constant - Refactoring " description="Extract a constant for the selected expression" category="_uedpI8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc88Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc9MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.attachProfileAction" commandName="Set Connection Information" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc9cZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc9sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc98Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc-MZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc-cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.refactor.getters.and.setters" commandName="Generate Getters and Setters..." description="Generates getters and setters for a selected field" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc-sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udXc-8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYEAMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYEAcZ5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udYEAsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_2lZf28XQEeOQKtwf9Y2DKA" 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="_2l2Lz8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf3MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.addMonitor" commandName="Add Monitor" category="_2l3Z5sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf3cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf3sXQEeOQKtwf9Y2DKA" elementId="pl.szpinda.plugin.tomcat.commands.tomcatQuickRestart" commandName="Tomcat quick restart" category="_2l2y48XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf38XQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf4MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf4cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf4sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.refreshJob" commandName="Refresh Job Status" description="Refresh the state and state detail for this job" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf48XQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf5MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.reverseStepInto" commandName="Reverse Step Into" description="Perform Reverse Step Into" category="_2l2y3cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf5cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.actions.LifeCycleInstall.run" commandName="Run Maven Install" description="Run Maven Install" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf5sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CompareTwoRepositoryResourcesCommand" commandName="Compare With URL..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf58XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf6MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.cutcolumn" commandName="Cut" category="_2l2LzMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf6cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf6sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf68XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf7MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.insertExpressionCommand" commandName="insertExpressionCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf7cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf7sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lZf78XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.command.reconfigure" commandName="Reconfigure Project" description="Run configuration scripts for project" category="_2l2LysXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG4MXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG4cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.excludeCommand" commandName="Exclude from Build" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG4sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG48XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG5MXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG5cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG5sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG58XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG6MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG6cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Git Index" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG6sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG68XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG7MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.indent" commandName="Indent Line" description="Indents the current line" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG7cXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2laG7sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_udYEA8Z5EeOSuo9mkUu2dw" 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="_uedpI8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYEBMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.addMonitor" commandName="Add Monitor" category="_uegFZMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYEBcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYEBsZ5EeOSuo9mkUu2dw" elementId="pl.szpinda.plugin.tomcat.commands.tomcatQuickRestart" commandName="Tomcat quick restart" category="_uefeV8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYEB8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYECMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYECcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYECsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.refreshJob" commandName="Refresh Job Status" description="Refresh the state and state detail for this job" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYEC8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYEDMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.reverseStepInto" commandName="Reverse Step Into" description="Perform Reverse Step Into" category="_uefeUcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYEDcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.actions.LifeCycleInstall.run" commandName="Run Maven Install" description="Run Maven Install" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrEMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CompareTwoRepositoryResourcesCommand" commandName="Compare With URL..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrEcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrEsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.cutcolumn" commandName="Cut" category="_uedpIMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrE8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrFMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrFcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrFsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.insertExpressionCommand" commandName="insertExpressionCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrF8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrGMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrGcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.command.reconfigure" commandName="Reconfigure Project" description="Run configuration scripts for project" category="_uedCFcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrGsZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrG8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.excludeCommand" commandName="Exclude from Build" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrHMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udYrHcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSIMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSIcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSIsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSI8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSJMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSJcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Git Index" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSJsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSJ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSKMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.indent" commandName="Indent Line" description="Indents the current line" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSKcZ5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udZSKsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_2laG78XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG8MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoPC" commandName="Go to Program Counter" description="Navigate to current program counter" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG8cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG8sXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG88XQEeOQKtwf9Y2DKA" 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="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG9MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG9cXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG9sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Annotations" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG98XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG-MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG-cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.updateSwitch" commandName="Switch to Another Branch or Version" description="Switch to Another Branch or Version" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG-sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG-8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG_MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.ReplaceWithRevisionCommand" commandName="URL..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG_cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.uncall" commandName="Uncall" description="Perform Uncall" category="_2l2y3cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG_sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2laG_8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat8MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat8cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat8sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.perspective" commandName="PHP" description="Shows the PHP perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat88XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat9MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat9cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat9sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat98XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat-MXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat-cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat-sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat-8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat_MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.CreateChartViewCommand" commandName="CreateChartViewCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat_cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat_sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_2l4A8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lat_8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauAMXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauAcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauAsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.MergeCommand" commandName="Merge..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauA8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauBMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauBcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauBsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.releaseJob" commandName="Release Job" description="Release the job" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauB8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauCMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauCcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauCsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.goto.next.bookmark" commandName="Next Bookmark" description="Goto next bookmark of the selected file" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauC8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauDMXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauDcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lauDsXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVAMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_2l2LzcXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lbVAcXQEeOQKtwf9Y2DKA" elementId="plugin" name="Plugin"/> - <parameters xmi:id="_2lbVAsXQEeOQKtwf9Y2DKA" elementId="path" name="Path"/> + <commands xmi:id="_udZSK8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSLMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoPC" commandName="Go to Program Counter" description="Navigate to current program counter" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZSLcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5MMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5McZ5EeOSuo9mkUu2dw" 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="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5MsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5M8Z5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5NMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Annotations" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5NcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5NsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5N8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.updateSwitch" commandName="Switch to Another Branch or Version" description="Switch to Another Branch or Version" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5OMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5OcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5OsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.ReplaceWithRevisionCommand" commandName="URL..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5O8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.uncall" commandName="Uncall" description="Perform Uncall" category="_uefeUcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5PMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5PcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udZ5PsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagQMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.perspective" commandName="PHP" description="Shows the PHP perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagQsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagQ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagRMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagRcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagRsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagR8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagSMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagScZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagSsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udagS8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.CreateChartViewCommand" commandName="CreateChartViewCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHUMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHUcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_uegsecZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHUsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHU8Z5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHVMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHVcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.MergeCommand" commandName="Merge..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHVsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHV8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHWMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHWcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.releaseJob" commandName="Release Job" description="Release the job" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHWsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHW8Z5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbHXMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbuYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.goto.next.bookmark" commandName="Next Bookmark" description="Goto next bookmark of the selected file" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbuYcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbuYsZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbuY8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbuZMZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbuZcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_uedpIcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udbuZsZ5EeOSuo9mkUu2dw" elementId="plugin" name="Plugin"/> + <parameters xmi:id="_udbuZ8Z5EeOSuo9mkUu2dw" elementId="path" name="Path"/> </commands> - <commands xmi:id="_2lbVA8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVBMXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVBcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_2l2LzcXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lbVBsXQEeOQKtwf9Y2DKA" elementId="preferencePageId" name="Preference Page"/> + <commands xmi:id="_udbuaMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbuacZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udbuasZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_uedpIcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udbua8Z5EeOSuo9mkUu2dw" elementId="preferencePageId" name="Preference Page"/> </commands> - <commands xmi:id="_2lbVB8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVCMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy SHA-1" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVCcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVCsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_2l3Z5MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lbVC8XQEeOQKtwf9Y2DKA" elementId="newWizardId" name="New Wizard"/> + <commands xmi:id="_udcVcMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVccZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy SHA-1" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVcsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVc8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_uegFYsZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udcVdMZ5EeOSuo9mkUu2dw" elementId="newWizardId" name="New Wizard"/> </commands> - <commands xmi:id="_2lbVDMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.comment" commandName="Comment" description="Turn the selected lines into // style comments" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVDcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVDsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVD8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.showHistory" commandName="Show History" description="Show History" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVEMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.exportLibraryCommand" commandName="exportLibraryCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVEcXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVEsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.find.word" commandName="Find Word" description="Select a word and find the next occurrence" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVE8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.testing.testingShortcut.run" commandName="Run testing Test" description="Run testing Test" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVFMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.core.ui.command.updateProject" commandName="Update Project" description="Update Maven Project configuration and dependencies" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVFcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVFsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVF8XQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVGMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVGcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVGsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.copyCellContentsCommand" commandName="CopyCellContentsAction" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVG8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.debugAction" commandName="Debug" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVHMXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVHcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lbVHsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_2l4A8MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lb8EMXQEeOQKtwf9Y2DKA" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/> + <commands xmi:id="_udcVdcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.comment" commandName="Comment" description="Turn the selected lines into // style comments" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVdsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVd8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVeMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.showHistory" commandName="Show History" description="Show History" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVecZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.exportLibraryCommand" commandName="exportLibraryCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVesZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVe8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.find.word" commandName="Find Word" description="Select a word and find the next occurrence" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVfMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.testing.testingShortcut.run" commandName="Run testing Test" description="Run testing Test" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udcVfcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.core.ui.command.updateProject" commandName="Update Project" description="Update Maven Project configuration and dependencies" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8gMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8gcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8gsZ5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8g8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8hMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8hcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.copyCellContentsCommand" commandName="CopyCellContentsAction" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8hsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.debugAction" commandName="Debug" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8h8Z5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8iMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8icZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_uegseMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udc8isZ5EeOSuo9mkUu2dw" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/> </commands> - <commands xmi:id="_2lb8EcXQEeOQKtwf9Y2DKA" 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="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8EsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8E8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.reverseStepOver" commandName="Reverse Step Over" description="Perform Reverse Step Over" category="_2l2y3cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8FMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8FcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8FsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.SwitchCommand" commandName="Switch..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8F8XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8GMXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8GcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8GsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8G8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8HMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.BranchCommand" commandName="Branch..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8HcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8HsXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8H8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8IMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_2l4A8MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lb8IcXQEeOQKtwf9Y2DKA" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_udc8i8Z5EeOSuo9mkUu2dw" 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="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8jMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8jcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.reverseStepOver" commandName="Reverse Step Over" description="Perform Reverse Step Over" category="_uefeUcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udc8jsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjkMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjkcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.SwitchCommand" commandName="Switch..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjksZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjk8Z5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjlMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjlcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjlsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjl8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.BranchCommand" commandName="Branch..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjmMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjmcZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjmsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uddjm8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_uegseMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_uddjnMZ5EeOSuo9mkUu2dw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_2lb8IsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.pldt.common.dropDownCommand" commandName="Analysis dropdown menu" category="_2l2y08XQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lb8I8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.pldt.common.dropDownCommand.msg" name="Message" typeId="String"/> + <commands xmi:id="_uddjncZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.pldt.common.dropDownCommand" commandName="Analysis dropdown menu" category="_ueeQNcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_uddjnsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.pldt.common.dropDownCommand.msg" name="Message" typeId="String"/> </commands> - <commands xmi:id="_2lb8JMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8JcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8JsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8J8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8KMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8KcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8KsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.command.libtoolize" commandName="Invoke Libtoolize" description="Run libtoolize in the selected directory" category="_2l2LysXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8K8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8LMXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lb8LcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjIMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjIcXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjIsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjI8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.testing.testingShortcut.rerunFailedFirst" commandName="Rerun testing Test - Failures First" description="Rerun testing Test - Failures First" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjJMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjJcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjJsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.ungroupDebugContexts" commandName="Ungroup" description="Ungroups the selected debug contexts" category="_2l3Z68XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjJ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjKMXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjKcXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjKsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjK8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjLMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.revertToTemplateCommand" commandName="revertToTemplateCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjLcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_2l3Z4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjLsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.sort.lines" commandName="Sort Lines" description="Sort selected lines alphabetically" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjL8XQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjMMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjMcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjMsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.deleteCommand" commandName="deleteCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjM8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjNMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.insertRowCommand" commandName="insertRowCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjNcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CopyUrlCommand" commandName="Copy URL" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjNsXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjN8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjOMXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjOcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjOsXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjO8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjPMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjPcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lcjPsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.pasteAction" commandName="pasteAction" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKMMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKMcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractConstant" commandName="Extract Constant..." category="_2l2Lz8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKMsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKM8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKNMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKNcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.edit.text.move.element" commandName="Move - Refactoring " description="Moves the selected element to a new location" category="_2l2y1cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKNsXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKN8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKOMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.ShowResourceHistoryCommand" commandName="Show History" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKOcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Directory" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKOsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKO8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKPMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKPcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKPsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.testing.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKP8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKQMXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKQcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_2l3Z78XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKQsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKQ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKRMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKRcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.EditTreeConflictsCommand" commandName="Edit Tree Conflicts" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKRsXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKR8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.copyAction" commandName="copyAction" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldKSMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractLocalVariable" commandName="Extract Local Variable..." category="_2l2Lz8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxQMXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxQcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteCurrentAction" commandName="Execute Current Text" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxQsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxQ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.saveTraceData" commandName="Save Trace Data " description="Save Trace Data to File" category="_2l2y4cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxRMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxRcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxRsXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxR8XQEeOQKtwf9Y2DKA" 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="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxSMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxScXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxSsXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2ldxS8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_udeKoMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKocZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKosZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKo8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKpMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKpcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKpsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.command.libtoolize" commandName="Invoke Libtoolize" description="Run libtoolize in the selected directory" category="_uedCFcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKp8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKqMZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKqcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKqsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udeKq8Z5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udexsMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udexscZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.testing.testingShortcut.rerunFailedFirst" commandName="Rerun testing Test - Failures First" description="Rerun testing Test - Failures First" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udexssZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udexs8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udextMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.ungroupDebugContexts" commandName="Ungroup" description="Ungroups the selected debug contexts" category="_uegFacZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udextcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udextsZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udext8Z5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udexuMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udexucZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udexusZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.revertToTemplateCommand" commandName="revertToTemplateCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udexu8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_uegFYMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udfYwMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.sort.lines" commandName="Sort Lines" description="Sort selected lines alphabetically" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udfYwcZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udfYwsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udfYw8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udfYxMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.deleteCommand" commandName="deleteCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udfYxcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udfYxsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.insertRowCommand" commandName="insertRowCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udfYx8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CopyUrlCommand" commandName="Copy URL" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_0MZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_0cZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_0sZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_08Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_1MZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_1cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_1sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_18Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_2MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.pasteAction" commandName="pasteAction" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_2cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udf_2sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractConstant" commandName="Extract Constant..." category="_uedpI8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm4MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm4cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm4sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm48Z5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.edit.text.move.element" commandName="Move - Refactoring " description="Moves the selected element to a new location" category="_uee3QcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm5MZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm5cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm5sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.ShowResourceHistoryCommand" commandName="Show History" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm58Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Directory" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm6MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm6cZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm6sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udgm68Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN8MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.testing.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN8cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN8sZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN88Z5EeOSuo9mkUu2dw" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_uegsc8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN9MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN9cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN9sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN98Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.EditTreeConflictsCommand" commandName="Edit Tree Conflicts" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN-MZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN-cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.copyAction" commandName="copyAction" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN-sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractLocalVariable" commandName="Extract Local Variable..." category="_uedpI8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN-8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udhN_MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteCurrentAction" commandName="Execute Current Text" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1AMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1AcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.saveTraceData" commandName="Save Trace Data " description="Save Trace Data to File" category="_uefeVcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1AsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1A8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1BMZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1BcZ5EeOSuo9mkUu2dw" 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="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1BsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1B8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1CMZ5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udh1CcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_2ldxTMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxTcXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxTsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxT8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxUMXQEeOQKtwf9Y2DKA" 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="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxUcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" commandName="Switch Source/Design Editors" description="Switch between the Source and Design editors." category="_2l2y0sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxUsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxU8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_2l3Z88XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxVMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_2l3Z78XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxVcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxVsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxV8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxWMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="%RebaseInteractiveCurrentHandler.name" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ldxWcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.mat.ui.query.browser.QueryBrowser" commandName="Query Browser" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYUMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.createPlaceHolderCommand" commandName="createPlaceHolderCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYUcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.ReplaceWithBranchCommand" commandName="Branch..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYUsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.opendecl" commandName="Open Declaration" description="Open an editor on the selected element's declaration(s)" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYU8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.debug" commandName="Debug XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYVMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.SetPropertyCommand" commandName="Set Property..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYVcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CompareWithTagCommand" commandName="Tag..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYVsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYV8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYWMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYWcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_2l2y4MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYWsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_2l3Z88XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYW8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewRenameBranch" commandName="Rename Branch..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYXMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CompareTwoSelectedRepositoryResourcesCommand" commandName="Compare" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYXcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYXsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYX8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.insertGroupCommand" commandName="insertGroupCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYYMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYYcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYYsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.search.findrefs" commandName="References" description="Search for references to the selected element in the workspace" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYY8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYZMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYZcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYZsXQEeOQKtwf9Y2DKA" elementId="refresh.schema.editor.action.id" commandName="Refresh from Server" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYZ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYaMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2leYacXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.hover.forwardMacroExpansion" commandName="Forward" description="Step forward in macro expansions" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_YMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.command.autoreconf" commandName="Invoke Autoreconf" description="Run autoreconf from the selected directory" category="_2l2LysXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_YcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_YsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.result.removeInstance" commandName="Remove Result" category="_2l2y1sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_Y8XQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_ZMXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_ZcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_ZsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_Z8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_aMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_2l3Z88XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_acXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_asXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_a8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_bMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_2l3Z88XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_bcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_bsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_b8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_cMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_ccXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_csXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.cancelJob" commandName="Cancel Job" description="Terminate the job" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_c8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_dMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.testing.ResultView" commandName="DLTK Testing" description="Testing" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_dcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pdt.ui.edit.text.php.show.outline" commandName="Quick Outline" description="Shows the quick outline for the editor input" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_dsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.UpdateCommand" commandName="Update" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_d8XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_eMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id To Clipboard" description="Copies the build id to the clipboard." category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2le_ecXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.command.autoconf" commandName="Invoke Autoconf" description="Run autoconf in the selected directory" category="_2l2LysXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmcMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.navigate.opentype" commandName="Open Element" description="Open an element in an Editor" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmccXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmcsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmc8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmdMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmdcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmdsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmd8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmeMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.UnlockCommand" commandName="Unlock..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmecXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lfmesXQEeOQKtwf9Y2DKA" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_udh1CsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udh1C8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicEMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicEcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicEsZ5EeOSuo9mkUu2dw" 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="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicE8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" commandName="Switch Source/Design Editors" description="Switch between the Source and Design editors." category="_ueeQNMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicFMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicFcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_uegsd8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicFsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_uegsc8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicF8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicGMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicGcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicGsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="%RebaseInteractiveCurrentHandler.name" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udicG8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.mat.ui.query.browser.QueryBrowser" commandName="Query Browser" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDIMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.createPlaceHolderCommand" commandName="createPlaceHolderCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDIcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.ReplaceWithBranchCommand" commandName="Branch..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDIsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.opendecl" commandName="Open Declaration" description="Open an editor on the selected element's declaration(s)" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDI8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.debug" commandName="Debug XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDJMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.SetPropertyCommand" commandName="Set Property..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDJcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CompareWithTagCommand" commandName="Tag..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDJsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDJ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDKMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDKcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_uefeVMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDKsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_uegsd8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjDK8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewRenameBranch" commandName="Rename Branch..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqMMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CompareTwoSelectedRepositoryResourcesCommand" commandName="Compare" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqMcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqMsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqM8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.insertGroupCommand" commandName="insertGroupCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqNMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqNcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqNsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.search.findrefs" commandName="References" description="Search for references to the selected element in the workspace" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqN8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqOMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqOcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqOsZ5EeOSuo9mkUu2dw" elementId="refresh.schema.editor.action.id" commandName="Refresh from Server" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqO8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udjqPMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRQMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.hover.forwardMacroExpansion" commandName="Forward" description="Step forward in macro expansions" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.command.autoreconf" commandName="Invoke Autoreconf" description="Run autoreconf from the selected directory" category="_uedCFcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRQsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRQ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.result.removeInstance" commandName="Remove Result" category="_uee3QsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRRMZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRRcZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRRsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRR8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRSMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRScZ5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_uegsd8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRSsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRS8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udkRTMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4UMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_uegsd8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4UcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4UsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4U8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4VMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4VcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4VsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.cancelJob" commandName="Cancel Job" description="Terminate the job" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4V8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4WMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.testing.ResultView" commandName="DLTK Testing" description="Testing" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udk4WcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pdt.ui.edit.text.php.show.outline" commandName="Quick Outline" description="Shows the quick outline for the editor input" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.UpdateCommand" commandName="Update" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfYcZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfYsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id To Clipboard" description="Copies the build id to the clipboard." category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfY8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.command.autoconf" commandName="Invoke Autoconf" description="Run autoconf in the selected directory" category="_uedCFcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfZMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.navigate.opentype" commandName="Open Element" description="Open an element in an Editor" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfZcZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfZsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfZ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfaMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udlfacZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmGcMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmGccZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmGcsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.UnlockCommand" commandName="Unlock..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmGc8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udmGdMZ5EeOSuo9mkUu2dw" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_2lfme8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmfMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmfcXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmfsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmf8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmgMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmgcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmgsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.edit.text.open.editor" commandName="Open Selection" description="Opens an editor with the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmg8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmhMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jst.jsp.ui.refactor.move" commandName="Move" description="Move a Java Element to another package" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmhcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmhsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmh8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.search.finddecl" commandName="Declaration" description="Search for declarations of the selected element in the workspace" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmiMXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lfmicXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNgMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNgcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNgsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.menu.findUnresolvedIncludes" commandName="Search for Unresolved Includes" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNg8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNhMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.discovery.ui" commandName="m2e Marketplace" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNhcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.mat.ui.query.browser.QueryHistory" commandName="Query History" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNhsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.commit" commandName="Commit" description="Commit resources to the repository" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNh8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNiMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNicXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.startMonitor" commandName="Start Monitor" category="_2l3Z5sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNisXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNi8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.toggleCommentAction" commandName="Toggle Comment" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNjMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNjcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNjsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNj8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNkMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.navigate.open.type" commandName="Open Type" description="Open a type in a DLTK editor" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNkcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNksXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.server.ui.phpServerShortcut.run" commandName="Run PHP Web Application" description="Run PHP Web Application" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNk8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNlMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNlcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNlsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNl8XQEeOQKtwf9Y2DKA" elementId="pl.szpinda.plugin.tomcat.commands.tomcatStartStop" commandName="Tomcat start,stop" category="_2l2y48XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lgNmMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0kMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0kcXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0ksXQEeOQKtwf9Y2DKA" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0k8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0lMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.command.automake" commandName="Invoke Automake" description="Run automake from the selected directory" category="_2l2LysXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0lcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0lsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0l8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0mMXQEeOQKtwf9Y2DKA" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0mcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.pldt.openacc.command2" commandName="Find OpenACC Artifacts" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0msXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0m8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.deleteGroupCommand" commandName="deleteGroupCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0nMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.codegen.ecore.ui.Generate" commandName="Generate Code" description="Generate code for the EMF models in the workspace" category="_2l2y0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0ncXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.open.outline" commandName="Show outline" description="Shows outline" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0nsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0n8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0oMXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0ocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0osXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open the call hierarchy for the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0o8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.java.source.quickMenu" commandName="Source Quick Menu" description="Opens the source quick menu" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0pMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0pcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0psXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.connect" commandName="Connect" description="Connect to a process" category="_2l3Z68XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0p8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0qMXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lg0qcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhboMXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbosXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbo8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.comment" commandName="Comment/Uncomment" description="Comment/Uncomment the selected lines" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbpMXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbpcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbpsXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbp8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lhbqMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/> + <commands xmi:id="_udmGdcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmGdsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmGd8Z5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmGeMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmGecZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmtgMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmtgcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmtgsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.edit.text.open.editor" commandName="Open Selection" description="Opens an editor with the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmtg8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmthMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jst.jsp.ui.refactor.move" commandName="Move" description="Move a Java Element to another package" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmthcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmthsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmth8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.search.finddecl" commandName="Declaration" description="Search for declarations of the selected element in the workspace" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmtiMZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmticZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmtisZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmti8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmtjMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.menu.findUnresolvedIncludes" commandName="Search for Unresolved Includes" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udmtjcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUkMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.discovery.ui" commandName="m2e Marketplace" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUkcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.mat.ui.query.browser.QueryHistory" commandName="Query History" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUksZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.commit" commandName="Commit" description="Commit resources to the repository" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUk8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUlMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUlcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.startMonitor" commandName="Start Monitor" category="_uegFZMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUlsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUl8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.toggleCommentAction" commandName="Toggle Comment" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUmMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUmcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUmsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUm8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udnUnMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.navigate.open.type" commandName="Open Type" description="Open a type in a DLTK editor" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7oMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7ocZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.server.ui.phpServerShortcut.run" commandName="Run PHP Web Application" description="Run PHP Web Application" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7osZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7o8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7pMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7pcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7psZ5EeOSuo9mkUu2dw" elementId="pl.szpinda.plugin.tomcat.commands.tomcatStartStop" commandName="Tomcat start,stop" category="_uefeV8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7p8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7qMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7qcZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7qsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7q8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udn7rMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.command.automake" commandName="Invoke Automake" description="Run automake from the selected directory" category="_uedCFcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoisMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoiscZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoissZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udois8Z5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoitMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.pldt.openacc.command2" commandName="Find OpenACC Artifacts" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoitcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoitsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.deleteGroupCommand" commandName="deleteGroupCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoit8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.codegen.ecore.ui.Generate" commandName="Generate Code" description="Generate code for the EMF models in the workspace" category="_ueeQM8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoiuMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.open.outline" commandName="Show outline" description="Shows outline" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoiucZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udoiusZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpJwMZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpJwcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpJwsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open the call hierarchy for the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpJw8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.java.source.quickMenu" commandName="Source Quick Menu" description="Opens the source quick menu" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpJxMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpJxcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpJxsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.connect" commandName="Connect" description="Connect to a process" category="_uegFacZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpJx8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpw0MZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpw0cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpw0sZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpw08Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpw1MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpw1cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.comment" commandName="Comment/Uncomment" description="Comment/Uncomment the selected lines" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpw1sZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udpw18Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udqX4MZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udqX4cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udqX4sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/> </commands> - <commands xmi:id="_2lhbqcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbqsXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbq8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.targetBuildCommand" commandName="Make Target Build" description="Invoke a make target build for the selected container." category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbrMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbrcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.item.crosstab.ui.createCrosstab" commandName="Create Crosstab" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbrsXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbr8XQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbsMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbscXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbssXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbs8XQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbtMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbtcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_2l3Z8cXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lhbtsXQEeOQKtwf9Y2DKA" elementId="cheatSheetId" name="Identifier"/> + <commands xmi:id="_udqX48Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udqX5MZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udqX5cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.targetBuildCommand" commandName="Make Target Build" description="Invoke a make target build for the selected container." category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udqX5sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udqX58Z5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.item.crosstab.ui.createCrosstab" commandName="Create Crosstab" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udq-8MZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udq-8cZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udq-8sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udq-88Z5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udq-9MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udq-9cZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udq-9sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udrmAMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_uegsdcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udrmAcZ5EeOSuo9mkUu2dw" elementId="cheatSheetId" name="Identifier"/> </commands> - <commands xmi:id="_2lhbt8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.saveAsTemplateAction" commandName="Save as Template" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lhbuMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCsMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCscXQEeOQKtwf9Y2DKA" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_2l3Z8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCssXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.castToArray" commandName="Cast To Type..." category="_2l2y2MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCs8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCtMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCtcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.internal.ui.views.createVariable" commandName="%Command.Name.CreateVariable" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCtsXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCt8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.core.ui.command.addDependency" commandName="Add Maven Dependency" description="Add Maven Dependency" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCuMXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCucXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCusXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.MarkAsMergedCommand" commandName="Mark as Merged" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCu8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.stopMonitor" commandName="Stop Monitor" category="_2l3Z5sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCvMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCvcXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCvsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCv8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.format" commandName="Format" description="Format Source Code" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCwMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCwcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.wsdl.ui.refactor.rename.element" commandName="Rename WSDL component" description="Renames WSDL component" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCwsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCw8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCxMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.generate.xml" commandName="&XML File..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCxcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCxsXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCx8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2liCyMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.comment" commandName="Comment" description="Turn the selected lines into DLTK comments" category="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipwMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.ExportCommand" commandName="Export..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipwcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipwsXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipw8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.item.crosstab.ui.createCube" commandName="Create Cube" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipxMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipxcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_2l2y2cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipxsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipx8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.RevertCommand" commandName="Revert..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipyMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipycXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipysXQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_2l3Z88XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipy8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.rulerToggleBreakpoint" commandName="Toggle Breakpoint" description="Toggle breakpoint in disassembly ruler" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipzMXQEeOQKtwf9Y2DKA" 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="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipzcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipzsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lipz8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_2l4A8MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lip0MXQEeOQKtwf9Y2DKA" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/> + <commands xmi:id="_udrmAsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.saveAsTemplateAction" commandName="Save as Template" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udrmA8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udrmBMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udrmBcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_uegsdsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udrmBsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.castToArray" commandName="Cast To Type..." category="_uee3RMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udrmB8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udrmCMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNEMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.internal.ui.views.createVariable" commandName="%Command.Name.CreateVariable" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNEcZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNEsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.core.ui.command.addDependency" commandName="Add Maven Dependency" description="Add Maven Dependency" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNE8Z5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNFMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNFcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.MarkAsMergedCommand" commandName="Mark as Merged" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNFsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.stopMonitor" commandName="Stop Monitor" category="_uegFZMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNF8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNGMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udsNGcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0IMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.format" commandName="Format" description="Format Source Code" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0IcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0IsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.wsdl.ui.refactor.rename.element" commandName="Rename WSDL component" description="Renames WSDL component" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0I8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0JMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0JcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.generate.xml" commandName="&XML File..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0JsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0J8Z5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0KMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uds0KcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.comment" commandName="Comment" description="Turn the selected lines into DLTK comments" category="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbMMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.ExportCommand" commandName="Export..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbMcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbMsZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbM8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.item.crosstab.ui.createCube" commandName="Create Cube" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbNMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbNcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_uee3RcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbNsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbN8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.RevertCommand" commandName="Revert..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbOMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbOcZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbOsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_uegsd8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbO8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.rulerToggleBreakpoint" commandName="Toggle Breakpoint" description="Toggle breakpoint in disassembly ruler" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udtbPMZ5EeOSuo9mkUu2dw" 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="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCQMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCQsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_uegseMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_uduCQ8Z5EeOSuo9mkUu2dw" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/> </commands> - <commands xmi:id="_2lip0cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.refactor.implement.method" commandName="Implement Method - Source Generation " description="Implements a method for a selected method declaration" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lip0sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.testing.testingShortcut.debug" commandName="Debug testing Test" description="Debug testing Test" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lip08XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.AddToSVNCommand" commandName="Add to Version Control..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lip1MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lip1cXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lip1sXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lip18XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lip2MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.ReplaceWithTagCommand" commandName="Tag..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ0MXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ0cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pdt.ui.edit.text.select.enclosing" commandName="Select Enclosing Element" description="Expands selection to include enclosing element" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ0sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_2l3Z6cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ08XQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ1MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ1cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.showAnnotation" commandName="Show Annotation" description="Show Annotation" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ1sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ18XQEeOQKtwf9Y2DKA" 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="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ2MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ2cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.replace" commandName="Replace With Latest from Repository" description="Replace with last committed content from CVS Server" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ2sXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ28XQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.deleteRowCommand" commandName="deleteRowCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ3MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ3cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ3sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ38XQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.actions.LifeCycleTest.run" commandName="Run Maven Test" description="Run Maven Test" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ4MXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ4cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ4sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ48XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.source.header" commandName="Toggle Source/Header" description="Toggles between corresponding source and header files" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ5MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ5cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ5sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ58XQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSelectionAction" commandName="Execute Selected Text" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ljQ6MXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj34MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj34cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.insertCommand" commandName="insertCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj34sXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj348XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj35MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_2l2L0cXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lj35cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.showView.viewId" name="View"/> - <parameters xmi:id="_2lj35sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/> - <parameters xmi:id="_2lj358XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/> + <commands xmi:id="_uduCRMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.refactor.implement.method" commandName="Implement Method - Source Generation " description="Implements a method for a selected method declaration" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCRcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.testing.testingShortcut.debug" commandName="Debug testing Test" description="Debug testing Test" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCRsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.AddToSVNCommand" commandName="Add to Version Control..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCR8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCSMZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCScZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCSsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uduCS8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.ReplaceWithTagCommand" commandName="Tag..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupUMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupUcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pdt.ui.edit.text.select.enclosing" commandName="Select Enclosing Element" description="Expands selection to include enclosing element" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupUsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_uegFZ8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupU8Z5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupVMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupVcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.showAnnotation" commandName="Show Annotation" description="Show Annotation" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupVsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupV8Z5EeOSuo9mkUu2dw" 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="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupWMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupWcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.replace" commandName="Replace With Latest from Repository" description="Replace with last committed content from CVS Server" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udupWsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.deleteRowCommand" commandName="deleteRowCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQYcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQYsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQY8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQZMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.actions.LifeCycleTest.run" commandName="Run Maven Test" description="Run Maven Test" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQZcZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQZsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQZ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQaMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.source.header" commandName="Toggle Source/Header" description="Toggles between corresponding source and header files" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQacZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udvQasZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udv3cMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udv3ccZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSelectionAction" commandName="Execute Selected Text" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udv3csZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udv3c8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udv3dMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.insertCommand" commandName="insertCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udv3dcZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udv3dsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udv3d8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_uedpJcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udv3eMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.viewId" name="View"/> + <parameters xmi:id="_udwegMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/> + <parameters xmi:id="_udwegcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/> </commands> - <commands xmi:id="_2lj36MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.copycolumn" commandName="Copy" category="_2l2LzMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj36cXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj36sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteAsOneStatementAction" commandName="Execute Selected Text As One Statement" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj368XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_2l2y0sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj37MXQEeOQKtwf9Y2DKA" 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="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj37cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.codan.commands.runCodanCommand" commandName="Run Code Analysis" category="_2l3Z4MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj37sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_2l2Lz8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj378XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj38MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj38cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to" description="Go to a particular resource in the active view" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj38sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Git Index with HEAD Revision" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj388XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj39MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj39cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj39sXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj398XQEeOQKtwf9Y2DKA" 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="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lj3-MXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lke8MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.cutCommand" commandName="cutCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lke8cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CopyCommand" commandName="Copy To..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lke8sXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lke88XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_2l3Z6sXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lke9MXQEeOQKtwf9Y2DKA" elementId="title" name="Title"/> - <parameters xmi:id="_2lke9cXQEeOQKtwf9Y2DKA" elementId="message" name="Message"/> - <parameters xmi:id="_2lke9sXQEeOQKtwf9Y2DKA" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/> - <parameters xmi:id="_2lke98XQEeOQKtwf9Y2DKA" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/> - <parameters xmi:id="_2lke-MXQEeOQKtwf9Y2DKA" elementId="buttonLabel0" name="First Button Label"/> - <parameters xmi:id="_2lke-cXQEeOQKtwf9Y2DKA" elementId="buttonLabel1" name="Second Button Label"/> - <parameters xmi:id="_2lke-sXQEeOQKtwf9Y2DKA" elementId="buttonLabel2" name="Third Button Label"/> - <parameters xmi:id="_2lke-8XQEeOQKtwf9Y2DKA" elementId="buttonLabel3" name="Fourth Button Label"/> - <parameters xmi:id="_2lke_MXQEeOQKtwf9Y2DKA" elementId="cancelReturns" name="Return Value on Cancel"/> + <commands xmi:id="_udwegsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.copycolumn" commandName="Copy" category="_uedpIMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udweg8Z5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udwehMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteAsOneStatementAction" commandName="Execute Selected Text As One Statement" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udwehcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_ueeQNMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udwehsZ5EeOSuo9mkUu2dw" 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="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udweh8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.codan.commands.runCodanCommand" commandName="Run Code Analysis" category="_uefeWMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udweiMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_uedpI8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udweicZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udweisZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFkMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to" description="Go to a particular resource in the active view" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFkcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Git Index with HEAD Revision" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFksZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFk8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFlMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFlcZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFlsZ5EeOSuo9mkUu2dw" 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="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFl8Z5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFmMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.cutCommand" commandName="cutCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFmcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CopyCommand" commandName="Copy To..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFmsZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxFm8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_uegFaMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_udxFnMZ5EeOSuo9mkUu2dw" elementId="title" name="Title"/> + <parameters xmi:id="_udxsoMZ5EeOSuo9mkUu2dw" elementId="message" name="Message"/> + <parameters xmi:id="_udxsocZ5EeOSuo9mkUu2dw" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/> + <parameters xmi:id="_udxsosZ5EeOSuo9mkUu2dw" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/> + <parameters xmi:id="_udxso8Z5EeOSuo9mkUu2dw" elementId="buttonLabel0" name="First Button Label"/> + <parameters xmi:id="_udxspMZ5EeOSuo9mkUu2dw" elementId="buttonLabel1" name="Second Button Label"/> + <parameters xmi:id="_udxspcZ5EeOSuo9mkUu2dw" elementId="buttonLabel2" name="Third Button Label"/> + <parameters xmi:id="_udxspsZ5EeOSuo9mkUu2dw" elementId="buttonLabel3" name="Fourth Button Label"/> + <parameters xmi:id="_udxsp8Z5EeOSuo9mkUu2dw" elementId="cancelReturns" name="Return Value on Cancel"/> </commands> - <commands xmi:id="_2lke_cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.rerunJob" commandName="Rerun Job" description="Resend the interactive job commands" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lke_sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lke_8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lkfAMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.open.include.browser" commandName="Open Include Browser" description="Open an include browser on the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lkfAcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.add" commandName="Add to Version Control" description="Add the Selected Resources to Version Control" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lkfAsXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lkfA8XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lkfBMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CompareWithLatestRevisionCommand" commandName="Latest from Repository" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lkfBcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lkfBsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.opendecl" commandName="Open declaration" description="Follow to the directive definition" category="_2l2L0sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lkfB8XQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGAMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGAcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGAsXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGA8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.replaceWithBase" commandName="Revert to Base" description="Revert to Base revisions" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGBMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.AddRevisionLinkCommand" commandName="Add Revision Link..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGBcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.debug.ui.commands.ScriptWatch" commandName="Watch" description="Create new watch expression" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGBsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.menu.createParserLog" commandName="Create Parser Log File" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGB8XQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGCMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGCcXQEeOQKtwf9Y2DKA" 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="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGCsXQEeOQKtwf9Y2DKA" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGC8XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGDMXQEeOQKtwf9Y2DKA" 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="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGDcXQEeOQKtwf9Y2DKA" 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="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGDsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pdt.ui.edit.text.select.last" commandName="Restore Last Selection" description="Restores last selection" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGD8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGEMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.edit.text.php.open.manual" commandName="Open manual" description="Open function manual in an internal web browser" category="_2l3Z8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGEcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGEsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGE8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CompareRepositoryWithTagCommand" commandName="Compare With Tag..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGFMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.connectivity.commands.export" commandName="Export Profiles Command" description="Command to export connection profiles" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGFcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewRefresh" commandName="Refresh" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2llGFsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_2l3Z8cXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2llGF8XQEeOQKtwf9Y2DKA" elementId="cheatSheetId" name="Identifier" optional="false"/> - <parameters xmi:id="_2llGGMXQEeOQKtwf9Y2DKA" elementId="name" name="Name" optional="false"/> - <parameters xmi:id="_2lltEMXQEeOQKtwf9Y2DKA" elementId="url" name="URL" optional="false"/> + <commands xmi:id="_udxsqMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.rerunJob" commandName="Rerun Job" description="Resend the interactive job commands" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxsqcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxsqsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udxsq8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.open.include.browser" commandName="Open Include Browser" description="Open an include browser on the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTsMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.add" commandName="Add to Version Control" description="Add the Selected Resources to Version Control" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTscZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTssZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTs8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CompareWithLatestRevisionCommand" commandName="Latest from Repository" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTtMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTtcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.opendecl" commandName="Open declaration" description="Follow to the directive definition" category="_ueeQMMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTtsZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTt8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTuMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTucZ5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udyTusZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.replaceWithBase" commandName="Revert to Base" description="Revert to Base revisions" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6wMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.AddRevisionLinkCommand" commandName="Add Revision Link..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6wcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.debug.ui.commands.ScriptWatch" commandName="Watch" description="Create new watch expression" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6wsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.menu.createParserLog" commandName="Create Parser Log File" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6w8Z5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6xMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6xcZ5EeOSuo9mkUu2dw" 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="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6xsZ5EeOSuo9mkUu2dw" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6x8Z5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6yMZ5EeOSuo9mkUu2dw" 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="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6ycZ5EeOSuo9mkUu2dw" 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="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udy6ysZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pdt.ui.edit.text.select.last" commandName="Restore Last Selection" description="Restores last selection" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udzh0MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udzh0cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.edit.text.php.open.manual" commandName="Open manual" description="Open function manual in an internal web browser" category="_uegsdMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udzh0sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udzh08Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udzh1MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CompareRepositoryWithTagCommand" commandName="Compare With Tag..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_udzh1cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.connectivity.commands.export" commandName="Export Profiles Command" description="Command to export connection profiles" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0I4MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewRefresh" commandName="Refresh" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0I4cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_uegsdcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ud0I4sZ5EeOSuo9mkUu2dw" elementId="cheatSheetId" name="Identifier" optional="false"/> + <parameters xmi:id="_ud0I48Z5EeOSuo9mkUu2dw" elementId="name" name="Name" optional="false"/> + <parameters xmi:id="_ud0I5MZ5EeOSuo9mkUu2dw" elementId="url" name="URL" optional="false"/> </commands> - <commands xmi:id="_2lltEcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.editCommand" commandName="editCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltEsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.DisconnectCommand" commandName="Disconnect" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltE8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.lockToolBar" commandName="Lock the Toolbars" description="Lock the Toolbars" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltFMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltFcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltFsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectNextTraceRecord" commandName="Next Trace Record" description="Select Next Trace Record" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltF8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_2l3Z5MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lltGMXQEeOQKtwf9Y2DKA" elementId="importWizardId" name="Import Wizard"/> + <commands xmi:id="_ud0I5cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.editCommand" commandName="editCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0I5sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.DisconnectCommand" commandName="Disconnect" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0I58Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.lockToolBar" commandName="Lock the Toolbars" description="Lock the Toolbars" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0I6MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0v8MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0v8cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectNextTraceRecord" commandName="Next Trace Record" description="Select Next Trace Record" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0v8sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_uegFYsZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ud0v88Z5EeOSuo9mkUu2dw" elementId="importWizardId" name="Import Wizard"/> </commands> - <commands xmi:id="_2lltGcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltGsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltG8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltHMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltHcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.update" commandName="Update" description="Update resources with new content from the repository" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltHsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.add.include" commandName="Add Include" description="Create include statement on selection" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltH8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.pdt.ui.edit.text.select.previous" commandName="Select Previous Element" description="Expands selection to include previous sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltIMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltIcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltIsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.RenameBranch" commandName="Rename Branch..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltI8XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltJMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltJcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lltJsXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUIMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUIcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUIsXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUI8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUJMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUJcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUJsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUJ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUKMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUKcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUKsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUK8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_2l3Z5MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lmULMXQEeOQKtwf9Y2DKA" elementId="exportWizardId" name="Export Wizard"/> + <commands xmi:id="_ud0v9MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0v9cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0v9sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0v98Z5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0v-MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.update" commandName="Update" description="Update resources with new content from the repository" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud0v-cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.add.include" commandName="Add Include" description="Create include statement on selection" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XAMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pdt.ui.edit.text.select.previous" commandName="Select Previous Element" description="Expands selection to include previous sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XAcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XAsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XA8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.RenameBranch" commandName="Rename Branch..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XBMZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XBcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XBsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XB8Z5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XCMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1XCcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1-EMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1-EcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1-EsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1-E8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1-FMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1-FcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1-FsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud1-F8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud2lIMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud2lIcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_uegFYsZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ud2lIsZ5EeOSuo9mkUu2dw" elementId="exportWizardId" name="Export Wizard"/> </commands> - <commands xmi:id="_2lmULcXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmULsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.command.breakpointProperties" commandName="C/C++ Breakpoint Properties" description="View and edit properties for a given C/C++ breakpoint" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUL8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUMMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_2l4A8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUMcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.ScanLocksCommand" commandName="Scan Locks" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUMsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lmUM8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/> + <commands xmi:id="_ud2lI8Z5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud2lJMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.command.breakpointProperties" commandName="C/C++ Breakpoint Properties" description="View and edit properties for a given C/C++ breakpoint" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud2lJcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud2lJsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_uegsecZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud2lJ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.ScanLocksCommand" commandName="Scan Locks" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3MMMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ud3MMcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/> </commands> - <commands xmi:id="_2lmUNMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUNcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUNsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lmUN8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7MMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7McXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7MsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7M8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7NMXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lm7NcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_ud3MMsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3MM8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3MNMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3MNcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3MNsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3MN8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3MOMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3MOcZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3MOsZ5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ud3zQMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_2lm7NsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7N8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.SetKeywordsCommand" commandName="Set Keywords..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7OMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7OcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.navigate.open.type" commandName="Open Type" description="Opens a type in a PHP editor" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7OsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7O8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7PMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7PcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.refactor.hide.method" commandName="Hide Member Function..." category="_2l2Lz8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7PsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7P8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.holdJob" commandName="Hold Job" description="Hold the job" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7QMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7QcXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7QsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.quick.format" commandName="Format Element" description="Format enclosing text element" category="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7Q8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7RMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7RcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lm7RsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniQMXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniQcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniQsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.pldt.openmp.core.command2" commandName="Show OpenMP artifacts" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniQ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.UpgradeProjectsCommand" commandName="Upgrade Projects..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniRMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniRcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniRsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniR8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.debug.ui.commands.ScriptInspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniSMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Git Index" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniScXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.SynchronizeCommand" commandName="Synchronize with Repository" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniSsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.open.quick.macro.explorer" commandName="Explore Macro Expansion" description="Opens a quick view for macro expansion exploration" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniS8XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniTMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniTcXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniTsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.castToType" commandName="Cast To Type..." category="_2l2y2MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniT8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniUMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniUcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.EditPropertiesCommand" commandName="Show Properties" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniUsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniU8XQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniVMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniVcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lniVsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJUMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJUcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Annotations" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJUsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJU8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJVMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Recenter the window based on the cursor" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJVcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.restoreDefaultType" commandName="Restore Original Type" description="View and edit properties for a given C/C++ breakpoint" category="_2l2y2MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJVsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.editStyleCommand" commandName="editStyleCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJV8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.tag" commandName="Tag as Version" description="Tag the resources with a CVS version tag" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJWMXQEeOQKtwf9Y2DKA" 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="_2l2y38XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJWcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJWsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CompareRepositoryWithBranchCommand" commandName="Compare With Branch..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJW8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJXMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.publishToLibraryCommand" commandName="publishToLibraryCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJXcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJXsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJX8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJYMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.format" commandName="Format" description="Format the selected text" category="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJYcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJYsXQEeOQKtwf9Y2DKA" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJY8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJZMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJZcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2loJZsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_2l4A8MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lowYMXQEeOQKtwf9Y2DKA" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_ud3zQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3zQsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.SetKeywordsCommand" commandName="Set Keywords..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3zQ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3zRMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.navigate.open.type" commandName="Open Type" description="Opens a type in a PHP editor" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3zRcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3zRsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3zR8Z5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3zSMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.refactor.hide.method" commandName="Hide Member Function..." category="_uedpI8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud3zScZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aUMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.holdJob" commandName="Hold Job" description="Hold the job" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aUcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aUsZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aU8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.quick.format" commandName="Format Element" description="Format enclosing text element" category="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aVMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aVcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aVsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aV8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aWMZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aWcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud4aWsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.pldt.openmp.core.command2" commandName="Show OpenMP artifacts" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.UpgradeProjectsCommand" commandName="Upgrade Projects..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BYcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BYsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BY8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BZMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.debug.ui.commands.ScriptInspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BZcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Git Index" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BZsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.SynchronizeCommand" commandName="Synchronize with Repository" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BZ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.open.quick.macro.explorer" commandName="Explore Macro Expansion" description="Opens a quick view for macro expansion exploration" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BaMZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5BacZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5ocMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5occZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.castToType" commandName="Cast To Type..." category="_uee3RMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5ocsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5oc8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5odMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.EditPropertiesCommand" commandName="Show Properties" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5odcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5odsZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5od8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud5oeMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6PgMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6PgcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6PgsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Annotations" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6Pg8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6PhMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6PhcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Recenter the window based on the cursor" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6PhsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.restoreDefaultType" commandName="Restore Original Type" description="View and edit properties for a given C/C++ breakpoint" category="_uee3RMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6Ph8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.editStyleCommand" commandName="editStyleCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6PiMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.tag" commandName="Tag as Version" description="Tag the resources with a CVS version tag" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud6PicZ5EeOSuo9mkUu2dw" 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="_uefeU8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62kMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62kcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CompareRepositoryWithBranchCommand" commandName="Compare With Branch..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62ksZ5EeOSuo9mkUu2dw" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62k8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.publishToLibraryCommand" commandName="publishToLibraryCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62lMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62lcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62lsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62l8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.format" commandName="Format" description="Format the selected text" category="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62mMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62mcZ5EeOSuo9mkUu2dw" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud62msZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7doMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7docZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7dosZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_uegseMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ud7do8Z5EeOSuo9mkUu2dw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_2lowYcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_2l2y38XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowYsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowY8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.refreshMonitor" commandName="Refresh Monitor" category="_2l3Z5sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowZMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowZcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowZsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowZ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSQLAction" commandName="Execute All" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowaMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.menu.rebuildIndex" commandName="Rebuild Index" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowacXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Git Index" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowasXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.revision.graph.command.ShowRevisionGraphCommand" commandName="Show Revision Graph..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowa8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowbMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.customizePerspective" commandName="Customize Perspective" description="Customize the current perspective" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowbcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowbsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.organize.includes" commandName="Organize Includes" description="Evaluates all required includes and replaces the current includes" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowb8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowcMXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowccXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Checkout" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowcsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowc8XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowdMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.editBindingCommand" commandName="editBindingCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowdcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.commands.openscrapbook" commandName="Open SQL Scrapboo&k" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lowdsXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXcMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method in its hierarchy" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXccXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.uncomment" commandName="Uncomment" description="Uncomment the selected DLTK comment lines" category="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXcsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXc8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXdMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXdcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.applyStyleCommand" commandName="applyStyleCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXdsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.ReplaceWithLatestRevisionCommand" commandName="Latest from Repository" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXd8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXeMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXecXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXesXQEeOQKtwf9Y2DKA" 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="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXe8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_2l3Z88XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXfMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXfcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXfsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Push" commandName="Push" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXf8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_2l3Z88XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXgMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXgcXQEeOQKtwf9Y2DKA" 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="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXgsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXg8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.xml.commands.empty" commandName="Empty command" description="Command which does nothing" category="_2l2y0sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXhMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXhcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lpXhsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.deleteConfigsCommand" commandName="Reset to Default" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-gMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-gcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.suspendJob" commandName="Suspend Job" description="Suspend the job" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-gsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-g8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.connectivity.commands.addprofile" commandName="New Connection Profile Command" description="Command to create a new connection profile" category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lp-hMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.connectivity.ui.ignoreCategory" name="ignoreCategory"/> - <parameters xmi:id="_2lp-hcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.connectivity.ui.useSelection" name="useSelection"/> + <commands xmi:id="_ud7dpMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_uefeU8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7dpcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7dpsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.refreshMonitor" commandName="Refresh Monitor" category="_uegFZMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7dp8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7dqMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7dqcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7dqsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSQLAction" commandName="Execute All" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud7dq8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.menu.rebuildIndex" commandName="Rebuild Index" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8EsMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Git Index" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8EscZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.revision.graph.command.ShowRevisionGraphCommand" commandName="Show Revision Graph..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8EssZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8Es8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.customizePerspective" commandName="Customize Perspective" description="Customize the current perspective" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8EtMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8EtcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.organize.includes" commandName="Organize Includes" description="Evaluates all required includes and replaces the current includes" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8EtsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8Et8Z5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8EuMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Checkout" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8EucZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8EusZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8rwMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.editBindingCommand" commandName="editBindingCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8rwcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.commands.openscrapbook" commandName="Open SQL Scrapboo&k" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8rwsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8rw8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method in its hierarchy" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8rxMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.uncomment" commandName="Uncomment" description="Uncomment the selected DLTK comment lines" category="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8rxcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8rxsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8rx8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud8ryMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.applyStyleCommand" commandName="applyStyleCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud9S0MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.ReplaceWithLatestRevisionCommand" commandName="Latest from Repository" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud9S0cZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud9S0sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud9S08Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud9S1MZ5EeOSuo9mkUu2dw" 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="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud9S1cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_uegsd8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud9S1sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud9S18Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud954MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Push" commandName="Push" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud954cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_uegsd8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud954sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud9548Z5EeOSuo9mkUu2dw" 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="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud-g8MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud-g8cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.xml.commands.empty" commandName="Empty command" description="Command which does nothing" category="_ueeQNMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud-g8sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud-g88Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud-g9MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.deleteConfigsCommand" commandName="Reset to Default" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud-g9cZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud-g9sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.suspendJob" commandName="Suspend Job" description="Suspend the job" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud-g98Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_IAMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.connectivity.commands.addprofile" commandName="New Connection Profile Command" description="Command to create a new connection profile" category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ud_IAcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.connectivity.ui.ignoreCategory" name="ignoreCategory"/> + <parameters xmi:id="_ud_IAsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.connectivity.ui.useSelection" name="useSelection"/> </commands> - <commands xmi:id="_2lp-hsXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-h8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-iMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.refactor.toggle.function" commandName="Toggle Function - Refactoring " description="Toggles the implementation between header and implementation file" category="_2l2Lz8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-icXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.testing.testingShortcut.rerunLast" commandName="Rerun testing Test" description="Rerun testing Test" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-isXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-i8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-jMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-jcXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-jsXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-j8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-kMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.connectivity.commands.addrepository" commandName="New Repository Profile Command" description="Command to create a new repository profile" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-kcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-ksXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-k8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.run" commandName="Run XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-lMXQEeOQKtwf9Y2DKA" 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="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lp-lcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlkMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.result.removeAllInstances" commandName="Remove All Visible Results" category="_2l2y1sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlkcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlksXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlk8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.actions.LifeCycleClean.run" commandName="Run Maven Clean" description="Run Maven Clean" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqllMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqllcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.splitCommand" commandName="splitCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqllsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.command.autoheader" commandName="Invoke Autoheader" description="Run autoheader from the selected directory" category="_2l2LysXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqll8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlmMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlmcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlmsXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlm8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.insertColumnCommand" commandName="insertColumnCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlnMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlncXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.pastecolumn" commandName="Paste" category="_2l2LzMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlnsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqln8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_2l2y0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqloMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.targetBuildLastCommand" commandName="Rebuild Last Target" description="Rebuild the last make target for the selected container or project." category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlosXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlo8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CommitCommand" commandName="Commit..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlpMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.debugNewExecutable" commandName="Debug New Executable" description="Debug a new executable" category="_2l3Z68XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlpcXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lqlpsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMoMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lrMocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/> - <parameters xmi:id="_2lrMosXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/> + <commands xmi:id="_ud_IA8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_IBMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_IBcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.refactor.toggle.function" commandName="Toggle Function - Refactoring " description="Toggles the implementation between header and implementation file" category="_uedpI8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_IBsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.testing.testingShortcut.rerunLast" commandName="Rerun testing Test" description="Rerun testing Test" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_IB8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_ICMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_vEMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_vEcZ5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_vEsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_vE8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_vFMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.connectivity.commands.addrepository" commandName="New Repository Profile Command" description="Command to create a new repository profile" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_vFcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_vFsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_vF8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.run" commandName="Run XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ud_vGMZ5EeOSuo9mkUu2dw" 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="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWIMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWIcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.result.removeAllInstances" commandName="Remove All Visible Results" category="_uee3QsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWIsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWI8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWJMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.actions.LifeCycleClean.run" commandName="Run Maven Clean" description="Run Maven Clean" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWJcZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWJsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.splitCommand" commandName="splitCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWJ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.command.autoheader" commandName="Invoke Autoheader" description="Run autoheader from the selected directory" category="_uedCFcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWKMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWKcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueAWKsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9MMZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9McZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.insertColumnCommand" commandName="insertColumnCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9MsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9M8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.pastecolumn" commandName="Paste" category="_uedpIMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9NMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9NcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_ueeQMsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9NsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.targetBuildLastCommand" commandName="Rebuild Last Target" description="Rebuild the last make target for the selected container or project." category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9N8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9OMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9OcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CommitCommand" commandName="Commit..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9OsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.debugNewExecutable" commandName="Debug New Executable" description="Debug a new executable" category="_uegFacZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueA9O8Z5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkQMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueBkQsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/> + <parameters xmi:id="_ueBkQ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/> </commands> - <commands xmi:id="_2lrMo8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMpMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMpcXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMpsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMp8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMqMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.command.aclocal" commandName="Invoke Aclocal" description="Run aclocal from the selected directory" category="_2l2LysXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMqcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.stopTracing" commandName="Stop Tracing " description="Stop Tracing Experiment" category="_2l2y4cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMqsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMq8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMrMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMrcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_2l3Z6cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMrsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Git Index" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMr8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMsMXQEeOQKtwf9Y2DKA" 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="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMscXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMssXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMs8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.uncomment" commandName="Uncomment" description="Uncomment the selected # style comment lines" category="_2l2L0sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrMtMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lrMtcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/> + <commands xmi:id="_ueBkRMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkRcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkRsZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkR8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkSMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkScZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.command.aclocal" commandName="Invoke Aclocal" description="Run aclocal from the selected directory" category="_uedCFcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkSsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.stopTracing" commandName="Stop Tracing " description="Stop Tracing Experiment" category="_uefeVcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkS8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueBkTMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLUMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLUcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_uegFZ8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLUsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Git Index" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLU8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLVMZ5EeOSuo9mkUu2dw" 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="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLVcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLVsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLV8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.uncomment" commandName="Uncomment" description="Uncomment the selected # style comment lines" category="_ueeQMMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLWMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueCLWcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/> </commands> - <commands xmi:id="_2lrzsMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.TagCommand" commandName="Tag..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzscXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzssXQEeOQKtwf9Y2DKA" 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="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzs8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrztMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_2l4A8MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lrztcXQEeOQKtwf9Y2DKA" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_ueCLWsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.TagCommand" commandName="Tag..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLW8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLXMZ5EeOSuo9mkUu2dw" 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="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCLXcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCyYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_uegseMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueCyYcZ5EeOSuo9mkUu2dw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_2lrztsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.resumeJob" commandName="Resume Job" description="Resume the job" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzt8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzuMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_2l2y4MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzucXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_2l3Z8cXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lrzusXQEeOQKtwf9Y2DKA" elementId="href" name="Help topic href"/> + <commands xmi:id="_ueCyYsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.resumeJob" commandName="Resume Job" description="Resume the job" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCyY8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCyZMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_uefeVMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCyZcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_uegsdcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueCyZsZ5EeOSuo9mkUu2dw" elementId="href" name="Help topic href"/> </commands> - <commands xmi:id="_2lrzu8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jst.jsp.ui.refactor.rename" commandName="Rename" description="Rename a Java Element" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzvMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzvcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzvsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzv8XQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzwMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.commitAll" commandName="Commit All Outgoing Changes" description="Commit all outgoing changes to the repository" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzwcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzwsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.cvsPerspective" commandName="CVS Repository Exploring" description="Open the CVS Repository Exploring Perspective" category="_2l2LyMXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzw8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzxMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lrzxcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.removeMonitor" commandName="Remove Monitor" category="_2l3Z5sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsawMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsawcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsawsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsaw8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsaxMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsaxcXQEeOQKtwf9Y2DKA" 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="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsaxsXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsax8XQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsayMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsaycXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsaysXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsay8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsazMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.checkout" commandName="Checkout from CVS" description="Checkout from CVS" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsazcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsazsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsaz8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsa0MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.SetExternalDefinitionCommand" commandName="Set External Definition..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsa0cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.compareWithRemote" commandName="Compare With Latest from Repository" description="Compare with Content on CVS Server" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsa0sXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsa08XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.pldt.mpi.core.command2" commandName="find mpi artifacts" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsa1MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsa1cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lsa1sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB0MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.commands.empty" commandName="Empty command" description="Command which does nothing" category="_2l2y0sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB0cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB0sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB08XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.menu.updateUnresolvedIncludes" commandName="Re-resolve Unresolved Includes" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB1MXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB1cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB1sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB18XQEeOQKtwf9Y2DKA" 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="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB2MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB2cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.core.ui.command.openPom" commandName="Open Maven POM" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB2sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB28XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.replaceWithRevision" commandName="Replace With Revision" description="Replace with Revision on CVS Server" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB3MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.connectivity.commands.showcategory" commandName="Show Category" description="Show Category" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB3cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.compareWithRevision" commandName="Compare With Revision" description="Compare with Revision on CVS Server" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB3sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB38XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB4MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB4cXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB4sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2ltB48XQEeOQKtwf9Y2DKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2ltB5MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/> - <parameters xmi:id="_2ltB5cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/> + <commands xmi:id="_ueCyZ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jst.jsp.ui.refactor.rename" commandName="Rename" description="Rename a Java Element" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCyaMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCyacZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCyasZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCya8Z5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueCybMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.commitAll" commandName="Commit All Outgoing Changes" description="Commit all outgoing changes to the repository" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZcMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZccZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.cvsPerspective" commandName="CVS Repository Exploring" description="Open the CVS Repository Exploring Perspective" category="_uedCE8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZcsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZc8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZdMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.removeMonitor" commandName="Remove Monitor" category="_uegFZMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZdcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZdsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZd8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZeMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZecZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZesZ5EeOSuo9mkUu2dw" 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="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueDZe8Z5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAgMZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAgcZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAgsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAg8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAhMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAhcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.checkout" commandName="Checkout from CVS" description="Checkout from CVS" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAhsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAh8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAiMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAicZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.SetExternalDefinitionCommand" commandName="Set External Definition..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEAisZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.compareWithRemote" commandName="Compare With Latest from Repository" description="Compare with Content on CVS Server" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnkMZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnkcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.pldt.mpi.core.command2" commandName="find mpi artifacts" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnksZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnk8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnlMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnlcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.commands.empty" commandName="Empty command" description="Command which does nothing" category="_ueeQNMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnlsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnl8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnmMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.menu.updateUnresolvedIncludes" commandName="Re-resolve Unresolved Includes" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnmcZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnmsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueEnm8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOoMZ5EeOSuo9mkUu2dw" 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="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOocZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOosZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.core.ui.command.openPom" commandName="Open Maven POM" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOo8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOpMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.replaceWithRevision" commandName="Replace With Revision" description="Replace with Revision on CVS Server" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOpcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.connectivity.commands.showcategory" commandName="Show Category" description="Show Category" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOpsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.compareWithRevision" commandName="Compare With Revision" description="Compare with Revision on CVS Server" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOp8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOqMZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOqcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOqsZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOq8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueFOrMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueFOrcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/> + <parameters xmi:id="_ueF1sMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/> </commands> - <commands xmi:id="_2lto4MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.menu.freshenAllFiles" commandName="Freshen All Files in Index" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto4cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto4sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.explorer" commandName="PHP Script Explorer" description="Shows the Script Explorer" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto48XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto5MXQEeOQKtwf9Y2DKA" 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="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto5cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.newWizard" commandName="New" description="Open the New item wizard" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto5sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto58XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lto6MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/> + <commands xmi:id="_ueF1scZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.menu.freshenAllFiles" commandName="Freshen All Files in Index" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1ssZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1s8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.explorer" commandName="PHP Script Explorer" description="Shows the Script Explorer" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1tMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1tcZ5EeOSuo9mkUu2dw" 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="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1tsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.newWizard" commandName="New" description="Open the New item wizard" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1t8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1uMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueF1ucZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/> </commands> - <commands xmi:id="_2lto6cXQEeOQKtwf9Y2DKA" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto6sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.deleteColumnCommand" commandName="deleteColumnCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto68XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto7MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CompareWithBranchCommand" commandName="Branch..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto7cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.branch" commandName="Branch" description="Branch" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto7sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto78XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.reverseToggle" commandName="Reverse Toggle" description="Toggle Reverse Debugging" category="_2l2y3cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto8MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto8cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.editor.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto8sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.removeJob" commandName="Remove Job Entry" description="Permanently remove job entry from table" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto88XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lto9MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP8MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.runAction" commandName="Run" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP8cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP8sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.baseInsertCommand" commandName="baseInsertCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP88XQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.run" commandName="Run CLI Application" description="Run CLI Application" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP9MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP9cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor" commandName="XPath Processor" category="_2l3Z4cXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2luP9sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.commands.radioStateParameter" name="State" optional="false"/> + <commands xmi:id="_ueF1usZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1u8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.deleteColumnCommand" commandName="deleteColumnCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1vMZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueF1vcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CompareWithBranchCommand" commandName="Branch..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcwMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.branch" commandName="Branch" description="Branch" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcwcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcwsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.reverseToggle" commandName="Reverse Toggle" description="Toggle Reverse Debugging" category="_uefeUcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcw8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcxMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.editor.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcxcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.removeJob" commandName="Remove Job Entry" description="Permanently remove job entry from table" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcxsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcx8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcyMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.runAction" commandName="Run" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcycZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcysZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.baseInsertCommand" commandName="baseInsertCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGcy8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.run" commandName="Run CLI Application" description="Run CLI Application" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueGczMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHD0MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor" commandName="XPath Processor" category="_uefeWcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueHD0cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.commands.radioStateParameter" name="State" optional="false"/> </commands> - <commands xmi:id="_2luP98XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_2l4A8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP-MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.startTracing" commandName="Start Tracing " description="Start Tracing Experiment" category="_2l2y4cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP-cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.getJobError" commandName="Get Job Error" description="Display the job error in a console" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP-sXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP-8XQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2luP_MXQEeOQKtwf9Y2DKA" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_ueHD0sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_uegsecZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHD08Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.startTracing" commandName="Start Tracing " description="Start Tracing Experiment" category="_uefeVcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHD1MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.getJobError" commandName="Get Job Error" description="Display the job error in a console" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHD1cZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHD1sZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueHD18Z5EeOSuo9mkUu2dw" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_2luP_cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP_sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luP_8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luQAMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in C/C++ editors" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luQAcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luQAsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luQA8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luQBMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2luQBcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3AMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Checkout" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3AcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3AsXQEeOQKtwf9Y2DKA" 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="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3A8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.pdt.ui.edit.text.select.next" commandName="Select Next Element" description="Expands selection to include next sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3BMXQEeOQKtwf9Y2DKA" 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="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3BcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3BsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3B8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_2l4A8MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lu3CMXQEeOQKtwf9Y2DKA" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_ueHD2MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHD2cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHD2sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHq4MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in C/C++ editors" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHq4cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHq4sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHq48Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHq5MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHq5cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHq5sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Checkout" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHq58Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueHq6MZ5EeOSuo9mkUu2dw" 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="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueIR8MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pdt.ui.edit.text.select.next" commandName="Select Next Element" description="Expands selection to include next sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueIR8cZ5EeOSuo9mkUu2dw" 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="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueIR8sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueIR88Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueIR9MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_uegseMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueIR9cZ5EeOSuo9mkUu2dw" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_2lu3CcXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3CsXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3C8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3DMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3DcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.reverseResume" commandName="Reverse Resume" description="Perform Reverse Resume" category="_2l2y3cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3DsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3D8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3EMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.getJobOutput" commandName="Get Job Output" description="Display the job output in a console" category="_2l3Z58XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3EcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.importCSSCommand" commandName="importCSSCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3EsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.ignore" commandName="Add to .cvsignore" description="Ignore the Selected Resources when Synchronizing" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3E8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lu3FMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_2l3Z6sXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lu3FcXQEeOQKtwf9Y2DKA" elementId="title" name="Title"/> - <parameters xmi:id="_2lveEMXQEeOQKtwf9Y2DKA" elementId="message" name="Message"/> - <parameters xmi:id="_2lveEcXQEeOQKtwf9Y2DKA" elementId="initialValue" name="Initial Value"/> - <parameters xmi:id="_2lveEsXQEeOQKtwf9Y2DKA" elementId="cancelReturns" name="Return Value on Cancel"/> + <commands xmi:id="_ueIR9sZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueI5AMZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueI5AcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueI5AsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueI5A8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.reverseResume" commandName="Reverse Resume" description="Perform Reverse Resume" category="_uefeUcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueI5BMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueI5BcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueI5BsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.getJobOutput" commandName="Get Job Output" description="Display the job output in a console" category="_uegFZcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueJgEMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.importCSSCommand" commandName="importCSSCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueJgEcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.ignore" commandName="Add to .cvsignore" description="Ignore the Selected Resources when Synchronizing" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueJgEsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueJgE8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_uegFaMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueJgFMZ5EeOSuo9mkUu2dw" elementId="title" name="Title"/> + <parameters xmi:id="_ueJgFcZ5EeOSuo9mkUu2dw" elementId="message" name="Message"/> + <parameters xmi:id="_ueJgFsZ5EeOSuo9mkUu2dw" elementId="initialValue" name="Initial Value"/> + <parameters xmi:id="_ueKHIMZ5EeOSuo9mkUu2dw" elementId="cancelReturns" name="Return Value on Cancel"/> </commands> - <commands xmi:id="_2lveE8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lveFMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/> + <commands xmi:id="_ueKHIcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueKHIsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/> </commands> - <commands xmi:id="_2lveFcXQEeOQKtwf9Y2DKA" elementId="revert.schema.editor.action.id" commandName="Revert Object" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveFsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveF8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveGMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveGcXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveGsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveG8XQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveHMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveHcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.pldt.mpi.analysis.command2" commandName="MPI Barrier Analysis" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveHsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveH8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveIMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_2l3Z6cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveIcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Repository" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveIsXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveI8XQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lveJMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFIMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFIcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFIsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Checkout" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFI8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFJMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFJcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.mat.ui.acquire.HeapDump" commandName="Acquire Heap Dump" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFJsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFJ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.mat.ui.actions.executeInspection" commandName="Execute Inspection" category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lwFKMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.mat.ui.actions.executeInspection.commandName" name="commandName" optional="false"/> + <commands xmi:id="_ueKHI8Z5EeOSuo9mkUu2dw" elementId="revert.schema.editor.action.id" commandName="Revert Object" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKHJMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKHJcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKHJsZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKHJ8Z5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuMMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuMcZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuMsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuM8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.pldt.mpi.analysis.command2" commandName="MPI Barrier Analysis" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuNMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuNcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuNsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_uegFZ8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuN8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Repository" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuOMZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueKuOcZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueLVQMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueLVQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueLVQsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueLVQ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Checkout" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueLVRMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueLVRcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueLVRsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.mat.ui.acquire.HeapDump" commandName="Acquire Heap Dump" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueLVR8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueLVSMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.mat.ui.actions.executeInspection" commandName="Execute Inspection" category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueLVScZ5EeOSuo9mkUu2dw" elementId="org.eclipse.mat.ui.actions.executeInspection.commandName" name="commandName" optional="false"/> </commands> - <commands xmi:id="_2lwFKcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFKsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFK8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFLMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFLcXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFLsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.edit.text.toggleMarkOccurrences" commandName="Mark Occurrences" description="Toggles mark occurrences in PHP editors" category="_2l3Z8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFL8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.mergeCommand" commandName="mergeCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFMMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Dynamic Help" description="Open the dynamic help" category="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFMcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_2l3Z6cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFMsXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFM8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.saveToDatabaseAction" commandName="Save to Database" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFNMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CleanupCommand" commandName="Cleanup" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwFNcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsMMXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsMcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.views.XPathView.prefixes" commandName="&Edit Namespace Prefixes" category="_2l3Z4cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsMsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_2l2y2cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsM8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsNMXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsNcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsNsXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsN8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsOMXQEeOQKtwf9Y2DKA" 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="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsOcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.refreshLibraryCommand" commandName="refreshLibraryCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsOsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsO8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsPMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsPcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.result.terminate" commandName="Terminate Result" category="_2l2y1sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsPsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsP8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsQMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsQcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="%toggleMarkOccurrences.description" category="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsQsXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsQ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lwsRMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTQMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTQcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTQsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTQ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CompareWithRevisionCommand" commandName="URL..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTRMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.ide.configureFilters" commandName="Configure Contents..." description="Configure the filters to apply to the markers view" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTRcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTRsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTR8XQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTSMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTScXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.menu.updateWithModifiedFiles" commandName="Update Index with Modified Files" category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTSsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.actions.LifeCycleGenerateSources.run" commandName="Run Maven Generate Sources" description="Run Maven Generate Sources" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTS8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTTMXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTTcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTTsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.commands.switch" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_2l2y0sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTT8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTUMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.addLocation" commandName="Add Repository Location" description="Add a new CVS repository location" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTUcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.UpdateToRevisionCommand" commandName="Update to Revision" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTUsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTU8XQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTVMXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lxTVcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Editor Area Visibility" description="Toggles the visibility of the editor area" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6UMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_2l2LzcXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lx6UcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/> + <commands xmi:id="_ueLVSsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8UMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8UcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8UsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8U8Z5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8VMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.edit.text.toggleMarkOccurrences" commandName="Mark Occurrences" description="Toggles mark occurrences in PHP editors" category="_uegsdMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8VcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.mergeCommand" commandName="mergeCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8VsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Dynamic Help" description="Open the dynamic help" category="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8V8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_uegFZ8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8WMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8WcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.saveToDatabaseAction" commandName="Save to Database" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8WsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CleanupCommand" commandName="Cleanup" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueL8W8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjYMZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjYcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.views.XPathView.prefixes" commandName="&Edit Namespace Prefixes" category="_uefeWcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjYsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_uee3RcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjY8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjZMZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjZcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjZsZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjZ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjaMZ5EeOSuo9mkUu2dw" 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="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjacZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.refreshLibraryCommand" commandName="refreshLibraryCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjasZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMja8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueMjbMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKcMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.result.terminate" commandName="Terminate Result" category="_uee3QsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKccZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKcsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKc8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKdMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="%toggleMarkOccurrences.description" category="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKdcZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKdsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKd8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKeMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNKecZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxgMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxgcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CompareWithRevisionCommand" commandName="URL..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxgsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.ide.configureFilters" commandName="Configure Contents..." description="Configure the filters to apply to the markers view" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxg8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxhMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxhcZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxhsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxh8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.menu.updateWithModifiedFiles" commandName="Update Index with Modified Files" category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxiMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.actions.LifeCycleGenerateSources.run" commandName="Run Maven Generate Sources" description="Run Maven Generate Sources" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxicZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueNxisZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueOYkMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueOYkcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.commands.switch" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_ueeQNMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueOYksZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueOYk8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.addLocation" commandName="Add Repository Location" description="Add a new CVS repository location" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueOYlMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.UpdateToRevisionCommand" commandName="Update to Revision" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueOYlcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueOYlsZ5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueOYl8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueOYmMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Editor Area Visibility" description="Toggles the visibility of the editor area" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueO_oMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_uedpIcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueO_ocZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/> </commands> - <commands xmi:id="_2lx6UsXQEeOQKtwf9Y2DKA" 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="_2l3Z6MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6U8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6VMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.edit.text.add.description" commandName="Generate Element Comment " description="Generate Element Comment" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6VcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.server.ui.phpServerShortcut.debug" commandName="Debug PHP Web Application" description="Debug PHP Web Application" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6VsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6V8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6WMXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6WcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.updateAll" commandName="Update All Incoming Changes" description="Update all incoming changes with new content from the repository" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6WsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.mat.ui.actions.IconAssist" commandName="Icon Assist" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6W8XQEeOQKtwf9Y2DKA" 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="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6XMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6XcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6XsXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6X8XQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6YMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lx6YcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_2l2LzcXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2lx6YsXQEeOQKtwf9Y2DKA" elementId="url" name="URL"/> - <parameters xmi:id="_2lx6Y8XQEeOQKtwf9Y2DKA" elementId="browserId" name="Browser Id"/> - <parameters xmi:id="_2lx6ZMXQEeOQKtwf9Y2DKA" elementId="name" name="Browser Name"/> - <parameters xmi:id="_2lyhYMXQEeOQKtwf9Y2DKA" elementId="tooltip" name="Browser Tooltip"/> + <commands xmi:id="_ueO_osZ5EeOSuo9mkUu2dw" 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="_uegFZsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueO_o8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueO_pMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.edit.text.add.description" commandName="Generate Element Comment " description="Generate Element Comment" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueO_pcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.server.ui.phpServerShortcut.debug" commandName="Debug PHP Web Application" description="Debug PHP Web Application" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueO_psZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueO_p8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueO_qMZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueO_qcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.updateAll" commandName="Update All Incoming Changes" description="Update all incoming changes with new content from the repository" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueO_qsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.mat.ui.actions.IconAssist" commandName="Icon Assist" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uePmsMZ5EeOSuo9mkUu2dw" 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="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uePmscZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uePmssZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uePms8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uePmtMZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uePmtcZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uePmtsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_uedpIcZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_uePmt8Z5EeOSuo9mkUu2dw" elementId="url" name="URL"/> + <parameters xmi:id="_uePmuMZ5EeOSuo9mkUu2dw" elementId="browserId" name="Browser Id"/> + <parameters xmi:id="_uePmucZ5EeOSuo9mkUu2dw" elementId="name" name="Browser Name"/> + <parameters xmi:id="_uePmusZ5EeOSuo9mkUu2dw" elementId="tooltip" name="Browser Tooltip"/> </commands> - <commands xmi:id="_2lyhYcXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhYsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhY8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhZMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.merge" commandName="Merge" description="Merge" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhZcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.LockCommand" commandName="Lock..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhZsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhZ8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.command.resumeWithoutSignal" commandName="Resume Without Signal" description="Resume Without Signal" category="_2l3Z7sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhaMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_2l2y4MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhacXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhasXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyha8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhbMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhbcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhbsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_2l3Z88XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhb8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.core.pomFileAction.run" commandName="Run Maven Build" description="Run Maven Build" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhcMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.edit.text.c.uncomment" commandName="Uncomment" description="Uncomment the selected // style comment lines" category="_2l3Z7cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhccXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhcsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhc8XQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lyhdMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.refreshFromDatabaseAction" commandName="Refresh from Database" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIcMXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIccXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CreatePatchCommand" commandName="Create Patch..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIcsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.targetCreateCommand" commandName="Create Make Target" description="Create a new make build target for the selected container." category="_2l2L0MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIc8XQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIdMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectPreviousTraceRecord" commandName="Previous Trace Record" description="Select Previous Trace Record" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIdcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.resetImageSizeCommand" commandName="resetImageSizeCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIdsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzId8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.ShowAnnotationCommand" commandName="Show Annotation..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIeMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.GotoMatchingTokenAction" commandName="Goto Matching Token" category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIecXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.AddToSVNIgnoreCommand" commandName="Add to svn:ignore..." category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIesXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.publishToTemplateCommand" commandName="publishToTemplateCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIe8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIfMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIfcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIfsXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIf8XQEeOQKtwf9Y2DKA" 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="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIgMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIgcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIgsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIg8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzIhMXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvgMXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvgcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.comment" commandName="Comment" description="Turn the selected lines into # style comments" category="_2l2L0sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvgsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvg8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvhMXQEeOQKtwf9Y2DKA" 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="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvhcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvhsXQEeOQKtwf9Y2DKA" 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="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvh8XQEeOQKtwf9Y2DKA" 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="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzviMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.navigate.script.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvicXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Checkout" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvisXQEeOQKtwf9Y2DKA" 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="_2l2y2sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvi8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_2l3Z8cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvjMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvjcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvjsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvj8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvkMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_2l2L0cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvkcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvksXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvk8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.commands.viewMemory" commandName="View Memory" description="View variable in memory view" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2lzvlMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WkMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.core.ui.command.addPlugin" commandName="Add Maven Plugin" description="Add Maven Plugin" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WkcXQEeOQKtwf9Y2DKA" 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="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WksXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.cut.line" commandName="Cut Line" description="Cut a line of text" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0Wk8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WlMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.CompareWithWorkingCopyCommand" commandName="Base from Working Copy" category="_2l2y3sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WlcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_2l3Z5MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WlsXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0Wl8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WmMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WmcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WmsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.quickAccess" commandName="Quick Access" description="Quickly access UI elements" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0Wm8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.dsf.debug.ui.refreshAll" commandName="Refresh Debug Views" description="Refresh all data in debug views" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WnMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.debug.ui.commands.ScriptDisplay" commandName="Display" description="Display result of evaluating selected text" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WncXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WnsXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0Wn8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WoMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WocXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WosXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0Wo8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l0WpMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09oMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_2l4A8MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2l09ocXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/> + <commands xmi:id="_uePmu8Z5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uePmvMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNwMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNwcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.merge" commandName="Merge" description="Merge" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNwsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.LockCommand" commandName="Lock..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNw8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNxMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.command.resumeWithoutSignal" commandName="Resume Without Signal" description="Resume Without Signal" category="_uegscsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNxcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_uefeVMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNxsZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNx8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNyMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNycZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNysZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQNy8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_uegsd8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ00MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.core.pomFileAction.run" commandName="Run Maven Build" description="Run Maven Build" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ00cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.edit.text.c.uncomment" commandName="Uncomment" description="Uncomment the selected // style comment lines" category="_uegsccZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ00sZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ008Z5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ01MZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ01cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.refreshFromDatabaseAction" commandName="Refresh from Database" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ01sZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ018Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CreatePatchCommand" commandName="Create Patch..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ02MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.targetCreateCommand" commandName="Create Make Target" description="Create a new make build target for the selected container." category="_uedpJMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ02cZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ02sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectPreviousTraceRecord" commandName="Previous Trace Record" description="Select Previous Trace Record" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueQ028Z5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.resetImageSizeCommand" commandName="resetImageSizeCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb4MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb4cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.ShowAnnotationCommand" commandName="Show Annotation..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb4sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.GotoMatchingTokenAction" commandName="Goto Matching Token" category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb48Z5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.AddToSVNIgnoreCommand" commandName="Add to svn:ignore..." category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb5MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.publishToTemplateCommand" commandName="publishToTemplateCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb5cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb5sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb58Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb6MZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueRb6cZ5EeOSuo9mkUu2dw" 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="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSC8MZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSC8cZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSC8sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSC88Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSC9MZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSC9cZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSC9sZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.comment" commandName="Comment" description="Turn the selected lines into # style comments" category="_ueeQMMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSqAMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSqAcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSqAsZ5EeOSuo9mkUu2dw" 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="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSqA8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSqBMZ5EeOSuo9mkUu2dw" 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="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSqBcZ5EeOSuo9mkUu2dw" 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="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSqBsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.navigate.script.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueSqB8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Checkout" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueTREMZ5EeOSuo9mkUu2dw" 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="_uee3RsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueTREcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_uegsdcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueTREsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueTRE8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueTRFMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueTRFcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4IMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_uedpJcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4IcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4IsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4I8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.commands.viewMemory" commandName="View Memory" description="View variable in memory view" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4JMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4JcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.core.ui.command.addPlugin" commandName="Add Maven Plugin" description="Add Maven Plugin" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4JsZ5EeOSuo9mkUu2dw" 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="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4J8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.cut.line" commandName="Cut Line" description="Cut a line of text" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4KMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueT4KcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.CompareWithWorkingCopyCommand" commandName="Base from Working Copy" category="_uefeUsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfMMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_uegFYsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfMcZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfMsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfM8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfNMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfNcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.quickAccess" commandName="Quick Access" description="Quickly access UI elements" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfNsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.dsf.debug.ui.refreshAll" commandName="Refresh Debug Views" description="Refresh all data in debug views" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfN8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.debug.ui.commands.ScriptDisplay" commandName="Display" description="Display result of evaluating selected text" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfOMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueUfOcZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVGQMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVGQcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVGQsZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVGQ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVGRMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVGRcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVGRsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_uegseMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueVGR8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/> </commands> - <commands xmi:id="_2l09osXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.DMLDialogSelectionAction" commandName="Edit in SQL Query Builder..." category="_2l2LzsXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09o8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09pMXQEeOQKtwf9Y2DKA" 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="_2l2y1MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09pcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09psXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.edit.text.script.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_2l2LycXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09p8XQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09qMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_2l2y3MXQEeOQKtwf9Y2DKA"> - <parameters xmi:id="_2l09qcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/> + <commands xmi:id="_ueVGSMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.DMLDialogSelectionAction" commandName="Edit in SQL Query Builder..." category="_uedpIsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVGScZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVtUMZ5EeOSuo9mkUu2dw" 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="_uee3QMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVtUcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVtUsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.edit.text.script.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_uedCFMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVtU8Z5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVtVMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_uefeUMZ5EeOSuo9mkUu2dw"> + <parameters xmi:id="_ueVtVcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/> </commands> - <commands xmi:id="_2l09qsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.revertToReportItemCommand" commandName="revertToReportItemCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09q8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.m2e.editor.RenameArtifactAction" commandName="Rename Maven Artifact..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09rMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09rcXQEeOQKtwf9Y2DKA" 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="_2l4A8sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09rsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_2l2y28XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09r8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.sync" commandName="Synchronize with Repository" description="Synchronize the workspace resources with those in the repository" category="_2l2Ly8XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09sMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_2l3Z7MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09scXQEeOQKtwf9Y2DKA" 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="_2l4A8MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09ssXQEeOQKtwf9Y2DKA" 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="_2l2y4sXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l09s8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l1ksMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.newStyleCommand" commandName="newStyleCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l1kscXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.editGroupCommand" commandName="editGroupCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l1kssXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l1ks8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_2l3Z5cXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l1ktMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.birt.report.designer.ui.command.reloadCssStyleCommand" commandName="reloadCssStyleCommand" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_2l1ktcXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.emf.exporter.genModelEditorContribution/org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" commandName="&Export Model..."/> - <commands xmi:id="_2l1ktsXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.emf.importer.genModelEditorContribution/org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" commandName="&Reload..."/> - <commands xmi:id="_2l1kt8XQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.RemoveMappingActionID" commandName="&Remove Mapping"/> - <commands xmi:id="_2l1kuMXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.TypeMatchMappingActionID" commandName="Match Mapping by &Type"/> - <commands xmi:id="_2l1kucXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.NameMatchMappingActionID" commandName="Match Mapping by &Name"/> - <commands xmi:id="_2l1kusXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" commandName="Create &One-sided Mapping"/> - <commands xmi:id="_2l1ku8XQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateMappingActionID" commandName="Create &Mapping"/> - <commands xmi:id="_2l1kvMXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" commandName="Add &Output Root..."/> - <commands xmi:id="_2l1kvcXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" commandName="Add &Input Root..."/> - <commands xmi:id="_2l1kvsXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="E&xecute"/> - <commands xmi:id="_2l1kv8XQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Displa&y"/> - <commands xmi:id="_2l1kwMXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Insp&ect"/> - <commands xmi:id="_2l1kwcXQEeOQKtwf9Y2DKA" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.editor/org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" commandName="Reload Dependencies"/> - <commands xmi:id="_KriHocXREeOGcfz2MGiB3Q" elementId="org.eclipse.egit.ui.RepositoriesViewCreateTag" commandName="Create Tag..." category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_KriHosXREeOGcfz2MGiB3Q" elementId="org.eclipse.egit.ui.RepositoriesViewAddToIndex" commandName="Add to Index" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_KriusMXREeOGcfz2MGiB3Q" elementId="org.eclipse.egit.ui.team.CompareWithRevision" commandName="Compare with History" category="_2l2y18XQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_KsaRYcXREeOGcfz2MGiB3Q" 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="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_Ksa4ccXREeOGcfz2MGiB3Q" 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="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_KsbfgMXREeOGcfz2MGiB3Q" 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="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_Ksbfg8XREeOGcfz2MGiB3Q" 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="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_KscGkcXREeOGcfz2MGiB3Q" 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="_2l2LzcXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K40VsMXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K42x8MXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K42x8cXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K42x8sXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K42x88XREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K43ZAMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K43ZAcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K43ZAsXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K44AEMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K44AEcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K47DYMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K47DYcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K47DYsXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K47qcMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K48RgMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K48RgcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K48RgsXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K49foMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K49focXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4-GsMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4-GscXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4-twMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4-twcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4_U0MXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4_U0cXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4_U0sXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4_U08XREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4_U1MXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4_74MXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4_74cXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K4_74sXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5Ai8MXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5Ai8cXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5Ai8sXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5Ai88XREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5BKAMXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5BKAcXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5BKAsXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5BKA8XREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5BxEMXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5BxEcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5BxEsXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5BxE8XREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5BxFMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5CYIMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5CYIcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5CYIsXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5CYI8XREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5C_MMXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5C_McXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5C_MsXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5C_M8XREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5DmQMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5DmQcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5DmQsXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5DmQ8XREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &References" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5DmRMXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5ENUMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5ENUcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5ENUsXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5ENU8XREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5E0YMXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5E0YcXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5E0YsXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5E0Y8XREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5FbcMXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5FbccXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5FbcsXREeOGcfz2MGiB3Q" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5Fbc8XREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5GCgMXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <commands xmi:id="_K5GCgcXREeOGcfz2MGiB3Q" 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="_2l2y3MXQEeOQKtwf9Y2DKA"/> - <addons xmi:id="_2l1kwsXQEeOQKtwf9Y2DKA" 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="_2l1kw8XQEeOQKtwf9Y2DKA" 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="_2l2LwMXQEeOQKtwf9Y2DKA" 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="_2l2LwcXQEeOQKtwf9Y2DKA" 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="_2l2LwsXQEeOQKtwf9Y2DKA" 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="_2l2Lw8XQEeOQKtwf9Y2DKA" 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="_2l2LxMXQEeOQKtwf9Y2DKA" 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="_2l2LxcXQEeOQKtwf9Y2DKA" 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="_2l2LxsXQEeOQKtwf9Y2DKA" 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="_2l2Lx8XQEeOQKtwf9Y2DKA" 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="_KsaRYMXREeOGcfz2MGiB3Q" 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="_2l2LyMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/> - <categories xmi:id="_2l2LycXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.category.source" name="Script Source"/> - <categories xmi:id="_2l2LysXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.autotools.ui.category.invokeAutotools" name="Invoke Autotools"/> - <categories xmi:id="_2l2Ly8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.cvs.ui.actionSet" name="CVS" description="Actions that apply when working with CVS repositories"/> - <categories xmi:id="_2l2LzMXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaedtor.10x" name="ASA 9.x table schema editor"/> - <categories xmi:id="_2l2LzcXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.window" name="Window"/> - <categories xmi:id="_2l2LzsXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.sqleditor.category" name="Database Tools" description="Database Development tools"/> - <categories xmi:id="_2l2Lz8XQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.category.refactoring" name="Refactor - C++" description="C/C++ Refactorings"/> - <categories xmi:id="_2l2L0MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.project" name="Project"/> - <categories xmi:id="_2l2L0cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/> - <categories xmi:id="_2l2L0sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.make.ui.category.source" name="Makefile Source" description="Makefile Source Actions"/> - <categories xmi:id="_2l2L08XQEeOQKtwf9Y2DKA" elementId="org.eclipse.rse.ui.commands.category" name="Remote Systems"/> - <categories xmi:id="_2l2y0MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/> - <categories xmi:id="_2l2y0cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.emf.codegen.ecore.ui.Commands" name="EMF Code Generation" description="Commands for the EMF code generation tools"/> - <categories xmi:id="_2l2y0sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wb.core.actions.category" name="WindowBuilder Pro" description="WindowBuilder Pro actions"/> - <categories xmi:id="_2l2y08XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.pldt.common.analysisDropdownCategory" name="Analysis Dropdown Category"/> - <categories xmi:id="_2l2y1MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/> - <categories xmi:id="_2l2y1cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.category.refactoring" name="Refactor - PHP" description="PHP Refactoring Actions"/> - <categories xmi:id="_2l2y1sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.datatools.sqltools.result.category" name="SQL Results View"/> - <categories xmi:id="_2l2y18XQEeOQKtwf9Y2DKA" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/> - <categories xmi:id="_2l2y2MXQEeOQKtwf9Y2DKA" 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="_2l2y2cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.dltk.ui.category.refactoring" name="Refactor - DLTK" description="DLTK Refactoring Actions"/> - <categories xmi:id="_2l2y2sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/> - <categories xmi:id="_2l2y28XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.edit" name="Edit"/> - <categories xmi:id="_2l2y3MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/> - <categories xmi:id="_2l2y3cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.category.reverseDebugging" name="Reverse Debugging Commands" description="Set of commands for Reverse Debugging"/> - <categories xmi:id="_2l2y3sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.svn.ui.command.category" name="SVN"/> - <categories xmi:id="_2l2y38XQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/> - <categories xmi:id="_2l2y4MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/> - <categories xmi:id="_2l2y4cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.category.tracing" name="Tracing Commands" description="Category for Tracing Commands"/> - <categories xmi:id="_2l2y4sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/> - <categories xmi:id="_2l2y48XQEeOQKtwf9Y2DKA" elementId="pl.szpinda.plugin.tomcat.commands.category.key" name="Tomcat keys"/> - <categories xmi:id="_2l3Z4MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.codan.ui.commands.category" name="Code Analysis"/> - <categories xmi:id="_2l3Z4cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.xml.views.XPathView" name="XPath"/> - <categories xmi:id="_2l3Z4sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/> - <categories xmi:id="_2l3Z48XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/> - <categories xmi:id="_2l3Z5MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.file" name="File"/> - <categories xmi:id="_2l3Z5cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/> - <categories xmi:id="_2l3Z5sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.monitorCommands" name="Monitor Commands" description="Monitor Commands"/> - <categories xmi:id="_2l3Z58XQEeOQKtwf9Y2DKA" elementId="org.eclipse.ptp.rm.lml.monitor.ui.jobCommands" name="Job Commands" description="Job Commands"/> - <categories xmi:id="_2l3Z6MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/> - <categories xmi:id="_2l3Z6cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/> - <categories xmi:id="_2l3Z6sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/> - <categories xmi:id="_2l3Z68XQEeOQKtwf9Y2DKA" 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="_2l3Z7MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/> - <categories xmi:id="_2l3Z7cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.ui.category.source" name="Source" description="Source commands"/> - <categories xmi:id="_2l3Z7sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.cdt.debug.ui.category.runControl" name="Run Control Commands" description="Set of commands for Run Control"/> - <categories xmi:id="_2l3Z78XQEeOQKtwf9Y2DKA" elementId="org.eclipse.gef.category.view" name="View" description="View"/> - <categories xmi:id="_2l3Z8MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.php.ui.category.source" name="Source" description="PHP Source Actions"/> - <categories xmi:id="_2l3Z8cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.help" name="Help"/> - <categories xmi:id="_2l3Z8sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="%terminal.view.insertion.description"/> - <categories xmi:id="_2l3Z88XQEeOQKtwf9Y2DKA" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/> - <categories xmi:id="_2l4A8MXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ui.category.navigate" name="Navigate"/> - <categories xmi:id="_2l4A8cXQEeOQKtwf9Y2DKA" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/> - <categories xmi:id="_2l4A8sXQEeOQKtwf9Y2DKA" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/> + <commands xmi:id="_ueVtVsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.revertToReportItemCommand" commandName="revertToReportItemCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVtV8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.m2e.editor.RenameArtifactAction" commandName="Rename Maven Artifact..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVtWMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVtWcZ5EeOSuo9mkUu2dw" 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="_uegsesZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueVtWsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_uee3R8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.sync" commandName="Synchronize with Repository" description="Synchronize the workspace resources with those in the repository" category="_uedCFsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUYcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_uegscMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUYsZ5EeOSuo9mkUu2dw" 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="_uegseMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUY8Z5EeOSuo9mkUu2dw" 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="_uefeVsZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUZMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUZcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.newStyleCommand" commandName="newStyleCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUZsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.editGroupCommand" commandName="editGroupCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUZ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUaMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_uegFY8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUacZ5EeOSuo9mkUu2dw" elementId="org.eclipse.birt.report.designer.ui.command.reloadCssStyleCommand" commandName="reloadCssStyleCommand" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueWUasZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.emf.exporter.genModelEditorContribution/org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" commandName="&Export Model..."/> + <commands xmi:id="_ueWUa8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.emf.importer.genModelEditorContribution/org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" commandName="&Reload..."/> + <commands xmi:id="_ueW7cMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.RemoveMappingActionID" commandName="&Remove Mapping"/> + <commands xmi:id="_ueW7ccZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.TypeMatchMappingActionID" commandName="Match Mapping by &Type"/> + <commands xmi:id="_ueW7csZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.NameMatchMappingActionID" commandName="Match Mapping by &Name"/> + <commands xmi:id="_ueW7c8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" commandName="Create &One-sided Mapping"/> + <commands xmi:id="_ueW7dMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateMappingActionID" commandName="Create &Mapping"/> + <commands xmi:id="_ueW7dcZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" commandName="Add &Output Root..."/> + <commands xmi:id="_ueW7dsZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" commandName="Add &Input Root..."/> + <commands xmi:id="_ueW7d8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="E&xecute"/> + <commands xmi:id="_ueW7eMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Displa&y"/> + <commands xmi:id="_ueW7ecZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Insp&ect"/> + <commands xmi:id="_ueW7esZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.editor/org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" commandName="Reload Dependencies"/> + <commands xmi:id="_ueXigMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateTag" commandName="Create Tag..." category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXigcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.RepositoriesViewAddToIndex" commandName="Add to Index" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXigsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.team.CompareWithRevision" commandName="Compare with History" category="_uee3Q8Z5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXig8Z5EeOSuo9mkUu2dw" 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="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXihMZ5EeOSuo9mkUu2dw" 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="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXihcZ5EeOSuo9mkUu2dw" 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="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXihsZ5EeOSuo9mkUu2dw" 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="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXih8Z5EeOSuo9mkUu2dw" 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="_uedpIcZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXiiMZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXiicZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueXiisZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJkMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJkcZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJksZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJk8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJlMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJlcZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJlsZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJl8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJmMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYJmcZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYwoMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYwocZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYwosZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYwo8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYwpMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYwpcZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYwpsZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueYwp8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXsMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXscZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXssZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXs8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXtMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXtcZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXtsZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXt8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXuMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXucZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXusZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZXu8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-wMZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-wcZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-wsZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-w8Z5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-xMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-xcZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-xsZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-x8Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-yMZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-ycZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueZ-ysZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal0MZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal0cZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal0sZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal08Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal1MZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal1cZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal1sZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal18Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal2MZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal2cZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_ueal2sZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM4MZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &References" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM4cZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM4sZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM48Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM5MZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM5cZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM5sZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM58Z5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM6MZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebM6cZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebz8MZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebz8cZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebz8sZ5EeOSuo9mkUu2dw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebz88Z5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebz9MZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <commands xmi:id="_uebz9cZ5EeOSuo9mkUu2dw" 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="_uefeUMZ5EeOSuo9mkUu2dw"/> + <addons xmi:id="_uebz9sZ5EeOSuo9mkUu2dw" 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="_uebz98Z5EeOSuo9mkUu2dw" 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="_uebz-MZ5EeOSuo9mkUu2dw" 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="_uebz-cZ5EeOSuo9mkUu2dw" 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="_uecbAMZ5EeOSuo9mkUu2dw" 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="_uecbAcZ5EeOSuo9mkUu2dw" 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="_uecbAsZ5EeOSuo9mkUu2dw" 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="_uecbA8Z5EeOSuo9mkUu2dw" 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="_uedCEMZ5EeOSuo9mkUu2dw" 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="_uedCEcZ5EeOSuo9mkUu2dw" 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="_uedCEsZ5EeOSuo9mkUu2dw" 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="_uedCE8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/> + <categories xmi:id="_uedCFMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.category.source" name="Script Source"/> + <categories xmi:id="_uedCFcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.autotools.ui.category.invokeAutotools" name="Invoke Autotools"/> + <categories xmi:id="_uedCFsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.cvs.ui.actionSet" name="CVS" description="Actions that apply when working with CVS repositories"/> + <categories xmi:id="_uedpIMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaedtor.10x" name="ASA 9.x table schema editor"/> + <categories xmi:id="_uedpIcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.window" name="Window"/> + <categories xmi:id="_uedpIsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.sqleditor.category" name="Database Tools" description="Database Development tools"/> + <categories xmi:id="_uedpI8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.category.refactoring" name="Refactor - C++" description="C/C++ Refactorings"/> + <categories xmi:id="_uedpJMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.project" name="Project"/> + <categories xmi:id="_uedpJcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/> + <categories xmi:id="_ueeQMMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.make.ui.category.source" name="Makefile Source" description="Makefile Source Actions"/> + <categories xmi:id="_ueeQMcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.rse.ui.commands.category" name="Remote Systems"/> + <categories xmi:id="_ueeQMsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/> + <categories xmi:id="_ueeQM8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.emf.codegen.ecore.ui.Commands" name="EMF Code Generation" description="Commands for the EMF code generation tools"/> + <categories xmi:id="_ueeQNMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wb.core.actions.category" name="WindowBuilder Pro" description="WindowBuilder Pro actions"/> + <categories xmi:id="_ueeQNcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.pldt.common.analysisDropdownCategory" name="Analysis Dropdown Category"/> + <categories xmi:id="_uee3QMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/> + <categories xmi:id="_uee3QcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.category.refactoring" name="Refactor - PHP" description="PHP Refactoring Actions"/> + <categories xmi:id="_uee3QsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.datatools.sqltools.result.category" name="SQL Results View"/> + <categories xmi:id="_uee3Q8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/> + <categories xmi:id="_uee3RMZ5EeOSuo9mkUu2dw" 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="_uee3RcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.dltk.ui.category.refactoring" name="Refactor - DLTK" description="DLTK Refactoring Actions"/> + <categories xmi:id="_uee3RsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/> + <categories xmi:id="_uee3R8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.edit" name="Edit"/> + <categories xmi:id="_uefeUMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/> + <categories xmi:id="_uefeUcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.category.reverseDebugging" name="Reverse Debugging Commands" description="Set of commands for Reverse Debugging"/> + <categories xmi:id="_uefeUsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.svn.ui.command.category" name="SVN"/> + <categories xmi:id="_uefeU8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/> + <categories xmi:id="_uefeVMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/> + <categories xmi:id="_uefeVcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.category.tracing" name="Tracing Commands" description="Category for Tracing Commands"/> + <categories xmi:id="_uefeVsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/> + <categories xmi:id="_uefeV8Z5EeOSuo9mkUu2dw" elementId="pl.szpinda.plugin.tomcat.commands.category.key" name="Tomcat keys"/> + <categories xmi:id="_uefeWMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.codan.ui.commands.category" name="Code Analysis"/> + <categories xmi:id="_uefeWcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.xml.views.XPathView" name="XPath"/> + <categories xmi:id="_uegFYMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/> + <categories xmi:id="_uegFYcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/> + <categories xmi:id="_uegFYsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.file" name="File"/> + <categories xmi:id="_uegFY8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/> + <categories xmi:id="_uegFZMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.monitorCommands" name="Monitor Commands" description="Monitor Commands"/> + <categories xmi:id="_uegFZcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ptp.rm.lml.monitor.ui.jobCommands" name="Job Commands" description="Job Commands"/> + <categories xmi:id="_uegFZsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/> + <categories xmi:id="_uegFZ8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/> + <categories xmi:id="_uegFaMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/> + <categories xmi:id="_uegFacZ5EeOSuo9mkUu2dw" 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="_uegscMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/> + <categories xmi:id="_uegsccZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.ui.category.source" name="Source" description="Source commands"/> + <categories xmi:id="_uegscsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.cdt.debug.ui.category.runControl" name="Run Control Commands" description="Set of commands for Run Control"/> + <categories xmi:id="_uegsc8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.gef.category.view" name="View" description="View"/> + <categories xmi:id="_uegsdMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.php.ui.category.source" name="Source" description="PHP Source Actions"/> + <categories xmi:id="_uegsdcZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.help" name="Help"/> + <categories xmi:id="_uegsdsZ5EeOSuo9mkUu2dw" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="%terminal.view.insertion.description"/> + <categories xmi:id="_uegsd8Z5EeOSuo9mkUu2dw" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/> + <categories xmi:id="_uegseMZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ui.category.navigate" name="Navigate"/> + <categories xmi:id="_uegsecZ5EeOSuo9mkUu2dw" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/> + <categories xmi:id="_uegsesZ5EeOSuo9mkUu2dw" 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 bf94fbe414100412a5c91a5bb2caf0d33f11f037..603040ce653f91a078d4298a73a7fdad3871ca48 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 d9233408fd25224aa8b93763b47ca6e7aa15a556..6d5da90797eeb5fb7ef61040dedf58dc43b1a302 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/0.png b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4768f9574b046bb13ba7d5e57a31af547462687a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/0.png 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 new file mode 100644 index 0000000000000000000000000000000000000000..9abe3c5dfca657aa02d5841c2ea981d4cbd30700 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..56554ec38d3e023519caa92e643d159bddfcabc5 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..a95f60827ddd5cf84fb7081d4fce1a53aae0d8d0 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..d3c4c9ef3aa144a34c08308e7bf0f977b92399d4 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..ebe6698c28eb3d00c6ec5d89f9334eed07947f15 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/5.png differ diff --git a/homework/bin/hw3/EvaluatorTest.class b/homework/bin/hw3/EvaluatorTest.class index a540a36068d37ebddd5f2deedce47cdf0a32f5e6..d10fc92a102dd84f011d69d0a7ef881660338f69 100644 Binary files a/homework/bin/hw3/EvaluatorTest.class and b/homework/bin/hw3/EvaluatorTest.class differ diff --git a/homework/src/hw3/EvaluatorTest.java b/homework/src/hw3/EvaluatorTest.java index 7af1a92988361f86634d7a667004ec42bd9eb0a9..1b8d30597d582821dc172c8251194f7cee33f9e6 100644 --- a/homework/src/hw3/EvaluatorTest.java +++ b/homework/src/hw3/EvaluatorTest.java @@ -1,7 +1,11 @@ package hw3; import static org.junit.Assert.*; + +import java.util.Arrays; + import org.junit.Before; import org.junit.Test; + import api.IEvaluator; import api.Card; import api.Hand; @@ -29,6 +33,58 @@ public class EvaluatorTest { String msg = ("The newly constructed OnePairEvaluator(3, 4) should have ranking of 3 and hand size of 4"); assertEquals(msg, 3, onePairEval.getRanking()); assertEquals(msg, 4, onePairEval.handSize()); + } + + @Test + public void checkSameRankingDifferentSuitsCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d"); + String msg = ("The newly constructed cards[2c, 2d] should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkDifferentRankingCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("Kc, Qd"); + String msg = ("The newly constructed cards[Kc, Qd] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkMainCardsMoreThanRequiredCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h] should not satisfy the one pair evaluator"); + assertEquals(msg, false, onePairEval.canSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("2c, 2d, 3h"); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } + + @Test + public void checkAllCardsSubsetCanSatisfy2(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("6s, Jh, Ah, 10h, 6h, Js, 6c, Kh, Qh"); + Arrays.sort(cards); + String msg = ("The newly constructed cards[6s, Jh, Ah, 10h, 6h, Js, 6c, Kh, Qh]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, true, onePairEval.canSubsetSatisfy(cards)); + } + + @Test + public void checkCreateHand(){ + IEvaluator onePairEval = new OnePairEvaluator(3, 4); + Card[] cards =Card.createArray("6s, Jh, Ah, 10h, 6h, Js, 6c, Kh, Qh"); + Arrays.sort(cards); + int[] subset = {6, 8}; + Hand hand = onePairEval.createHand(cards, subset); + String msg = ("The newly constructed cards[2c, 2d, 3h]'s subset should satisfy the one pair evaluator"); + assertEquals(msg, "One Pair (3) [6s 6c: Ah Kh]", hand.toString()); } }