123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399 |
- <?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="_YO2S8T9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_YO2S8j9AEemkJ6es1zdyvw" bindingContexts="_YO2S9D9AEemkJ6es1zdyvw">
- <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList/>
</workbench>"/>
- <tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
- <tags>ModelMigrationProcessor.001</tags>
- <children xsi:type="basic:TrimmedWindow" xmi:id="_YO2S8j9AEemkJ6es1zdyvw" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_Y573UT9AEemkJ6es1zdyvw" label="%trimmedwindow.label.eclipseSDK" x="-32" y="5" width="1024" height="768">
- <persistedState key="coolBarVisible" value="true"/>
- <persistedState key="perspectiveBarVisible" value="true"/>
- <persistedState key="isRestored" value="true"/>
- <persistedState key="workingSets" value="<?xml version="1.0" encoding="UTF-8"?>
<workingSets/>"/>
- <persistedState key="aggregateWorkingSetId" value="Aggregate for window 1551788171146"/>
- <persistedState key="show_in_time" value="<?xml version="1.0" encoding="UTF-8"?>
<show_in_time/>"/>
- <tags>topLevel</tags>
- <tags>shellMaximized</tags>
- <children xsi:type="basic:PartSashContainer" xmi:id="_Y573UT9AEemkJ6es1zdyvw" selectedElement="_Y573Uj9AEemkJ6es1zdyvw" horizontal="true">
- <children xsi:type="advanced:PerspectiveStack" xmi:id="_Y573Uj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.perspectivestack" containerData="7500" selectedElement="_ZpXJID9AEemkJ6es1zdyvw">
- <children xsi:type="advanced:Perspective" xmi:id="_ZpXJID9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.j2ee.J2EEPerspective" selectedElement="_ZpXJIT9AEemkJ6es1zdyvw" label="Java EE" iconURI="platform:/plugin/org.eclipse.jst.j2ee.ui/icons/full/cview16/j2ee_perspective.gif">
- <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:print,persp.hideToolbarSC:org.eclipse.ui.edit.undo,persp.hideToolbarSC:org.eclipse.ui.edit.redo,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,"/>
- <tags>persp.actionSet:org.eclipse.mylyn.doc.actionSet</tags>
- <tags>persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation</tags>
- <tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags>
- <tags>persp.actionSet:org.eclipse.rse.core.search.searchActionSet</tags>
- <tags>persp.actionSet:org.eclipse.search.searchActionSet</tags>
- <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation</tags>
- <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation</tags>
- <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo</tags>
- <tags>persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet</tags>
- <tags>persp.actionSet:org.eclipse.ui.actionSet.keyBindings</tags>
- <tags>persp.actionSet:org.eclipse.ui.actionSet.openFiles</tags>
- <tags>persp.actionSet:org.eclipse.wst.jsdt.chromium.debug.ui.actionSets</tags>
- <tags>persp.actionSet:org.springsource.ide.eclipse.quicksearch.actionSet</tags>
- <tags>persp.actionSet:org.springsource.ide.eclipse.commons.launch.actionSet</tags>
- <tags>persp.actionSet:org.jkiss.dbeaver.search.searchActionSet</tags>
- <tags>persp.actionSet:org.eclipse.jst.j2ee.J2eeMainActionSet</tags>
- <tags>persp.actionSet:org.eclipse.jdt.ui.JavaActionSet</tags>
- <tags>persp.actionSet:org.eclipse.debug.ui.launchActionSet</tags>
- <tags>persp.actionSet:org.eclipse.debug.ui.debugActionSet</tags>
- <tags>persp.actionSet:org.eclipse.ui.NavigateActionSet</tags>
- <tags>persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer</tags>
- <tags>persp.viewSC:org.eclipse.wst.server.ui.ServersView</tags>
- <tags>persp.viewSC:org.eclipse.datatools.connectivity.DataSourceExplorerNavigator</tags>
- <tags>persp.viewSC:org.eclipse.ui.views.BookmarkView</tags>
- <tags>persp.viewSC:org.eclipse.ui.views.ContentOutline</tags>
- <tags>persp.viewSC:org.eclipse.ui.views.PropertySheet</tags>
- <tags>persp.viewSC:org.eclipse.ui.views.ResourceNavigator</tags>
- <tags>persp.viewSC:org.eclipse.wst.common.snippets.internal.ui.SnippetsView</tags>
- <tags>persp.viewSC:org.eclipse.ui.views.AllMarkersView</tags>
- <tags>persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks</tags>
- <tags>persp.viewSC:org.eclipse.search.ui.views.SearchView</tags>
- <tags>persp.viewSC:org.eclipse.ui.console.ConsoleView</tags>
- <tags>persp.showIn:org.eclipse.ui.navigator.ProjectExplorer</tags>
- <tags>persp.actionSet:org.eclipse.wst.ws.explorer.explorer</tags>
- <tags>persp.newWizSC:org.eclipse.m2e.core.wizards.Maven2ProjectWizard</tags>
- <tags>persp.showIn:com.genuitec.eclipse.meexplorer.MENavigator</tags>
- <tags>persp.newWizSC:org.springsource.ide.eclipse.commons.gettingstarted.wizard.boot.NewSpringBootWizard</tags>
- <tags>persp.newWizSC:org.springsource.ide.eclipse.gettingstarted.wizards.import.generic.newalias</tags>
- <tags>persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView</tags>
- <tags>persp.perspSC:org.eclipse.debug.ui.DebugPerspective</tags>
- <tags>persp.perspSC:org.eclipse.jdt.ui.JavaPerspective</tags>
- <tags>persp.perspSC:org.eclipse.ui.resourcePerspective</tags>
- <tags>persp.perspSC:org.eclipse.wst.web.ui.webDevPerspective</tags>
- <tags>persp.newWizSC:org.eclipse.jst.j2ee.ui.project.facet.EarProjectWizard</tags>
- <tags>persp.newWizSC:org.eclipse.jst.servlet.ui.project.facet.WebProjectWizard</tags>
- <tags>persp.newWizSC:org.eclipse.jst.ejb.ui.project.facet.EjbProjectWizard</tags>
- <tags>persp.newWizSC:org.eclipse.jst.j2ee.jca.ui.internal.wizard.ConnectorProjectWizard</tags>
- <tags>persp.newWizSC:org.eclipse.jst.j2ee.ui.project.facet.appclient.AppClientProjectWizard</tags>
- <tags>persp.newWizSC:org.eclipse.wst.web.ui.internal.wizards.SimpleWebProjectWizard</tags>
- <tags>persp.newWizSC:org.eclipse.jpt.ui.wizard.newJpaProject</tags>
- <tags>persp.newWizSC:org.eclipse.jst.servlet.ui.internal.wizard.AddServletWizard</tags>
- <tags>persp.newWizSC:org.eclipse.jst.ejb.ui.internal.wizard.AddSessionBeanWizard</tags>
- <tags>persp.newWizSC:org.eclipse.jst.ejb.ui.internal.wizard.AddMessageDrivenBeanWizard</tags>
- <tags>persp.newWizSC:org.eclipse.jpt.ui.wizard.newEntity</tags>
- <tags>persp.newWizSC:org.eclipse.jst.ws.creation.ui.wizard.serverwizard</tags>
- <tags>persp.newWizSC:org.eclipse.ui.wizards.new.folder</tags>
- <tags>persp.newWizSC:org.eclipse.ui.wizards.new.file</tags>
- <tags>persp.actionSet:org.eclipse.wst.server.ui.internal.webbrowser.actionSet</tags>
- <tags>persp.actionSet:org.eclipse.debug.ui.breakpointActionSet</tags>
- <tags>persp.actionSet:org.eclipse.eclemma.ui.CoverageActionSet</tags>
- <tags>persp.showIn:org.eclipse.eclemma.ui.CoverageView</tags>
- <tags>persp.newWizSC:org.eclipse.jpt.jpa.ui.wizard.newJpaProject</tags>
- <tags>persp.perspSC:org.eclipse.jpt.ui.jpaPerspective</tags>
- <tags>persp.actionSet:org.eclipse.text.quicksearch.actionSet</tags>
- <children xsi:type="basic:PartSashContainer" xmi:id="_ZpXJIT9AEemkJ6es1zdyvw" selectedElement="_ZpXJJz9AEemkJ6es1zdyvw" horizontal="true">
- <children xsi:type="basic:PartStack" xmi:id="_ZpXJIj9AEemkJ6es1zdyvw" elementId="topLeft" containerData="2500" selectedElement="_ZpXJIz9AEemkJ6es1zdyvw">
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJIz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.ProjectExplorer" ref="_Zd0AcD9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJJD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_Zd11oD9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJJT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_Zd2csD9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:Java</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJJj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.PackagesView" toBeRendered="false" ref="_Zo_8wD9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:Java Browsing</tags>
- </children>
- </children>
- <children xsi:type="basic:PartSashContainer" xmi:id="_ZpXJJz9AEemkJ6es1zdyvw" containerData="7500" selectedElement="_ZpXJKD9AEemkJ6es1zdyvw">
- <children xsi:type="basic:PartSashContainer" xmi:id="_ZpXJKD9AEemkJ6es1zdyvw" containerData="7000" selectedElement="_ZpXJKj9AEemkJ6es1zdyvw" horizontal="true">
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJKT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editorss" containerData="7000" ref="_ZdjhwD9AEemkJ6es1zdyvw"/>
- <children xsi:type="basic:PartStack" xmi:id="_ZpXJKj9AEemkJ6es1zdyvw" elementId="topRight" containerData="3000" selectedElement="_ZpXJKz9AEemkJ6es1zdyvw">
- <tags>active</tags>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJKz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ContentOutline" ref="_ZpDnIj9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJLD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" ref="_ZpEOMD9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:Mylyn</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJLT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.minimap.MinimapView" toBeRendered="false" ref="_ZpIfoD9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- </children>
- </children>
- <children xsi:type="basic:PartStack" xmi:id="_ZpXJLj9AEemkJ6es1zdyvw" elementId="bottomRight" containerData="3000" selectedElement="_ZpXJLz9AEemkJ6es1zdyvw">
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJLz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.AllMarkersView" ref="_ZpAj0D9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJMD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.PropertySheet" ref="_ZpBx8D9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJMT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.ServersView" ref="_ZpBx8T9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:Server</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJMj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.DataSourceExplorerNavigator" ref="_ZpCZAD9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:Data Management</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJMz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" ref="_ZpCZAT9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJND9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ProblemView" toBeRendered="false" ref="_ZpDAED9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJNT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.TaskList" toBeRendered="false" ref="_ZpDAET9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXwMD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.console.ConsoleView" toBeRendered="false" ref="_ZpDAEj9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXwMT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_ZpDAEz9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXwMj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_ZpDnID9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_ZpXwMz9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_ZpDnIT9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- </children>
- </children>
- </children>
- </children>
- </children>
- <children xsi:type="basic:PartStack" xmi:id="_Y573Uz9AEemkJ6es1zdyvw" elementId="stickyFolderRight" toBeRendered="false" containerData="2500">
- <children xsi:type="advanced:Placeholder" xmi:id="_Y573VD9AEemkJ6es1zdyvw" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_Y55bED9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:Help</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_Y573VT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_Y57QQD9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </children>
- <children xsi:type="advanced:Placeholder" xmi:id="_Y573Vj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_Y573UD9AEemkJ6es1zdyvw" closeable="true">
- <tags>View</tags>
- <tags>categoryTag:Help</tags>
- </children>
- </children>
- </children>
- <sharedElements xsi:type="basic:Part" xmi:id="_Y55bED9AEemkJ6es1zdyvw" 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" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Help</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_Y57QQD9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
- <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view>
<presentation currentPage="qroot" restore="true"/>
<standbyPart/>
</view>"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- <menus xmi:id="_b7fj0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.internal.introview">
- <tags>ViewMenu</tags>
- <tags>menuContribution:menu</tags>
- </menus>
- <toolbar xmi:id="_b7fj0T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.internal.introview" visible="false"/>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_Y573UD9AEemkJ6es1zdyvw" 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" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
- <tags>View</tags>
- <tags>categoryTag:Help</tags>
- </sharedElements>
- <sharedElements xsi:type="advanced:Area" xmi:id="_ZdjhwD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editorss">
- <children xsi:type="basic:PartStack" xmi:id="_ZdjhwT9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.primaryDataStack">
- <tags>org.eclipse.e4.primaryDataStack</tags>
- <tags>EditorStack</tags>
- </children>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_Zd0AcD9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
- <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view CommonNavigator.LINKING_ENABLED="0" currentWorkingSetName="Aggregate for window 1551788171146" org.eclipse.ui.navigator.resources.workingSets.showTopLevelWorkingSets="0">
<lastRecentlyUsedFilters/>
</view>"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- <menus xmi:id="_ZqvpMD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.ProjectExplorer">
- <tags>ViewMenu</tags>
- <tags>menuContribution:menu</tags>
- </menus>
- <toolbar xmi:id="_ZqvpMT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.ProjectExplorer"/>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_Zd11oD9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.navigator.ResourceNavigator"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_Zd2csD9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_Zo_8wD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.PackagesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.PackagesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java Browsing</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpAj0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.AllMarkersView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.AllMarkersView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view PRIMARY_SORT_FIELD="org.eclipse.ui.ide.allSeverityField" categoryGroup="org.eclipse.ui.ide.type" markerContentGenerator="org.eclipse.ui.ide.allMarkersGenerator" partName="Markers">
<columnWidths org.eclipse.ui.ide.allSeverityField="300" org.eclipse.ui.ide.locationField="90" org.eclipse.ui.ide.markerType="90" org.eclipse.ui.ide.pathField="120" org.eclipse.ui.ide.resourceField="90"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.allSeverityField"/>
<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="_aLN5AD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.AllMarkersView">
- <tags>ViewMenu</tags>
- <tags>menuContribution:menu</tags>
- </menus>
- <toolbar xmi:id="_aLOgED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.AllMarkersView"/>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpBx8D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.PropertySheet" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.properties.PropertySheet"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpBx8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.ServersView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.server.ui.internal.cnf.ServersView2"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.server.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Server</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpCZAD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.DataSourceExplorerNavigator" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Data Source Explorer" iconURI="platform:/plugin/org.eclipse.datatools.connectivity.ui.dse/icons/full/cview16/enterprise_explorer.gif" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.datatools.connectivity.ui.dse.views.DataSourceExplorerView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.datatools.connectivity.ui.dse"/>
- <tags>View</tags>
- <tags>categoryTag:Data Management</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpCZAT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets/icons/snippets_view.gif" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.common.snippets.internal.ui.SnippetsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.common.snippets"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpDAED9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpDAET9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.TaskList" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.TasksView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpDAEj9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpDAEz9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpDnID9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.progress.ProgressView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpDnIT9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.search2.internal.ui.SearchView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpDnIj9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
- <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- <tags>active</tags>
- <tags>activeOnClose</tags>
- <menus xmi:id="_aDMlcD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ContentOutline">
- <tags>ViewMenu</tags>
- <tags>menuContribution:menu</tags>
- </menus>
- <toolbar xmi:id="_aDMlcT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ContentOutline"/>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpEOMD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Task List" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/task-list.gif" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskListView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Mylyn</tags>
- </sharedElements>
- <sharedElements xsi:type="basic:Part" xmi:id="_ZpIfoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.minimap.MinimapView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Minimap" iconURI="platform:/plugin/org.eclipse.ui.workbench.texteditor/icons/full/eview16/minimap.png" tooltip="" closeable="true">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.minimap.MinimapView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.workbench.texteditor"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </sharedElements>
- <trimBars xmi:id="_Y6GPYD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.main.toolbar">
- <children xsi:type="menu:ToolBar" xmi:id="_ZDL58D9AEemkJ6es1zdyvw" elementId="group.file" toBeRendered="false">
- <tags>toolbarSeparator</tags>
- <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDL58T9AEemkJ6es1zdyvw" elementId="group.file" toBeRendered="false"/>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_ZDQLYD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.workbench.file">
- <tags>Draggable</tags>
- <children xsi:type="menu:HandledToolItem" xmi:id="_i4MM8CfvEeq9j5-P04oEqA" elementId="print" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.png" tooltip="Print" command="_YQG3ND9AEemkJ6es1zdyvw"/>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_ZDQycD9AEemkJ6es1zdyvw" elementId="group.edit" toBeRendered="false">
- <tags>toolbarSeparator</tags>
- <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDQycT9AEemkJ6es1zdyvw" elementId="group.edit" toBeRendered="false"/>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_ZDQycj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.workbench.edit" visible="false">
- <tags>Draggable</tags>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_ZDRZgD9AEemkJ6es1zdyvw" elementId="additions" toBeRendered="false">
- <tags>toolbarSeparator</tags>
- <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDRZgT9AEemkJ6es1zdyvw" elementId="additions" toBeRendered="false"/>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_lFZrYCfvEeq9j5-P04oEqA">
- <tags>Draggable</tags>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_aQjE8D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.launchActionSet">
- <tags>Draggable</tags>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_aPKk4D9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet">
- <tags>Draggable</tags>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_aP49oD9AEemkJ6es1zdyvw" elementId="org.eclipse.search.searchActionSet">
- <tags>Draggable</tags>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_aPiYUD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet">
- <tags>Draggable</tags>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_aQI1QD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.ws.explorer.explorer">
- <tags>Draggable</tags>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_ZDSAkD9AEemkJ6es1zdyvw" elementId="group.nav" toBeRendered="false">
- <tags>toolbarSeparator</tags>
- <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDSAkT9AEemkJ6es1zdyvw" elementId="group.nav" toBeRendered="false"/>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_ZDSnoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.workbench.navigate">
- <tags>Draggable</tags>
- <children xsi:type="menu:HandledToolItem" xmi:id="_i4RFcCfvEeq9j5-P04oEqA" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.png" tooltip="Pin Editor" enabled="false" type="Check" command="_YQEbHD9AEemkJ6es1zdyvw"/>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_ZDTOsD9AEemkJ6es1zdyvw" elementId="group.editor" toBeRendered="false">
- <tags>toolbarSeparator</tags>
- <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDTOsT9AEemkJ6es1zdyvw" elementId="group.editor" toBeRendered="false"/>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_ZDT1wD9AEemkJ6es1zdyvw" elementId="group.help" toBeRendered="false">
- <tags>toolbarSeparator</tags>
- <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDT1wT9AEemkJ6es1zdyvw" elementId="group.help" toBeRendered="false"/>
- </children>
- <children xsi:type="menu:ToolBar" xmi:id="_ZDUc0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.workbench.help" visible="false">
- <tags>Draggable</tags>
- </children>
- <children xsi:type="menu:ToolControl" xmi:id="_ZYliMD9AEemkJ6es1zdyvw" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
- <tags>stretch</tags>
- <tags>SHOW_RESTORE_MENU</tags>
- </children>
- <children xsi:type="menu:ToolControl" xmi:id="_ZYolgD9AEemkJ6es1zdyvw" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher">
- <tags>Draggable</tags>
- <tags>HIDEABLE</tags>
- <tags>SHOW_RESTORE_MENU</tags>
- </children>
- <children xsi:type="menu:ToolControl" xmi:id="_dqs3oD9AEemkJ6es1zdyvw" elementId="breadcrumb.toolcontrol" contributionURI="bundleclass://com.genuitec.eclipse.meexplorer/com.genuitec.eclipse.meexplorer.breadcrumb.e4.BreadCrumbContainer"/>
- </trimBars>
- <trimBars xmi:id="_ZZBnED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.trim.status" side="Bottom">
- <children xsi:type="menu:ToolControl" xmi:id="_ZZN0UD9AEemkJ6es1zdyvw" 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="_ZZjykD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.HeapStatus" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
- <tags>Draggable</tags>
- </children>
- <children xsi:type="menu:ToolControl" xmi:id="_ZZ37oD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
- <tags>Draggable</tags>
- </children>
- </trimBars>
- <trimBars xmi:id="_ZaiC8D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left">
- <children xsi:type="menu:ToolControl" xmi:id="_clQSgD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.perspectivestack(minimized)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack">
- <tags>TrimStack</tags>
- <tags>Draggable</tags>
- </children>
- </trimBars>
- <trimBars xmi:id="_ZajRED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.trim.vertical2" side="Right"/>
- </children>
- <bindingTables xmi:id="_YO2S8z9AEemkJ6es1zdyvw" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_YO2S9D9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTeUQD9AEemkJ6es1zdyvw" keySequence="ALT+F11" command="_YP40xD9AEemkJ6es1zdyvw">
- <tags>platform:win32</tags>
- </bindings>
- <bindings xmi:id="_YThXlT9AEemkJ6es1zdyvw" keySequence="SHIFT+INSERT" command="_YP2Ymj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlpBT9AEemkJ6es1zdyvw" keySequence="ALT+PAGE_UP" command="_YP_ilz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlpBz9AEemkJ6es1zdyvw" keySequence="ALT+PAGE_DOWN" command="_YQD0BD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTm3JT9AEemkJ6es1zdyvw" keySequence="SHIFT+DEL" command="_YP8fJj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTsWtj9AEemkJ6es1zdyvw" keySequence="CTRL+A" command="_YP-7Yz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9yj9AEemkJ6es1zdyvw" keySequence="CTRL+C" command="_YQAJoj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTvaAD9AEemkJ6es1zdyvw" keySequence="ALT+/" command="_YQFCGz9AEemkJ6es1zdyvw">
- <tags>locale:zh</tags>
- </bindings>
- <bindings xmi:id="_YTwoIT9AEemkJ6es1zdyvw" keySequence="CTRL+1" command="_YP6p-T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzEYj9AEemkJ6es1zdyvw" keySequence="CTRL+6" command="_YP7RHz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzrcj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+I" command="_YP6C6D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzrej9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+L" command="_YQIFVz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1gqz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+D" command="_YQIsYD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uyj9AEemkJ6es1zdyvw" keySequence="CTRL+X" command="_YP8fJj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V0T9AEemkJ6es1zdyvw" keySequence="CTRL+Y" command="_YP_ihD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V1D9AEemkJ6es1zdyvw" keySequence="CTRL+Z" command="_YP74KT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LDD9AEemkJ6es1zdyvw" keySequence="CTRL+V" command="_YP2Ymj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7nST9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+F9" command="_YP-Udj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7nTT9AEemkJ6es1zdyvw" keySequence="CTRL+INSERT" command="_YQAJoj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81Yz9AEemkJ6es1zdyvw" keySequence="CTRL+PAGE_UP" command="_YQHeTT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81ZD9AEemkJ6es1zdyvw" keySequence="CTRL+PAGE_DOWN" command="_YP6qBD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81Zj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F1" command="_YP404T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81Zz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F2" command="_YQDz4j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81aD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F3" command="_YQG3QD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_4sD9AEemkJ6es1zdyvw" keySequence="CTRL+F10" command="_YP3moT9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YQyMoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.textEditorScope" bindingContext="_YQOzAj9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTYNoD9AEemkJ6es1zdyvw" keySequence="END" command="_YQHeWj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTcfEj9AEemkJ6es1zdyvw" keySequence="INSERT" command="_YQCl7j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTdGIz9AEemkJ6es1zdyvw" keySequence="F2" command="_YP6qBj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YThXkD9AEemkJ6es1zdyvw" keySequence="HOME" command="_YQIFbT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YThXkT9AEemkJ6es1zdyvw" keySequence="SHIFT+END" command="_YP-UYD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTilsD9AEemkJ6es1zdyvw" keySequence="SHIFT+HOME" command="_YP9tQj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTka4z9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_UP" command="_YQJTfT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlB8T9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_DOWN" command="_YQD0ET9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTneMz9AEemkJ6es1zdyvw" keySequence="CTRL+BS" command="_YP1Kaj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTpTZT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+/" command="_YQIFcj9AEemkJ6es1zdyvw">
- <tags>locale:zh</tags>
- </bindings>
- <bindings xmi:id="_YTpTaD9AEemkJ6es1zdyvw" keySequence="CTRL++" command="_YQDNBj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTp6cD9AEemkJ6es1zdyvw" keySequence="CTRL+-" command="_YP-UUj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTp6cT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+CR" command="_YQG3Pz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTp6ej9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YP1xej9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrImD9AEemkJ6es1zdyvw" keySequence="CTRL+J" command="_YP3mqz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrImT9AEemkJ6es1zdyvw" keySequence="CTRL+K" command="_YQDz_T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrvoD9AEemkJ6es1zdyvw" keySequence="CTRL+L" command="_YQFpFD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTsWsD9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YQAJrD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9zT9AEemkJ6es1zdyvw" keySequence="CTRL+D" command="_YP3mvz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk1D9AEemkJ6es1zdyvw" keySequence="CTRL+F" command="_YP-7ZT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk2j9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+X" command="_YQAJrT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL5D9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+Y" command="_YP9tVz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy8z9AEemkJ6es1zdyvw" keySequence="CTRL+=" command="_YQDNBj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTwBED9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+Q" command="_YP6C8z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTwoIz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+A" command="_YQClwz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzrcT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Y" command="_YP0jUD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzrdT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+J" command="_YP5b9T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzreD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+K" command="_YP402T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT0SgT9AEemkJ6es1zdyvw" keySequence="SHIFT+CR" command="_YQIFaz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1gpj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YP1xej9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uwD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YP7RHj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V1T9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+J" command="_YP6DAz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V1j9AEemkJ6es1zdyvw" keySequence="ESC" command="_YQFCCj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5yFD9AEemkJ6es1zdyvw" keySequence="CTRL+DEL" command="_YP74IT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT6ZKD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+DEL" command="_YQFCIj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7nSz9AEemkJ6es1zdyvw" keySequence="CTRL+END" command="_YQD0Fj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OUT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_YQEbCz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OXz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_YQCl8j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OYD9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_UP" command="_YP403j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OYj9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_DOWN" command="_YQJTlD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81YT9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_LEFT" command="_YQAJmz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81Yj9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_RIGHT" command="_YP6C7z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81ZT9AEemkJ6es1zdyvw" keySequence="CTRL+HOME" command="_YP2YmD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9cfT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+INSERT" command="_YP5b4j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9cgD9AEemkJ6es1zdyvw" keySequence="CTRL+NUMPAD_MULTIPLY" command="_YQEbAD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-Dgj9AEemkJ6es1zdyvw" keySequence="CTRL+NUMPAD_ADD" command="_YQIsZz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-DhT9AEemkJ6es1zdyvw" keySequence="CTRL+NUMPAD_SUBTRACT" command="_YQG3PT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-Diz9AEemkJ6es1zdyvw" keySequence="CTRL+NUMPAD_DIVIDE" command="_YP404z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qmj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_YP-UZD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qmz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_YP5b6D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_RqT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+ARROW_UP" command="_YQIsez9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_Rqz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+ARROW_DOWN" command="_YP-7cT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_4sT9AEemkJ6es1zdyvw" keySequence="CTRL+F10" command="_YQG3Oj9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTcfED9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" bindingContext="_YQPaIj9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTcfET9AEemkJ6es1zdyvw" keySequence="INSERT" command="_YP9tVD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTdGMD9AEemkJ6es1zdyvw" keySequence="F4" command="_YP2_rj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YThXkj9AEemkJ6es1zdyvw" keySequence="SHIFT+INSERT" command="_YP40yz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTka4T9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_UP" command="_YQDz7D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlB8D9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_DOWN" command="_YP74FT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTneOT9AEemkJ6es1zdyvw" keySequence="CTRL+CR" command="_YP7RJD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL4T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+I" command="_YP-UUz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTx2Rj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+C" command="_YQAJgj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT05lT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP-UYj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2HsD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+U" command="_YQEa9z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81az9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_UP" command="_YQFCDT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81cj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YP-UXD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTcfEz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" bindingContext="_YQPaJD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTdGID9AEemkJ6es1zdyvw" keySequence="F1" command="_YP1xfT9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTdGIT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.window" bindingContext="_YO2S9T9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTdGIj9AEemkJ6es1zdyvw" keySequence="F2" command="_YP2YpT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTdGJj9AEemkJ6es1zdyvw" keySequence="F3" command="_YP6DBT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTdGLz9AEemkJ6es1zdyvw" keySequence="F4" command="_YP2_lz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTdtOD9AEemkJ6es1zdyvw" keySequence="F5" command="_YP9GPj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTdtOj9AEemkJ6es1zdyvw" keySequence="ALT+F7" command="_YQClzT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YThXlz9AEemkJ6es1zdyvw" keySequence="SHIFT+F2" command="_YQDM4j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTh-oD9AEemkJ6es1zdyvw" keySequence="SHIFT+F5" command="_YP-7dj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTilsz9AEemkJ6es1zdyvw" keySequence="ALT+F5" command="_YP-UdT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlB8z9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_LEFT" command="_YP3mpj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlpAT9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_RIGHT" command="_YP9GMj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlpAj9AEemkJ6es1zdyvw" keySequence="F11" command="_YQIFgT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlpBD9AEemkJ6es1zdyvw" keySequence="F12" command="_YQFCHj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlpBj9AEemkJ6es1zdyvw" keySequence="CTRL+BREAK" command="_YP3muj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlpCD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X X" command="_YQB-sT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTmQEj9AEemkJ6es1zdyvw" keySequence="DEL" command="_YP400T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTmQEz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+X G" command="_YQIFej9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTmQFD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X A" command="_YP2Ynz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTmQFT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X B" command="_YQJTkj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTmQFj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X E" command="_YQDNDz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTmQGD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X O" command="_YQDM4z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTm3ID9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X Q" command="_YP6C5D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTm3IT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X P" command="_YQIscD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTm3Ij9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X R" command="_YP_igj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTm3Iz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X T" command="_YP-7YD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTm3JD9AEemkJ6es1zdyvw" keySequence="SHIFT+DEL" command="_YP7RDT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTm3Jj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X J" command="_YQD0CT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTm3Jz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X M" command="_YP-7bT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTm3KD9AEemkJ6es1zdyvw" keySequence="ALT+X" command="_YQAJiz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTpTYD9AEemkJ6es1zdyvw" keySequence="ALT+V" command="_YP-7bD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTpTaT9AEemkJ6es1zdyvw" keySequence="CTRL+," command="_YP2Yoj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTpTaj9AEemkJ6es1zdyvw" keySequence="CTRL+-" command="_YQIFXD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTp6cj9AEemkJ6es1zdyvw" keySequence="CTRL+." command="_YQIsgD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTp6fD9AEemkJ6es1zdyvw" keySequence="ALT+?" command="_YP7RED9AEemkJ6es1zdyvw">
- <tags>locale:zh</tags>
- </bindings>
- <bindings xmi:id="_YTp6fT9AEemkJ6es1zdyvw" keySequence="CTRL+#" command="_YP3moz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhhD9AEemkJ6es1zdyvw" keySequence="ALT+C" command="_YP74ET9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrIkj9AEemkJ6es1zdyvw" keySequence="CTRL+H" command="_YQFCGj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrIkz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D J" command="_YQEbET9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrImj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D O" command="_YQAJqT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrvoj9AEemkJ6es1zdyvw" keySequence="CTRL+M" command="_YQFCFj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrvpD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D Q" command="_YP-7fj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrvpz9AEemkJ6es1zdyvw" keySequence="CTRL+N" command="_YQIsmz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTsWsT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D P" command="_YQGQKD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTsWsj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+?" command="_YP7RED9AEemkJ6es1zdyvw">
- <tags>locale:zh</tags>
- </bindings>
- <bindings xmi:id="_YTsWsz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+P" command="_YP40xz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9wD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D B" command="_YQIFjD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9wj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D E" command="_YQJTgz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9wz9AEemkJ6es1zdyvw" keySequence="CTRL+B" command="_YP2Ypj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9zD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+T" command="_YQAJnD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk0T9AEemkJ6es1zdyvw" keySequence="CTRL+E" command="_YP74Hj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk0j9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+B D" command="_YQIsZD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk0z9AEemkJ6es1zdyvw" keySequence="CTRL+F" command="_YP4NvT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk1j9AEemkJ6es1zdyvw" keySequence="CTRL+G" command="_YP1Kaz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk2D9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+B F" command="_YP6C7T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk2T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+H" command="_YP74Ez9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL4D9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+I" command="_YP3mpD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL5j9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+J" command="_YP74GT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL7T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+L" command="_YP6p8j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy8T9AEemkJ6es1zdyvw" keySequence="ALT+-" command="_YQAJuj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy8j9AEemkJ6es1zdyvw" keySequence="CTRL+=" command="_YP9GNz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy9D9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+M" command="_YQIsaD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy9j9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+N" command="_YP74Kz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTxPMD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D R" command="_YP_ihT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTx2QT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+R" command="_YQJTmz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTx2Qj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+B S" command="_YQFCAT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTx2RD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D T" command="_YP1xfD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTx2RT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+C" command="_YQFCIT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTx2ST9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+S" command="_YQDM9j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTx2Sj9AEemkJ6es1zdyvw" keySequence="CTRL+3" command="_YP6qBT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydUj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+B R" command="_YQCl7z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydUz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+T" command="_YP8fJT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydVT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+T" command="_YP5b0T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydVz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+U" command="_YP5b4D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydWT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F" command="_YQHeSj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydWj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+V" command="_YQHeYj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzEZD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+G" command="_YQDM6z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzEaT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+W" command="_YP8fIz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzEaj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D X" command="_YP_idT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzEaz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+H" command="_YQAJkz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzrdj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Z" command="_YQAJjT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT0Sgz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+N" command="_YQAJvD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT0ShD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+O" command="_YQIFiT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT0Sij9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+P" command="_YQDz5z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT0SjD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+A" command="_YQD0Aj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT05kT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+B" command="_YP402j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT05kz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP_iiT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1gqD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+S" command="_YQAJhD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1grj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+T" command="_YQClxT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2Hsz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+E" command="_YP5b2j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uwj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+V" command="_YP-UYz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uxj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+G" command="_YQIslj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uyT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+W" command="_YQIsej9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uyz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+H" command="_YP2_pT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V3D9AEemkJ6es1zdyvw" keySequence="ALT+CR" command="_YQFCBT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V3z9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D A" command="_YQFpFz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT4j8D9AEemkJ6es1zdyvw" keySequence="CTRL+_" command="_YP7RFD9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT4j8T9AEemkJ6es1zdyvw" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="true"/>
- </bindings>
- <bindings xmi:id="_YT4j8j9AEemkJ6es1zdyvw" keySequence="CTRL+P" command="_YQG3ND9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT4j8z9AEemkJ6es1zdyvw" keySequence="CTRL+Q" command="_YQHeRD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT4j9T9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+B" command="_YQDz-T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LAj9AEemkJ6es1zdyvw" keySequence="CTRL+S" command="_YP-UVD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LCT9AEemkJ6es1zdyvw" keySequence="CTRL+U" command="_YP_ieT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LDj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+G" command="_YQDNED9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LED9AEemkJ6es1zdyvw" keySequence="CTRL+W" command="_YP_ikj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5yED9AEemkJ6es1zdyvw" keySequence="CTRL+{" command="_YP7RFD9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT5yET9AEemkJ6es1zdyvw" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="false"/>
- </bindings>
- <bindings xmi:id="_YT5yEj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+M" command="_YQIFgz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5yEz9AEemkJ6es1zdyvw" keySequence="CTRL+DEL" command="_YQIFYT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5yFT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+A" command="_YQD0FD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5yGj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E L" command="_YP2Yoz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5yHD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E N" command="_YQIshz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT6ZID9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E P" command="_YP1KZz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT6ZIT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E R" command="_YP6C-D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT6ZIz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E E" command="_YP3mqD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT6ZJD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+T" command="_YP3moD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT6ZJT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E G" command="_YP8fLD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT6ZJz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E J" command="_YP2YmT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT6ZKT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E T" command="_YP2_sD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7AMD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E S" command="_YP-7ZD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7AMT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q H" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT7AMj9AEemkJ6es1zdyvw" 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="_YT7AMz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q J" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT7AND9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/>
- </bindings>
- <bindings xmi:id="_YT7ANj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q L" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT7ANz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/>
- </bindings>
- <bindings xmi:id="_YT7AOD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q K" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT7AOT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.mylyn.tasks.ui.views.tasks"/>
- </bindings>
- <bindings xmi:id="_YT7AOj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+ARROW_UP" command="_YQDM3D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7AOz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q B" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT7APD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/>
- </bindings>
- <bindings xmi:id="_YT7nQD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+ARROW_DOWN" command="_YQJTeD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7nQj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q D" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT7nQz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/>
- </bindings>
- <bindings xmi:id="_YT7nRT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+ARROW_RIGHT" command="_YQCl6D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7nRz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q C" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT7nSD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/>
- </bindings>
- <bindings xmi:id="_YT7nSj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+F12" command="_YQIsaj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OUD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_YQDM9T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OVz9AEemkJ6es1zdyvw" keySequence="CTRL+F4" command="_YP_ikj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OXT9AEemkJ6es1zdyvw" keySequence="CTRL+F6" command="_YP40yD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OXj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_YP7RFz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81aT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F7" command="_YQIFhD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81bj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F8" command="_YP7REz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81cD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F9" command="_YP-Ucj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9cdD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F11" command="_YQAJiT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9cej9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F12" command="_YP1xjT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9cez9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q X" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT9cfD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/>
- </bindings>
- <bindings xmi:id="_YT9cfj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q Z" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT9cfz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/>
- </bindings>
- <bindings xmi:id="_YT-DgD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q Y" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT-DgT9AEemkJ6es1zdyvw" 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="_YT-DhD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F4" command="_YP8fIz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-Dij9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F6" command="_YQDNAT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-DjD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F7" command="_YQD0GD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-DjT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q P" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT-Djj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/>
- </bindings>
- <bindings xmi:id="_YT-qkT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q O" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT-qkj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/>
- </bindings>
- <bindings xmi:id="_YT-qmT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q Q" command="_YQDz8T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qnD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q T" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT-qnT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/>
- </bindings>
- <bindings xmi:id="_YT_RoD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q S" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT_RoT9AEemkJ6es1zdyvw" 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="_YT_Roj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q V" command="_YQDz8T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YT_Roz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/>
- </bindings>
- <bindings xmi:id="_YT_Rpz9AEemkJ6es1zdyvw" keySequence="CTRL+F7" command="_YQAJoz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_RqD9AEemkJ6es1zdyvw" keySequence="CTRL+F8" command="_YP6p_T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_Rqj9AEemkJ6es1zdyvw" keySequence="CTRL+F9" command="_YP5b3j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_4sz9AEemkJ6es1zdyvw" keySequence="CTRL+F11" command="_YQHeYD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_4tj9AEemkJ6es1zdyvw" keySequence="CTRL+F12" command="_YP403T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_iP76ICfvEeq9j5-P04oEqA" keySequence="ALT+CTRL+SHIFT+L" command="_iPMTQifvEeq9j5-P04oEqA"/>
- </bindingTables>
- <bindingTables xmi:id="_YTdGJD9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_YQOzHD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTdGJT9AEemkJ6es1zdyvw" keySequence="F3" command="_YP1xfz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YThXlj9AEemkJ6es1zdyvw" keySequence="SHIFT+F2" command="_YQCl2D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy9z9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+O" command="_YP1xdz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT05kj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP2_lj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2HtT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YQIFaj9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTdGJz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.genericeditor.genericEditorContext" bindingContext="_YQPaFT9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTdGKD9AEemkJ6es1zdyvw" keySequence="F3" command="_YQHeRT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uxz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+G" command="_YQHeWT9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTdGKT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_YQPaJj9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTdGKj9AEemkJ6es1zdyvw" keySequence="F3" command="_YQEa8T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTdGMT9AEemkJ6es1zdyvw" keySequence="F4" command="_YP-7dT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YThXmD9AEemkJ6es1zdyvw" keySequence="SHIFT+F2" command="_YQFCLz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk1z9AEemkJ6es1zdyvw" keySequence="CTRL+G" command="_YQDz_z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL4z9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+I" command="_YQCl1T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL5z9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+J" command="_YQDM3T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy8D9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+L" command="_YP-7hj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy9T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+M" command="_YQHeXD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTx2SD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+C" command="_YP7RBT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydWD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+U" command="_YP6C7j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzrcD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+H" command="_YQJTmD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzrdz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Z" command="_YP-UdD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT0Shz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+O" command="_YP4Nsj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT05lz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YQDM-z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1gqj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+S" command="_YQDM8T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1grz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+T" command="_YP401j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uxD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+V" command="_YP6C8T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uyD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+G" command="_YQClyT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V0D9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+H" command="_YQFCDj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7ANT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q J" command="_YQIFUj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7nRD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q D" command="_YQD0Ej9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qkD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q P" command="_YQDNCD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qnj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q T" command="_YQDM2D9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTdGKz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_YQOzED9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTdGLD9AEemkJ6es1zdyvw" keySequence="F3" command="_YQClwD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YToFSD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+/" command="_YQAJuT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrIlj9AEemkJ6es1zdyvw" keySequence="CTRL+I" command="_YQG3OD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrvsD9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YQCl1D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL6z9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+\" command="_YQDz4D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTvaBj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQClxD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT0SjT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+A" command="_YQJTlT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1gpD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQIFZz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2HuT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YQIslz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT384D9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+>" command="_YQFpGD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81bT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_UP" command="_YQD0DD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81dD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YQEa-T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9ccz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_YP2_oj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9ceD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_YQDM5T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qlT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_UP" command="_YP5b8j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qmD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_YP-7hT9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTdGLT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.perspective" bindingContext="_YQPaKT9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_YTdtMD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.navigator" bindingContext="_YQOzBT9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_YTdtMj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.script.focused" bindingContext="_YQOzDj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_YTdtND9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.contexts.taskview" bindingContext="_YQPaJz9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTdtNT9AEemkJ6es1zdyvw" keySequence="F5" command="_YQIFZj9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTdtNj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.debugging" bindingContext="_YQPaGD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTdtNz9AEemkJ6es1zdyvw" keySequence="F5" command="_YP2_nj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTdtOT9AEemkJ6es1zdyvw" keySequence="F6" command="_YP-UaD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTiltD9AEemkJ6es1zdyvw" keySequence="F7" command="_YQIsiD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTka4D9AEemkJ6es1zdyvw" keySequence="F8" command="_YQCl5D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT4j9j9AEemkJ6es1zdyvw" keySequence="CTRL+R" command="_YQAJpz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LAT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+3" command="_YP2_mT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OUj9AEemkJ6es1zdyvw" keySequence="CTRL+F2" command="_YQFCKj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OWD9AEemkJ6es1zdyvw" keySequence="CTRL+F5" command="_YQIFeT9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YThXkz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.EditContext" bindingContext="_YQOzAD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YThXlD9AEemkJ6es1zdyvw" keySequence="SHIFT+INSERT" command="_YP9tTT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTka4j9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_UP" command="_YP1KaD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTlpAD9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_RIGHT" command="_YQIFfj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzEYD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+V" command="_YP9tTT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1goj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQEbIT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT7nTD9AEemkJ6es1zdyvw" keySequence="CTRL+INSERT" command="_YQEbIT9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTilsT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset.focused" bindingContext="_YQPaFz9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_YTiltT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset" bindingContext="_YQOzFz9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_YTmQED9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset.edit" bindingContext="_YQOzGD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_YTneMD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" bindingContext="_YQOzCj9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTneMT9AEemkJ6es1zdyvw" keySequence="ALT+X" command="_YQJTiD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTosUj9AEemkJ6es1zdyvw" keySequence="ALT+Q" command="_YQGQJj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTosVD9AEemkJ6es1zdyvw" keySequence="ALT+S" command="_YP-7cD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTp6cz9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YP1xhz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhhT9AEemkJ6es1zdyvw" keySequence="ALT+C" command="_YP6qET9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrIkT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+X" command="_YP_iiD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9xD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+R" command="_YQHeXz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTvaAT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQEbDj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LBz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+D" command="_YP74GD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTneND9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_YQPaHj9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTneNT9AEemkJ6es1zdyvw" keySequence="ALT+Y" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTosUT9AEemkJ6es1zdyvw" keySequence="ALT+P" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTosUz9AEemkJ6es1zdyvw" keySequence="ALT+R" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTosVT9AEemkJ6es1zdyvw" keySequence="ALT+S" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTosVj9AEemkJ6es1zdyvw" keySequence="ALT+T" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTpTYT9AEemkJ6es1zdyvw" keySequence="ALT+V" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTpTYj9AEemkJ6es1zdyvw" keySequence="ALT+W" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTp6gD9AEemkJ6es1zdyvw" keySequence="ALT+H" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhgD9AEemkJ6es1zdyvw" keySequence="ALT+L" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhgT9AEemkJ6es1zdyvw" keySequence="ALT+N" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhgj9AEemkJ6es1zdyvw" keySequence="ALT+A" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhgz9AEemkJ6es1zdyvw" keySequence="ALT+B" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhhj9AEemkJ6es1zdyvw" keySequence="ALT+C" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhhz9AEemkJ6es1zdyvw" keySequence="ALT+D" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhiD9AEemkJ6es1zdyvw" keySequence="ALT+E" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTqhiT9AEemkJ6es1zdyvw" keySequence="ALT+F" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrIkD9AEemkJ6es1zdyvw" keySequence="ALT+G" command="_YQAJtz9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTneNj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_YQPaGT9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTneNz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+," command="_YQHeST9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YToFQj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+." command="_YQFCEz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTtk1T9AEemkJ6es1zdyvw" keySequence="CTRL+G" command="_YQFCFD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTneOj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_YQOzAT9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTneOz9AEemkJ6es1zdyvw" keySequence="CTRL+CR" command="_YP2_rz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V2z9AEemkJ6es1zdyvw" keySequence="ALT+CR" command="_YQAJkj9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YToFRD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_YQOzDT9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YToFRT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+/" command="_YP_iez9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTp6dD9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YQBXoD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrIlD9AEemkJ6es1zdyvw" keySequence="CTRL+I" command="_YP9GMD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrvqD9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YP-7Zj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL6T9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+\" command="_YP4Nsz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy-D9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+O" command="_YP74JD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTvaAj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQD0Fz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTxPMT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+B" command="_YQJTgT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydUD9AEemkJ6es1zdyvw" keySequence="CTRL+2 R" command="_YQFCCT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzEZT9AEemkJ6es1zdyvw" keySequence="CTRL+7" command="_YQBXoD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzrfD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+M" command="_YP6qBz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1goD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQBXoD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1gsD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+U" command="_YQEbGD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2Htj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YQIFaj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LBT9AEemkJ6es1zdyvw" keySequence="CTRL+T" command="_YQClwT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OVD9AEemkJ6es1zdyvw" keySequence="CTRL+F3" command="_YQIsfT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81aj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_UP" command="_YP-7fT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81cT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YP403z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9ccT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_YP9GPD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9cdj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_YP3muz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-Dgz9AEemkJ6es1zdyvw" keySequence="CTRL+2 M" command="_YP9GQT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-Dhj9AEemkJ6es1zdyvw" keySequence="CTRL+2 L" command="_YP3mrz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qkz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_UP" command="_YP_ilD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qlj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_YP-7aD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_RpD9AEemkJ6es1zdyvw" keySequence="CTRL+2 F" command="_YQIsZj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_iQD18CfvEeq9j5-P04oEqA" keySequence="CTRL+SHIFT+'" command="_iPMTQSfvEeq9j5-P04oEqA"/>
- </bindingTables>
- <bindingTables xmi:id="_YToFRj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_YQOzAz9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YToFRz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+/" command="_YP-7hD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTp6dz9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YQCl5z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrIlT9AEemkJ6es1zdyvw" keySequence="CTRL+I" command="_YP-UZT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTrvrz9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YP1xmD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL6j9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+\" command="_YP40zj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuy-T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+O" command="_YP9tRT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTvaBT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQDM-D9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydUT9AEemkJ6es1zdyvw" keySequence="CTRL+2 R" command="_YP6qCj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydVD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+T" command="_YP-7hz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTydVj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E" command="_YQAJjD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzEZz9AEemkJ6es1zdyvw" keySequence="CTRL+7" command="_YQCl5z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT0SgD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+M" command="_YP2_qT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1goz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQCl5z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2Hsj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+U" command="_YP8fIj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2HuD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YP3mtT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LBj9AEemkJ6es1zdyvw" keySequence="CTRL+T" command="_YQDM3j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OVT9AEemkJ6es1zdyvw" keySequence="CTRL+F3" command="_YQAJqD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81bD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_UP" command="_YP2_kj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81cz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YQEbFT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9ccj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_YQIFbD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9cdz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_YQDz7T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-Dhz9AEemkJ6es1zdyvw" keySequence="CTRL+2 L" command="_YQIsfz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qlD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_UP" command="_YQJTnj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-qlz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_YP5b4T9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT_RpT9AEemkJ6es1zdyvw" keySequence="CTRL+2 F" command="_YP9tUD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YToFST9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql" bindingContext="_YQOzBD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_YTpTYz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.context" bindingContext="_YQOzIz9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTpTZD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+CR" command="_YP74Gz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9wT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+1" command="_YQDNBD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OYT9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_UP" command="_YQIFXz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT8OYz9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_DOWN" command="_YQAJnz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_OE19oEvkEemRUu80Py4P3w" keySequence="CTRL+BS" command="_OB6lcEvkEemRUu80Py4P3w"/>
- <bindings xmi:id="_OFRbcEvkEemRUu80Py4P3w" keySequence="CTRL+DEL" command="_OB6lcUvkEemRUu80Py4P3w"/>
- </bindingTables>
- <bindingTables xmi:id="_YTp6dT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_YQPaLD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTp6dj9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YQBXoD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzEZj9AEemkJ6es1zdyvw" keySequence="CTRL+7" command="_YQBXoD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1goT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQBXoD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTp6eD9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.yeditScope" bindingContext="_YQPaKD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTp6eT9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YP1xkD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1gpT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YP1xkD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2Huj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YQIFWj9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTp6fj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.script" bindingContext="_YQOzCT9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_YTrvpT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_YQOzCD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTrvpj9AEemkJ6es1zdyvw" keySequence="CTRL+N" command="_YQDNCj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V2j9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+M" command="_YP-UeT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT3V3j9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+N" command="_YQIsaz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LBD9AEemkJ6es1zdyvw" keySequence="CTRL+T" command="_YP6qCz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LDz9AEemkJ6es1zdyvw" keySequence="CTRL+W" command="_YQDM0D9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTrvqT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.editors.task" bindingContext="_YQPaIz9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTrvqj9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YQIsdD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTuL4j9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+I" command="_YP-UUz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTx2Rz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+C" command="_YQAJgj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTzrfz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+M" command="_YP1xlj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT05lj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP-UYj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1gqT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+S" command="_YP8fKz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2HsT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+U" command="_YQEa9z9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTrvqz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" bindingContext="_YQPaJT9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTrvrD9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YP2Ykj9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTrvrT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_YQPaEj9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTrvrj9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YP40wz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2Htz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YP3muD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTsWtD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.serverViewScope" bindingContext="_YQPaFD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTsWtT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+P" command="_YQEa8j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9xT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+R" command="_YQIshD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YTs9yz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+S" command="_YP6C_j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT5LCD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+D" command="_YQD0Az9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTs9xj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_YQPaLT9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTs9xz9AEemkJ6es1zdyvw" keySequence="CTRL+C" command="_YP6qFT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_iQIHYCfvEeq9j5-P04oEqA" keySequence="CTRL+ARROW_LEFT" command="_iPLsMifvEeq9j5-P04oEqA"/>
- </bindingTables>
- <bindingTables xmi:id="_YTs9yD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_YQPaHT9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTs9yT9AEemkJ6es1zdyvw" keySequence="CTRL+C" command="_YP40yj9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTvaAz9AEemkJ6es1zdyvw" elementId="org.eclipse.core.runtime.xml" bindingContext="_YQOzFD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTvaBD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQFCHz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT1grD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+D" command="_YP_ieD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTwBET9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.classFileEditorScope" bindingContext="_YQOzCz9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTwoID9AEemkJ6es1zdyvw" keySequence="CTRL+1" command="_YQIskD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTxPMj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_YQOzDD9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTx2QD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+B" command="_YQJTgT9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTzrcz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" bindingContext="_YQOzJT9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTzrdD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+I" command="_YQIscz9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YTzrfT9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" bindingContext="_YQOzIT9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YTzrfj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+M" command="_YP7RBD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT05lD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YQIsbj9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uwz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+V" command="_YP-7Zz9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YT0ShT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" bindingContext="_YQPaKj9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YT0Shj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+O" command="_YP2Ykj9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YT05mD9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.meExplorerScope" bindingContext="_YQPaET9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YT05mT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP2YpT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT2uxT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+V" command="_YP1xlD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YT3V0j9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.console" bindingContext="_YQOzJj9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YT3V0z9AEemkJ6es1zdyvw" keySequence="CTRL+Z" command="_YQIsdj9AEemkJ6es1zdyvw">
- <tags>platform:win32</tags>
- </bindings>
- <bindings xmi:id="_YT4j9z9AEemkJ6es1zdyvw" keySequence="CTRL+R" command="_YQCl0T9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YT8OWT9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsf.facesconfig.editorContext" bindingContext="_YQPaLj9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YT8OWj9AEemkJ6es1zdyvw" keySequence="CTRL+F5" command="_YQClzT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-DiD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F5" command="_YQD0GD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_YT8OWz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.editorContext" bindingContext="_YQOzHz9AEemkJ6es1zdyvw">
- <bindings xmi:id="_YT8OXD9AEemkJ6es1zdyvw" keySequence="CTRL+F5" command="_YQClzT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT81bz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F9" command="_YP-UZz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9ccD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F10" command="_YQIsdz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9cdT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F11" command="_YQIFfT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT9ceT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F12" command="_YQIsjD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_YT-DiT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F5" command="_YQD0GD9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_Zdl-AT9AEemkJ6es1zdyvw" bindingContext="_Zdl-AD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdmlET9AEemkJ6es1zdyvw" bindingContext="_ZdmlED9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdmlEz9AEemkJ6es1zdyvw" bindingContext="_ZdmlEj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdmlFT9AEemkJ6es1zdyvw" bindingContext="_ZdmlFD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdnMIT9AEemkJ6es1zdyvw" bindingContext="_ZdnMID9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdnMIz9AEemkJ6es1zdyvw" bindingContext="_ZdnMIj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdnMJT9AEemkJ6es1zdyvw" bindingContext="_ZdnMJD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdnzMT9AEemkJ6es1zdyvw" bindingContext="_ZdnzMD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdnzMz9AEemkJ6es1zdyvw" bindingContext="_ZdnzMj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdnzNT9AEemkJ6es1zdyvw" bindingContext="_ZdnzND9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdnzNz9AEemkJ6es1zdyvw" bindingContext="_ZdnzNj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdoaQT9AEemkJ6es1zdyvw" bindingContext="_ZdoaQD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdoaQz9AEemkJ6es1zdyvw" bindingContext="_ZdoaQj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdoaRT9AEemkJ6es1zdyvw" bindingContext="_ZdoaRD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdoaRz9AEemkJ6es1zdyvw" bindingContext="_ZdoaRj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdpBUT9AEemkJ6es1zdyvw" bindingContext="_ZdpBUD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdpBUz9AEemkJ6es1zdyvw" bindingContext="_ZdpBUj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdpBVT9AEemkJ6es1zdyvw" bindingContext="_ZdpBVD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdpBVz9AEemkJ6es1zdyvw" bindingContext="_ZdpBVj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdpoYT9AEemkJ6es1zdyvw" bindingContext="_ZdpoYD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdpoYz9AEemkJ6es1zdyvw" bindingContext="_ZdpoYj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdpoZT9AEemkJ6es1zdyvw" bindingContext="_ZdpoZD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdqPcT9AEemkJ6es1zdyvw" bindingContext="_ZdqPcD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdqPcz9AEemkJ6es1zdyvw" bindingContext="_ZdqPcj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdqPdT9AEemkJ6es1zdyvw" bindingContext="_ZdqPdD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdq2gT9AEemkJ6es1zdyvw" bindingContext="_Zdq2gD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdq2gz9AEemkJ6es1zdyvw" bindingContext="_Zdq2gj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdq2hT9AEemkJ6es1zdyvw" bindingContext="_Zdq2hD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdq2hz9AEemkJ6es1zdyvw" bindingContext="_Zdq2hj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdrdkT9AEemkJ6es1zdyvw" bindingContext="_ZdrdkD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdrdkz9AEemkJ6es1zdyvw" bindingContext="_Zdrdkj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdrdlT9AEemkJ6es1zdyvw" bindingContext="_ZdrdlD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdsEoT9AEemkJ6es1zdyvw" bindingContext="_ZdsEoD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdsEoz9AEemkJ6es1zdyvw" bindingContext="_ZdsEoj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdsEpT9AEemkJ6es1zdyvw" bindingContext="_ZdsEpD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdsrsT9AEemkJ6es1zdyvw" bindingContext="_ZdsrsD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdsrsz9AEemkJ6es1zdyvw" bindingContext="_Zdsrsj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdsrtT9AEemkJ6es1zdyvw" bindingContext="_ZdsrtD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdtSwT9AEemkJ6es1zdyvw" bindingContext="_ZdtSwD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdtSwz9AEemkJ6es1zdyvw" bindingContext="_ZdtSwj9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdtSxT9AEemkJ6es1zdyvw" bindingContext="_ZdtSxD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdt50T9AEemkJ6es1zdyvw" bindingContext="_Zdt50D9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdt50z9AEemkJ6es1zdyvw" bindingContext="_Zdt50j9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdug4D9AEemkJ6es1zdyvw" bindingContext="_Zdt51D9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdug4j9AEemkJ6es1zdyvw" bindingContext="_Zdug4T9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdug5D9AEemkJ6es1zdyvw" bindingContext="_Zdug4z9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdvH8T9AEemkJ6es1zdyvw" bindingContext="_ZdvH8D9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdwWED9AEemkJ6es1zdyvw" bindingContext="_ZdvvAD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdwWEj9AEemkJ6es1zdyvw" bindingContext="_ZdwWET9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdw9IT9AEemkJ6es1zdyvw" bindingContext="_Zdw9ID9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_Zdw9Iz9AEemkJ6es1zdyvw" bindingContext="_Zdw9Ij9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdxkMD9AEemkJ6es1zdyvw" bindingContext="_Zdw9JD9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdxkMj9AEemkJ6es1zdyvw" bindingContext="_ZdxkMT9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdxkND9AEemkJ6es1zdyvw" bindingContext="_ZdxkMz9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_ZdxkNj9AEemkJ6es1zdyvw" bindingContext="_ZdxkNT9AEemkJ6es1zdyvw"/>
- <bindingTables xmi:id="_iP8hMCfvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jetEditorScope" bindingContext="_iPRy0CfvEeq9j5-P04oEqA">
- <bindings xmi:id="_iP8hMSfvEeq9j5-P04oEqA" keySequence="CTRL+SHIFT+P" command="_iPLsMCfvEeq9j5-P04oEqA"/>
- <bindings xmi:id="_iQALkCfvEeq9j5-P04oEqA" keySequence="CTRL+SHIFT+F" command="_iPM6UCfvEeq9j5-P04oEqA"/>
- <bindings xmi:id="_iQCn0CfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+R" command="_iPLsNCfvEeq9j5-P04oEqA"/>
- <bindings xmi:id="_iQCn0SfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+S" command="_iPMTQCfvEeq9j5-P04oEqA"/>
- <bindings xmi:id="_iQDO4CfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+T" command="_iPM6USfvEeq9j5-P04oEqA"/>
- <bindings xmi:id="_iQD18SfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+L" command="_YP6p8j9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_iQG5QCfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+ARROW_UP" command="_YP-7fT9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_iQG5QSfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YP403z9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_iQHgUCfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+ARROW_LEFT" command="_YP9GPD9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_iQHgUSfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_YP3muz9AEemkJ6es1zdyvw"/>
- <bindings xmi:id="_iQHgUifvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+PAGE_UP" command="_iPMTRifvEeq9j5-P04oEqA"/>
- </bindingTables>
- <bindingTables xmi:id="_iQFEECfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesView.SingleRepository" bindingContext="_iPRy0SfvEeq9j5-P04oEqA">
- <bindings xmi:id="_iQFrICfvEeq9j5-P04oEqA" keySequence="F2" command="_YP400z9AEemkJ6es1zdyvw"/>
- </bindingTables>
- <bindingTables xmi:id="_i0xFgSfvEeq9j5-P04oEqA" bindingContext="_i0xFgCfvEeq9j5-P04oEqA"/>
- <bindingTables xmi:id="_i0xskSfvEeq9j5-P04oEqA" bindingContext="_i0xskCfvEeq9j5-P04oEqA"/>
- <rootContext xmi:id="_YO2S9D9AEemkJ6es1zdyvw" 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="_YO2S9T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open">
- <children xmi:id="_YO2S9j9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/>
- <children xmi:id="_YQOzAD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.EditContext" name="Terminal Control in Focus" description="Show modified keyboard shortcuts in context menu"/>
- <children xmi:id="_YQOzAT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/>
- <children xmi:id="_YQOzAj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context">
- <children xmi:id="_YQOzAz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context">
- <children xmi:id="_YQPaJj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/>
- </children>
- <children xmi:id="_YQOzBD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql" name="SQL 编辑器上下文">
- <children xmi:id="_YQOzCT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.script" name="SQL Script Editor Context"/>
- <children xmi:id="_YQOzFz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset" name="结果查看器上下文" description="结果查看器上下文">
- <children xmi:id="_YQOzGD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset.edit" name="结果编辑上下文" description="结果编辑上下文"/>
- </children>
- <children xmi:id="_YQPaFz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset.focused" name="结果查看器上下文" description="结果查看器上下文"/>
- </children>
- <children xmi:id="_YQOzCj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" name="Editing SQL" description="Editing SQL Context"/>
- <children xmi:id="_YQOzCz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.classFileEditorScope" name="Browsing attached Java Source" description="Browsing attached Java Source Context"/>
- <children xmi:id="_YQOzDT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/>
- <children xmi:id="_YQOzDj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.script.focused" name="SQL Script Editor Context"/>
- <children xmi:id="_YQOzED9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors">
- <children xmi:id="_YQOzET9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/>
- <children xmi:id="_YQOzEj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/>
- <children xmi:id="_YQOzEz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.core.jspsource" name="JSP Source" description="JSP Source"/>
- <children xmi:id="_YQOzFD9AEemkJ6es1zdyvw" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/>
- <children xmi:id="_YQOzFT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/>
- <children xmi:id="_YQOzFj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/>
- <children xmi:id="_YQOzGT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/>
- <children xmi:id="_YQOzGz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/>
- <children xmi:id="_YQOzHT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/>
- <children xmi:id="_YQOzID9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/>
- <children xmi:id="_YQOzIT9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" name="Editing JSP Source" description="Editing JSP Source"/>
- <children xmi:id="_YQPaED9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/>
- <children xmi:id="_YQPaFj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.json.core.jsonsource" name="%scope.structured.text.editor.json.name" description="%scope.structured.text.editor.json.description"/>
- <children xmi:id="_YQPaHz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/>
- <children xmi:id="_YQPaIT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/>
- <children xmi:id="_YQPaKz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/>
- <children xmi:id="_YQPaLz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/>
- </children>
- <children xmi:id="_YQOzHD9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/>
- <children xmi:id="_YQOzHz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.editorContext" name="Using Web Page Editor" description="Key binding context when using the web page editor"/>
- <children xmi:id="_YQOzIz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.context" name="Inline Search is Active"/>
- <children xmi:id="_YQPaEj9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/>
- <children xmi:id="_YQPaFT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.genericeditor.genericEditorContext" name="in Generic Code Editor" description="When editing in the Generic Code Editor"/>
- <children xmi:id="_YQPaID9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/>
- <children xmi:id="_YQPaIz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.editors.task" name="In Tasks Editor"/>
- <children xmi:id="_YQPaJD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context">
- <children xmi:id="_YQPaJT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"/>
- <children xmi:id="_YQPaKj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" name="Task Markup Editor Source Context"/>
- </children>
- <children xmi:id="_YQPaKD9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.yeditScope" name="YEdit editor context"/>
- <children xmi:id="_YQPaLD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/>
- <children xmi:id="_YQPaLj9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsf.facesconfig.editorContext" name="In Faces Config Editor" description="Key binding context when using the Faces Config Editor"/>
- <children xmi:id="_iPRy0CfvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jetEditorScope" name="Editing JET Source" description="Editing JET Source Context"/>
- </children>
- <children xmi:id="_YQOzBT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.navigator" name="数据库导航上下文" description="数据库导航上下文"/>
- <children xmi:id="_YQOzBj9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/>
- <children xmi:id="_YQOzCD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/>
- <children xmi:id="_YQOzDz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.schemaobjecteditor.schemaediting" name="Schema Object Editor" description="Schema Object Editor"/>
- <children xmi:id="_YQOzJj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/>
- <children xmi:id="_YQOzJz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" name="In Terminal View" description="Show modified keyboard shortcuts in context menu"/>
- <children xmi:id="_YQPaET9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.meExplorerScope" name="Project Explorer +"/>
- <children xmi:id="_YQPaEz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/>
- <children xmi:id="_YQPaFD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/>
- <children xmi:id="_YQPaGD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs">
- <children xmi:id="_YQPaGT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/>
- <children xmi:id="_YQPaGj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.debug.ui.context" name="XSLT Debugging" description="Context for debugging XSLT"/>
- <children xmi:id="_YQPaGz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/>
- </children>
- <children xmi:id="_YQPaHT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/>
- <children xmi:id="_YQPaHj9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.TerminalContext" name="Terminal Typing Connected" description="Override ALT+x menu access keys while typing into the Terminal"/>
- <children xmi:id="_YQPaIj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" name="In Tasks View"/>
- <children xmi:id="_YQPaJz9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.contexts.taskview" name="In Gradle Tasks View" description="This context is activated when the Gradle Tasks view is in focus"/>
- <children xmi:id="_YQPaKT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.perspective" name="DBeaver Perspective" description="DBeaver Perspective Context"/>
- <children xmi:id="_YQPaLT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View">
- <children xmi:id="_iPRy0SfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesView.SingleRepository" name="In Git Repositories View"/>
- </children>
- </children>
- <children xmi:id="_YO2S9z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/>
- <children xmi:id="_YQOzJT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" name="Chromium Debug" description="Debug Chromium JavaScript"/>
- </rootContext>
- <rootContext xmi:id="_YQOzBz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/>
- <rootContext xmi:id="_YQOzDD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/>
- <rootContext xmi:id="_YQOzGj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/>
- <rootContext xmi:id="_YQOzHj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.wsdl.ui.editor.sourceView" name="WSDL Editor Source View" description="WSDL Editor Source View"/>
- <rootContext xmi:id="_YQOzIj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/>
- <rootContext xmi:id="_YQOzJD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/>
- <rootContext xmi:id="_YQPaHD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.wsdl.ui.editor.designView" name="WSDL Editor Design View" description="WSDL Editor Design View"/>
- <rootContext xmi:id="_Zdl-AD9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/>
- <rootContext xmi:id="_ZdmlED9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.actionSet" name="Auto::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet"/>
- <rootContext xmi:id="_ZdmlEj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/>
- <rootContext xmi:id="_ZdmlFD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/>
- <rootContext xmi:id="_ZdnMID9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/>
- <rootContext xmi:id="_ZdnMIj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/>
- <rootContext xmi:id="_ZdnMJD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.CoverageActionSet" name="Auto::org.eclipse.eclemma.ui.CoverageActionSet"/>
- <rootContext xmi:id="_ZdnzMD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/>
- <rootContext xmi:id="_ZdnzMj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/>
- <rootContext xmi:id="_ZdnzND9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.SearchActionSet" name="Auto::org.eclipse.egit.ui.SearchActionSet"/>
- <rootContext xmi:id="_ZdnzNj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/>
- <rootContext xmi:id="_ZdoaQD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/>
- <rootContext xmi:id="_ZdoaQj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/>
- <rootContext xmi:id="_ZdoaRD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/>
- <rootContext xmi:id="_ZdoaRj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/>
- <rootContext xmi:id="_ZdpBUD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/>
- <rootContext xmi:id="_ZdpBUj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/>
- <rootContext xmi:id="_ZdpBVD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/>
- <rootContext xmi:id="_ZdpBVj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.actionSet.jpaElementCreation" name="Auto::org.eclipse.jpt.jpa.ui.actionSet.jpaElementCreation"/>
- <rootContext xmi:id="_ZdpoYD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" name="Auto::org.eclipse.jst.j2ee.J2eeMainActionSet"/>
- <rootContext xmi:id="_ZdpoYj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.actionSet" name="Auto::org.eclipse.mylyn.context.ui.actionSet"/>
- <rootContext xmi:id="_ZdpoZD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.java.actionSet" name="Auto::org.eclipse.mylyn.java.actionSet"/>
- <rootContext xmi:id="_ZdqPcD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.java.actionSet.browsing" name="Auto::org.eclipse.mylyn.java.actionSet.browsing"/>
- <rootContext xmi:id="_ZdqPcj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.doc.actionSet" name="Auto::org.eclipse.mylyn.doc.actionSet"/>
- <rootContext xmi:id="_ZdqPdD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.navigation" name="Auto::org.eclipse.mylyn.tasks.ui.navigation"/>
- <rootContext xmi:id="_Zdq2gD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.navigation.additions" name="Auto::org.eclipse.mylyn.tasks.ui.navigation.additions"/>
- <rootContext xmi:id="_Zdq2gj9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/>
- <rootContext xmi:id="_Zdq2hD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/>
- <rootContext xmi:id="_Zdq2hj9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.core.search.searchActionSet" name="Auto::org.eclipse.rse.core.search.searchActionSet"/>
- <rootContext xmi:id="_ZdrdkD9AEemkJ6es1zdyvw" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/>
- <rootContext xmi:id="_Zdrdkj9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/>
- <rootContext xmi:id="_ZdrdlD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/>
- <rootContext xmi:id="_ZdsEoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/>
- <rootContext xmi:id="_ZdsEoj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/>
- <rootContext xmi:id="_ZdsEpD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/>
- <rootContext xmi:id="_ZdsrsD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/>
- <rootContext xmi:id="_Zdsrsj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/>
- <rootContext xmi:id="_ZdsrtD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/>
- <rootContext xmi:id="_ZdtSwD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/>
- <rootContext xmi:id="_ZdtSwj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/>
- <rootContext xmi:id="_ZdtSxD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/>
- <rootContext xmi:id="_Zdt50D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.actionSets" name="Auto::org.eclipse.wst.jsdt.chromium.debug.ui.actionSets"/>
- <rootContext xmi:id="_Zdt50j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/>
- <rootContext xmi:id="_Zdt51D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/>
- <rootContext xmi:id="_Zdug4T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/>
- <rootContext xmi:id="_Zdug4z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/>
- <rootContext xmi:id="_ZdvH8D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/>
- <rootContext xmi:id="_ZdvvAD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/>
- <rootContext xmi:id="_ZdwWET9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/>
- <rootContext xmi:id="_Zdw9ID9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/>
- <rootContext xmi:id="_Zdw9Ij9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/>
- <rootContext xmi:id="_Zdw9JD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.ws.explorer.explorer" name="Auto::org.eclipse.wst.ws.explorer.explorer"/>
- <rootContext xmi:id="_ZdxkMT9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.quicksearch.actionSet" name="Auto::org.springsource.ide.eclipse.quicksearch.actionSet"/>
- <rootContext xmi:id="_ZdxkMz9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.commons.launch.actionSet" name="Auto::org.springsource.ide.eclipse.commons.launch.actionSet"/>
- <rootContext xmi:id="_ZdxkNT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.search.searchActionSet" name="Auto::org.jkiss.dbeaver.search.searchActionSet"/>
- <rootContext xmi:id="_i0xFgCfvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jet.actionSet" name="Auto::org.eclipse.emf.codegen.ui.jet.actionSet"/>
- <rootContext xmi:id="_i0xskCfvEeq9j5-P04oEqA" elementId="org.eclipse.text.quicksearch.actionSet" name="Auto::org.eclipse.text.quicksearch.actionSet"/>
- <descriptors xmi:id="_YZv7YD9AEemkJ6es1zdyvw" 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>
- <tags>removeOnHide</tags>
- </descriptors>
- <descriptors xmi:id="_YZ33MD9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.views.AntView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.png" tooltip="" category="Ant" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ant.internal.ui.views.AntView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ant.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Ant</tags>
- </descriptors>
- <descriptors xmi:id="_YZ990D9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.views.taskview" label="Gradle Tasks" iconURI="platform:/plugin/org.eclipse.buildship.ui/icons/full/eview16/tasks_view.png" tooltip="" category="Gradle" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.buildship.ui.internal.view.task.TaskView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.buildship.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Gradle</tags>
- </descriptors>
- <descriptors xmi:id="_YZ-k4D9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.views.executionview" label="Gradle Executions" iconURI="platform:/plugin/org.eclipse.buildship.ui/icons/full/eview16/executions_view.png" tooltip="" category="Gradle" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.buildship.ui.internal.view.execution.ExecutionsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.buildship.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Gradle</tags>
- </descriptors>
- <descriptors xmi:id="_YZ_zAD9AEemkJ6es1zdyvw" 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" tooltip="" category="Data Management" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.datatools.connectivity.ui.dse.views.DataSourceExplorerView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.datatools.connectivity.ui.dse"/>
- <tags>View</tags>
- <tags>categoryTag:Data Management</tags>
- </descriptors>
- <descriptors xmi:id="_YaBBID9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.plan.planView" label="Execution Plan" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.plan/icons/sqlplan.gif" tooltip="" category="Data Management" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.datatools.sqltools.plan.internal.ui.view.PlanView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.datatools.sqltools.plan"/>
- <tags>View</tags>
- <tags>categoryTag:Data Management</tags>
- </descriptors>
- <descriptors xmi:id="_YaBoMD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.resultView" label="SQL Results" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.result.ui/icons/sqlresult.gif" tooltip="" category="Data Management" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.datatools.sqltools.result.internal.ui.view.ResultsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.datatools.sqltools.result.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Data Management</tags>
- </descriptors>
- <descriptors xmi:id="_YaC2UD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.DebugView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.png" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.launch.LaunchView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Debug</tags>
- </descriptors>
- <descriptors xmi:id="_YaEEcD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.BreakpointView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Debug</tags>
- </descriptors>
- <descriptors xmi:id="_YaFSkD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.VariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.variables.VariablesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Debug</tags>
- </descriptors>
- <descriptors xmi:id="_YaF5oD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.ExpressionView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.expression.ExpressionView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Debug</tags>
- </descriptors>
- <descriptors xmi:id="_YaHHwD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.RegisterView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.registers.RegistersView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Debug</tags>
- </descriptors>
- <descriptors xmi:id="_YaHu0D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.ModuleView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.modules.ModulesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Debug</tags>
- </descriptors>
- <descriptors xmi:id="_YaIV4D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.MemoryView" label="Memory" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/memory_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.memory.MemoryView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Debug</tags>
- </descriptors>
- <descriptors xmi:id="_YaI88D9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.CoverageView" label="Coverage" iconURI="platform:/plugin/org.eclipse.eclemma.ui/icons/full/eview16/coverage.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.eclemma.internal.ui.coverageview.CoverageView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.eclemma.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java</tags>
- </descriptors>
- <descriptors xmi:id="_YaKLED9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.repository.RepositoriesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Git</tags>
- </descriptors>
- <descriptors xmi:id="_YaLZMD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.StagingView" label="Git Staging" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/staging.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.staging.StagingView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Git</tags>
- </descriptors>
- <descriptors xmi:id="_YaMAQD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.InteractiveRebaseView" label="Git Interactive Rebase" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/rebase_interactive.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.rebase.RebaseInteractiveView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Git</tags>
- </descriptors>
- <descriptors xmi:id="_YaMnUD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.CompareTreeView" label="Git Tree Compare" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/obj16/gitrepository.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.dialogs.CompareTreeView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Git</tags>
- <tags>NoRestore</tags>
- </descriptors>
- <descriptors xmi:id="_YaNOYD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ReflogView" label="Git Reflog" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/reflog.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.reflog.ReflogView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Git</tags>
- </descriptors>
- <descriptors xmi:id="_YaN1cD9AEemkJ6es1zdyvw" elementId="org.eclipse.gef.ui.palette_view" label="Palette" iconURI="platform:/plugin/org.eclipse.gef/icons/palette_view.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.gef.ui.views.palette.PaletteView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.gef"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_YaPDkD9AEemkJ6es1zdyvw" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.png" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Help</tags>
- </descriptors>
- <descriptors xmi:id="_YaPqoD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Debug Shell" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.png" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.debug.ui.display.DisplayView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.debug.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Debug</tags>
- </descriptors>
- <descriptors xmi:id="_YaRf0D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.ResultView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.junit"/>
- <tags>View</tags>
- <tags>categoryTag:Java</tags>
- </descriptors>
- <descriptors xmi:id="_YaSt8D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.PackageExplorer" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java</tags>
- </descriptors>
- <descriptors xmi:id="_YaUjID9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java</tags>
- </descriptors>
- <descriptors xmi:id="_YaVKMD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.ProjectsView" label="Projects" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/projects.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.ProjectsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java Browsing</tags>
- </descriptors>
- <descriptors xmi:id="_YaVxQD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.PackagesView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.PackagesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java Browsing</tags>
- </descriptors>
- <descriptors xmi:id="_YaWYUD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.TypesView" label="Types" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/types.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.TypesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java Browsing</tags>
- </descriptors>
- <descriptors xmi:id="_YaW_YD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.MembersView" label="Members" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/members.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.MembersView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java Browsing</tags>
- </descriptors>
- <descriptors xmi:id="_YaXmcD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/call_hierarchy.png" tooltip="" allowMultiple="true" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java</tags>
- </descriptors>
- <descriptors xmi:id="_YaYNgD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.texteditor.TemplatesView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.texteditor.templates.TemplatesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_YaY0kD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.SourceView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java</tags>
- </descriptors>
- <descriptors xmi:id="_YaZboD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavadocView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.JavadocView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Java</tags>
- </descriptors>
- <descriptors xmi:id="_YaaCsD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.ui.jpaStructureView" label="JPA Structure" iconURI="platform:/plugin/org.eclipse.jpt.jpa.ui/images/views/jpa-structure.gif" tooltip="" category="JPA" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jpt.jpa.ui.internal.views.JpaStructureView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jpt.jpa.ui"/>
- <tags>View</tags>
- <tags>categoryTag:JPA</tags>
- </descriptors>
- <descriptors xmi:id="_YabQ0D9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.ui.jpaDetailsView" label="JPA Details" iconURI="platform:/plugin/org.eclipse.jpt.jpa.ui/images/views/jpa-details.gif" tooltip="" category="JPA" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jpt.jpa.ui.internal.views.JpaDetailsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jpt.jpa.ui"/>
- <tags>View</tags>
- <tags>categoryTag:JPA</tags>
- </descriptors>
- <descriptors xmi:id="_Yab34D9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsf.ui.component.ComponentTreeView" label="JSF Component Tree" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="JavaServer Faces" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jst.jsf.ui.internal.component.ComponentTreeView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jst.jsf.ui"/>
- <tags>View</tags>
- <tags>categoryTag:JavaServer Faces</tags>
- </descriptors>
- <descriptors xmi:id="_Yace8D9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsf.ui.tagregistry.TagRegistryView" label="Tag Registry" iconURI="platform:/plugin/org.eclipse.jst.jsf.ui/icons/obj16/library_obj.gif" tooltip="" category="JavaServer Faces" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jst.jsf.ui.internal.tagregistry.TagRegistryView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jst.jsf.ui"/>
- <tags>View</tags>
- <tags>categoryTag:JavaServer Faces</tags>
- </descriptors>
- <descriptors xmi:id="_YadGAD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.ws.jaxws.ui.views.AnnotationsView" label="Annotation Properties" iconURI="platform:/plugin/org.eclipse.jst.ws.jaxws.ui/icons/eview16/prop_ps.gif" tooltip="" category="Web Services" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jst.ws.internal.jaxws.ui.views.AnnotationsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jst.ws.jaxws.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Web Services</tags>
- </descriptors>
- <descriptors xmi:id="_YadtED9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.views.MavenRepositoryView" label="Maven Repositories" iconURI="platform:/plugin/org.eclipse.m2e.core.ui/icons/maven_indexes.gif" tooltip="" category="Maven" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.m2e.core.ui.internal.views.MavenRepositoryView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.m2e.core.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Maven</tags>
- </descriptors>
- <descriptors xmi:id="_YaeUID9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.views.MavenBuild" label="Maven Workspace Build" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="Maven" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.m2e.core.ui.internal.views.build.BuildDebugView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.m2e.core.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Maven</tags>
- </descriptors>
- <descriptors xmi:id="_YaeUIT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.commons.repositories.ui.navigator.Repositories" label="Team Repositories" iconURI="platform:/plugin/org.eclipse.mylyn.commons.repositories.ui/icons/eview16/repositories.gif" tooltip="" category="Mylyn" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.commons.repositories.ui.RepositoriesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.commons.repositories.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Mylyn</tags>
- </descriptors>
- <descriptors xmi:id="_YafiQD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" label="Task List" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/task-list.gif" tooltip="" allowMultiple="true" category="Mylyn" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskListView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Mylyn</tags>
- </descriptors>
- <descriptors xmi:id="_YagJUD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.views.repositories" label="Task Repositories" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/repositories.gif" tooltip="" category="Mylyn" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskRepositoriesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Mylyn</tags>
- </descriptors>
- <descriptors xmi:id="_YagwYD9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.p2.ui.RepositoryExplorer" label="Repository Explorer" iconURI="platform:/plugin/org.eclipse.oomph.p2.ui/icons/obj16/repository.gif" tooltip="" category="Oomph" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.oomph.p2.internal.ui.RepositoryExplorer"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.oomph.p2.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Oomph</tags>
- </descriptors>
- <descriptors xmi:id="_YahXcD9AEemkJ6es1zdyvw" 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.png" tooltip="" category="API Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.api.tools.ui.internal.views.APIToolingView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.api.tools.ui"/>
- <tags>View</tags>
- <tags>categoryTag:API Tools</tags>
- </descriptors>
- <descriptors xmi:id="_Yah-gD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.RegistryBrowser" label="Plug-in Registry" iconURI="platform:/plugin/org.eclipse.pde.runtime/icons/eview16/registry.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.runtime.registry.RegistryBrowser"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.runtime"/>
- <tags>View</tags>
- <tags>categoryTag:Plug-in Development</tags>
- </descriptors>
- <descriptors xmi:id="_YajMoD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.PluginsView" label="Plug-ins" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/eview16/plugin_depend.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.plugins.PluginsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Plug-in Development</tags>
- </descriptors>
- <descriptors xmi:id="_YajzsD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.DependenciesView" label="Plug-in Dependencies" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/req_plugins_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.dependencies.DependenciesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Plug-in Development</tags>
- </descriptors>
- <descriptors xmi:id="_Yalo4D9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.TargetPlatformState" label="Target Platform State" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/target_profile_xml_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.target.TargetStateView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Plug-in Development</tags>
- </descriptors>
- <descriptors xmi:id="_YamP8D9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.ImageBrowserView" label="Plug-in Image Browser" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/psearch_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.imagebrowser.ImageBrowserView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Plug-in Development</tags>
- </descriptors>
- <descriptors xmi:id="_Yam3AD9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.systemView" label="Remote Systems" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/system_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.SystemViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Remote Systems</tags>
- </descriptors>
- <descriptors xmi:id="_YaoFID9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.teamView" label="Team" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/team_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.team.SystemTeamViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Remote Systems</tags>
- </descriptors>
- <descriptors xmi:id="_YaosMD9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.systemTableView" label="Remote System Details" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/system_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.SystemTableViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Remote Systems</tags>
- </descriptors>
- <descriptors xmi:id="_YapTQD9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.SystemSearchView" label="Remote Search" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/obj16/system_search.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.search.SystemSearchViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Remote Systems</tags>
- </descriptors>
- <descriptors xmi:id="_YapTQT9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.scratchpad.SystemScratchpadViewPart" label="Remote Scratchpad" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/view16/scratchpad_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.scratchpad.SystemScratchpadViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Remote Systems</tags>
- </descriptors>
- <descriptors xmi:id="_Yap6UD9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.monitorView" label="Remote Monitor" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/view16/system_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.monitor.SystemMonitorViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Remote Systems</tags>
- </descriptors>
- <descriptors xmi:id="_YaqhYD9AEemkJ6es1zdyvw" elementId="org.eclipse.search.SearchResultView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.search.internal.ui.SearchResultView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_YarIcD9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.views.SearchView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.search2.internal.ui.SearchView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_YarvgD9AEemkJ6es1zdyvw" elementId="org.eclipse.team.sync.views.SynchronizeView" label="Synchronize" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/synch_synch.png" tooltip="" allowMultiple="true" category="Team" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.synchronize.SynchronizeView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Team</tags>
- </descriptors>
- <descriptors xmi:id="_YasWkD9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.GenericHistoryView" label="History" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/history_view.png" tooltip="" allowMultiple="true" category="Team" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.history.GenericHistoryView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Team</tags>
- </descriptors>
- <descriptors xmi:id="_Yas9oD9AEemkJ6es1zdyvw" elementId="org.eclipse.tips.ide.tipPart" label="Tip of the Day" iconURI="platform:/plugin/org.eclipse.tips.ui/icons/lightbulb.png" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.tips.ide/org.eclipse.tips.ide.internal.TipPart">
- <tags>View</tags>
- <tags>categoryTag:Help</tags>
- </descriptors>
- <descriptors xmi:id="_YatksD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" label="Terminal" iconURI="platform:/plugin/org.eclipse.tm.terminal.view.ui/icons/eview16/terminal_view.gif" tooltip="" allowMultiple="true" category="Terminal" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.TerminalsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Terminal</tags>
- </descriptors>
- <descriptors xmi:id="_YauLwD9AEemkJ6es1zdyvw" elementId="org.eclipse.tcf.te.ui.terminals.TerminalsView" label="Terminals (Old)" iconURI="platform:/plugin/org.eclipse.tm.terminal.view.ui/icons/eview16/terminal_view.gif" tooltip="" allowMultiple="true" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.OldTerminalsViewHandler"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Other</tags>
- </descriptors>
- <descriptors xmi:id="_Yauy0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.internal.introview" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_YaxPED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.browser.view" label="Internal Web Browser" iconURI="platform:/plugin/org.eclipse.ui.browser/icons/obj16/internal_browser.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.browser.WebBrowserView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.browser"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Yax2ID9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.png" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
- <tags>View</tags>
- <tags>categoryTag:Help</tags>
- </descriptors>
- <descriptors xmi:id="_Ya05cD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.console.ConsoleView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya2HkD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ProgressView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.progress.ProgressView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya2uoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator (Deprecated)" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.navigator.ResourceNavigator"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya3VsD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.BookmarkView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya38wD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.TaskList" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.TasksView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya4j0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ProblemView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya5K4D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.AllMarkersView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.AllMarkersView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya7nID9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.ProjectExplorer" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya81QD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.PropertySheet" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.properties.PropertySheet"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya9cUD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ContentOutline" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya9cUT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.LogView" label="Error Log" iconURI="platform:/plugin/org.eclipse.ui.views.log/icons/eview16/error_log.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.log.LogView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views.log"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya-qcD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.minimap.MinimapView" label="Minimap" iconURI="platform:/plugin/org.eclipse.ui.workbench.texteditor/icons/full/eview16/minimap.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.minimap.MinimapView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.workbench.texteditor"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya_RgD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets/icons/snippets_view.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.common.snippets.internal.ui.SnippetsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.common.snippets"/>
- <tags>View</tags>
- <tags>categoryTag:General</tags>
- </descriptors>
- <descriptors xmi:id="_Ya_4kD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.internet.monitor.view" label="TCP/IP Monitor" iconURI="platform:/plugin/org.eclipse.wst.internet.monitor.ui/icons/cview16/monitorView.gif" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.internet.monitor.ui.internal.view.MonitorView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.internet.monitor.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Debug</tags>
- </descriptors>
- <descriptors xmi:id="_YbAfoD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" label="Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/class_hi.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:JavaScript</tags>
- </descriptors>
- <descriptors xmi:id="_YbBtwD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/package.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.packageview.PackageExplorerPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:JavaScript</tags>
- </descriptors>
- <descriptors xmi:id="_YbBtwT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/call_hierarchy.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.callhierarchy.CallHierarchyViewPart"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:JavaScript</tags>
- </descriptors>
- <descriptors xmi:id="_YbCU0D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/source.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.SourceView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:JavaScript</tags>
- </descriptors>
- <descriptors xmi:id="_YbCU0T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavadocView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/javadoc.gif" tooltip="JavaScript Documentation" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.JavadocView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
- <tags>View</tags>
- <tags>categoryTag:JavaScript</tags>
- </descriptors>
- <descriptors xmi:id="_YbC74D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.ServersView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" tooltip="" category="Server" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.server.ui.internal.cnf.ServersView2"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.server.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Server</tags>
- </descriptors>
- <descriptors xmi:id="_YbExED9AEemkJ6es1zdyvw" 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" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.annotations.XMLAnnotationsView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
- <tags>View</tags>
- <tags>categoryTag:XML</tags>
- </descriptors>
- <descriptors xmi:id="_YbF_MD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.contentmodel.view" label="Content Model" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/view16/hierarchy.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.contentmodel.ContentModelView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
- <tags>View</tags>
- <tags>categoryTag:XML</tags>
- </descriptors>
- <descriptors xmi:id="_YbGmQD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.views.XPathView" label="XPath" iconURI="platform:/plugin/org.eclipse.wst.xml.xpath.ui/icons/full/xpath.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.xpath.ui.internal.views.XPathView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.xpath.ui"/>
- <tags>View</tags>
- <tags>categoryTag:XML</tags>
- </descriptors>
- <descriptors xmi:id="_YbHNUD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.jaxp.debug.ui.resultview" label="Result" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xsl.jaxp.debug.ui.internal.views.ResultView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xsl.jaxp.debug.ui"/>
- <tags>View</tags>
- <tags>categoryTag:XML</tags>
- </descriptors>
- <descriptors xmi:id="_YbH0YD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.ui.view.outline" label="Stylesheet Model" iconURI="platform:/plugin/org.eclipse.wst.xsl.ui/icons/full/hierarchy.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xsl.ui.internal.views.stylesheet.StylesheetModelView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xsl.ui"/>
- <tags>View</tags>
- <tags>categoryTag:XML</tags>
- </descriptors>
- <descriptors xmi:id="_YbIbcD9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.views.BootDashView" label="Boot Dashboard" iconURI="platform:/plugin/org.springframework.ide.eclipse.boot.dash/icons/boot-icon.png" tooltip="" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.springframework.ide.eclipse.boot.dash.views.BootDashTreeView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.springframework.ide.eclipse.boot.dash"/>
- <tags>View</tags>
- <tags>categoryTag:Other</tags>
- </descriptors>
- <descriptors xmi:id="_i0YD8CfvEeq9j5-P04oEqA" elementId="org.eclipse.pde.ui.FeaturesView" label="Features" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/feature_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.features.FeaturesView"/>
- <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
- <tags>View</tags>
- <tags>categoryTag:Plug-in Development</tags>
- </descriptors>
- <descriptors xmi:id="_i0kRMCfvEeq9j5-P04oEqA" elementId="com.genuitec.eclipse.icons.designer.ui.views.IconsDesignerView" label="Icon Designer" iconURI="platform:/plugin/com.genuitec.eclipse.theming.icon.designer/icons/icons-designer-view.png" tooltip="" category="DevStyle" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
- <persistedState key="originalCompatibilityViewClass" value="com.genuitec.eclipse.theming.icon.designer.views.IconsDesignerView"/>
- <persistedState key="originalCompatibilityViewBundle" value="com.genuitec.eclipse.theming.icon.designer"/>
- <tags>View</tags>
- <tags>categoryTag:DevStyle</tags>
- </descriptors>
- <menuContributions xmi:id="_YO2S-D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" positionInParent="popup:toolbar">
- <children xsi:type="menu:HandledMenuItem" xmi:id="_YO2S-T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" label="%command.name.customize" command="_YO2S-j9AEemkJ6es1zdyvw"/>
- </menuContributions>
- <trimContributions xmi:id="_2r10UF9tEeO-yojH_y4TJA" elementId="org.eclipse.ui.ide.application.trimcontribution.QuickAccess" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" toBeRendered="false" parentId="org.eclipse.ui.main.toolbar" positionInParent="last">
- <children xsi:type="menu:ToolControl" xmi:id="_76uUAF9tEeO-yojH_y4TJA" elementId="Spacer Glue" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
- <tags>glue</tags>
- <tags>move_after:PerspectiveSpacer</tags>
- <tags>SHOW_RESTORE_MENU</tags>
- </children>
- <children xsi:type="menu:ToolControl" xmi:id="_8tJPcF9tEeO-yojH_y4TJA" elementId="SearchField" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.quickaccess.SearchField">
- <tags>move_after:Spacer Glue</tags>
- <tags>HIDEABLE</tags>
- <tags>SHOW_RESTORE_MENU</tags>
- </children>
- <children xsi:type="menu:ToolControl" xmi:id="_9LgmcF9tEeO-yojH_y4TJA" elementId="Search-PS Glue" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
- <tags>glue</tags>
- <tags>move_after:SearchField</tags>
- <tags>SHOW_RESTORE_MENU</tags>
- </children>
- </trimContributions>
- <commands xmi:id="_YO2S-j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" commandName="Customize Perspective" description="Customize the current perspective"/>
- <commands xmi:id="_YPz8QD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YPz8QT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP0jUD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleWordWrap" commandName="Toggle Word Wrap" description="Toggle word wrap in the current text editor" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KYD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP1KYT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/>
- </commands>
- <commands xmi:id="_YP1KYj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.p2.ui.SearchRequirements" commandName="Search Requirements" category="_YPxgBj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KYz9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KZD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.cell.setDefault" commandName="Set to default" description="Set cell to default value" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KZT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.togglePreview" commandName="切换结果面板" description="切换额外结果面板" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KZj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KZz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.junitPluginShortcut.coverage" commandName="Coverage JUnit Plug-in Test" description="Coverage JUnit Plug-in Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KaD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.maximize" commandName="Maximize Active View or Editor" category="_YPxgKD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KaT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.openDiscoveredType" commandName="Open Discovered Type" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1Kaj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1Kaz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KbD9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP1KbT9AEemkJ6es1zdyvw" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
- </commands>
- <commands xmi:id="_YP1Kbj9AEemkJ6es1zdyvw" 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="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1Kbz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1KcD9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xcD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.project.active" commandName="设为活动项目" description="设为活动项目" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xcT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Edit" commandName="Edit Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xcj9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP1xcz9AEemkJ6es1zdyvw" elementId="trigger" name="trigger"/>
- </commands>
- <commands xmi:id="_YP1xdD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.count" commandName="行数" description="检索总行数" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xdT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.js.grunt.commands.gruntLaunch" commandName="Run as Grunt Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xdj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.txn.pending" commandName="待处理事务" description="所有待处理事务的列表" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xdz9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xeD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xeT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xej9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.boot.ls.ToggleComment" commandName="Toggle Comment" category="_YPxgAT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xez9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.export" commandName="Export Profiles Command" description="Command to export connection profiles" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xfD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xfT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.editor.showCheatSheetCommand" commandName="Show Markup Cheat Sheet" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xfj9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xfz9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xgD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.text.content.format" commandName="内容格式化" description="格式化文本" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xgT9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.mpc.ui.command.showInstalled" commandName="Manage installed plug-ins" description="Update or uninstall plug-ins installed from the Marketplace" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xgj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.statement" commandName="执行 SQL 语句" description="执行 SQL 语句" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xgz9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xhD9AEemkJ6es1zdyvw" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xhT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.views.XPathView.prefixes" commandName="&Edit Namespace Prefixes" category="_YPxgCT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xhj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.word.wrap" commandName="切换自动换行" description="切换文本编辑器自动换行" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xhz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.toggleCommentAction" commandName="Toggle Comment" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xiD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.task.clearContext" commandName="Clear Context" category="_YPw49j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xiT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xij9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xiz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xjD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xjT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.searchForTask" commandName="Search Repository for Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xjj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xjz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.new.folder" commandName="新建文件夹" description="创建新连接文件夹" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xkD9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.commands.toggleComment" commandName="Toggle Comment" description="Turn comments on/off for a selection" category="_YPw49T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xkT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xkj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xkz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Check Out" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xlD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xlT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xlj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.maximizePart" commandName="Maximize Part" description="Maximize Part" category="_YPxgFz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xlz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.oracle.code.package.navigate" commandName="Go to source code" description="Navigate to object source code" category="_YPxgEz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP1xmD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YgD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP2YgT9AEemkJ6es1zdyvw" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
- </commands>
- <commands xmi:id="_YP2Ygj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ygz9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.showconsoleviewercommand" commandName="Show Recent Logs" description="Show Recent Logs" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YhD9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_YPxgHz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YhT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.importProjects" commandName="Import Projects" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Yhj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Yhz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.hideUnusedElements" commandName="Hide Unused Elements" category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YiD9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YiT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.all.rows" commandName="选择所有行" description="选择并显示所有行(没有获取大小限制)" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Yij9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.switchPresentation" commandName="切换表示" description="切换结果表示" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Yiz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YjD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP2YjT9AEemkJ6es1zdyvw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
- </commands>
- <commands xmi:id="_YP2Yjj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to Resource" description="Go to a particular resource in the active view" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Yjz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YkD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YkT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.comment.single" commandName="切换行注释" description="添加或删除单行注释" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ykj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.quickOutlineCommand" commandName="Quick Outline" description="Open a popup dialog with a quick outline of the current document" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ykz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YlD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YlT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ylj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ylz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YmD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YmT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.localJavaShortcut.coverage" commandName="Coverage Java Application" description="Coverage Java Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ymj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ymz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YnD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.referencesMenu" commandName="引用" description="引用当前表的外键和表" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YnT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.refreshCache" commandName="Refresh Remote Cache" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ynj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ynz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YoD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.set.active" commandName="设为活动对象" description="设为活动对象" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YoT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.exportSession" commandName="Export Session..." category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Yoj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Yoz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.scalaShortcut.coverage" commandName="Coverage Scala Application" description="Coverage Scala Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YpD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YpT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ypj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2Ypz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2YqD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.dumpExecutionData" commandName="Dump Execution Data" category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_kD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.debug.ui.command.debugConfigurationMenu" commandName="Debug last launched database object" description="Debug last launched database object" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_kT9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_kj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_kz9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.runtasks" commandName="Run Gradle Tasks" description="Runs all the selected Gradle tasks" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_lD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_lT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_lj9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_lz9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_mD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.edit" commandName="编辑单元格" description="在单独的对话框/编辑器中编辑单元格" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_mT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_YPxgHD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_mj9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_mz9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_YPyHEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_nD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.actions.LifeCycleGenerateSources.run" commandName="Run Maven Generate Sources" description="Run Maven Generate Sources" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_nT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.first" commandName="首行" description="移动至首行" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_nj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_nz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.tools.select.schema" commandName="选择活动模式" description="为当前数据库选择活动模式" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_oD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.ws.jaxws.ui.configure.handlers" commandName="Configure Handlers" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_oT9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.ui.importer.openDirectory" commandName="Open Projects from File System..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_oj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_oz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.export" commandName="导出结果集..." description="导出结果集到文件或另一个数据表" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_pD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_pT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_pj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.connect" commandName="连接" description="连接至数据库" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_pz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_qD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.script.associate" commandName="Associate with data source" description="Associate selected script(s) with data source" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_qT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_qj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.ToggleTracepoint" commandName="Toggle Tracepoint" description="Creates or removes a tracepoint " category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_qz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.convertToMarkupCommand" commandName="Generate Markup" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP2_rD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.targetLanguage" name="TargetLanguage" optional="false"/>
- </commands>
- <commands xmi:id="_YP2_rT9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_rj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.showToolTip" commandName="Show Tooltip Description" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_rz9AEemkJ6es1zdyvw" 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="_YPxgHD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_sD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.junitShortcut.coverage" commandName="Coverage JUnit Test" description="Coverage JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP2_sT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.task.copyContext" commandName="Copy Context" category="_YPw49j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3moD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.command.launchToolbar" commandName="Open Local Terminal on Selection" category="_YPxgHj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3moT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3moj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.switch.panel" commandName="切换活动面板" description="切换活动 SQL 编辑器面板" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3moz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mpD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mpT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mpj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mpz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mqD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.workbenchShortcut.coverage" commandName="Coverage Eclipse Application" description="Coverage Eclipse Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mqT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resource.create.folder" commandName="新建文件夹" description="新建文件夹" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mqj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mqz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mrD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mrT9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mrj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.newEntity" commandName="JPA Entity" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mrz9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3msD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ImportChangedProjectsCommandId" commandName="Import Changed Projects" description="Import or create in local Git repository" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3msT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.commands.OpenCoverageConfiguration" commandName="Coverage Configurations..." description="Coverage Configurations..." category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3msj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3msz9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.ToggleLineNumbers" commandName="Toggle Line Numbers" description="Toggle Line Numbers" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mtD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.invalidate" commandName="断开/重新连接" description="断开或重新连接" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mtT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mtj9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mtz9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3muD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_YPxgDT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3muT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.view.configure" commandName="配置字段" description="配置字段可见性" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3muj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.terminate" commandName="Terminate Result" category="_YPxgAj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3muz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mvD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mvT9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mvj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP3mvz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4NsD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.openWith" commandName="Open With" description="Open data in external application" category="_YPw4_T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP4NsT9AEemkJ6es1zdyvw" elementId="processorId" name="%command.org.jkiss.dbeaver.core.resultset.openWith.param.processorId.name" optional="false"/>
- </commands>
- <commands xmi:id="_YP4Nsj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4Nsz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4NtD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method or a type in its hierarchy" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4NtT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4Ntj9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4Ntz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.openSessionExecutionData" commandName="Open Execution Data" category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4NuD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP4NuT9AEemkJ6es1zdyvw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
- </commands>
- <commands xmi:id="_YP4Nuj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.performDropdown" commandName="Perform Dropdown" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4Nuz9AEemkJ6es1zdyvw" 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="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4NvD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4NvT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4Nvj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP4Nvz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.addAllPluginsToJavaSearch" commandName="Add All Plug-ins to Java Workspace Scope" description="Adds all plug-ins in the target platform to Java workspace scope" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40wD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP40wT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/>
- </commands>
- <commands xmi:id="_YP40wj9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40wz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40xD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.fullscreenmode" commandName="Toggle Full Screen" description="Toggles the window between full screen and normal" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40xT9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.sdk.installationDetails" commandName="Installation Details" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40xj9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_YPxgET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40xz9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.profiles.ui.commands.selectMavenProfileCommand" commandName="Select Maven Profiles" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40yD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40yT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.expression" commandName="计算 SQL 表达式的值" description="计算选中的 SQL 表达式的值" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40yj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy Commit Id" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40yz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.new.subtask" commandName="New Subtask" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40zD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40zT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40zj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP40zz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.rename" commandName="重命名 SQL 脚本" description="重命名当前 SQL 脚本" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP400D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP400T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP400j9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP400z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP401D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP401T9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP401j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP401z9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.ls.eclipse.commons.commands.OpenResourceInEditor" commandName="Open File in Editor" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP402D9AEemkJ6es1zdyvw" elementId="path" name="path" optional="false"/>
- </commands>
- <commands xmi:id="_YP402T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP402j9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP402z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP403D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.StashDrop" commandName="Delete Stashed Commit..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP403T9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.openTask" commandName="Open Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP403j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP403z9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP404D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.java.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_YPxgGz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP404T9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_YPyHFT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP404j9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP404z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b0T9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.symbolinworkspace" commandName="Go to Symbol in Workspace" category="_YPxgHT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b0j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b0z9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.ui.ToggleOfflineMode" commandName="Toggle Offline Mode" category="_YPxgDj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b1D9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.openLog" commandName="Open Setup Log" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b1T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.edit.inline" commandName="内嵌编辑" description="使用内嵌编辑器编辑单元值" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b1j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b1z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_YPw4_D9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP5b2D9AEemkJ6es1zdyvw" elementId="importWizardId" name="Import Wizard"/>
- </commands>
- <commands xmi:id="_YP5b2T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b2j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b2z9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b3D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Show Contextual Help" description="Open the contextual help" category="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b3T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b3j9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.activateTask" commandName="Activate Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b3z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b4D9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b4T9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b4j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b4z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b5D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b5T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b5j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b5z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b6D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b6T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b6j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b6z9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b7D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.team.ui.commands.CopyCommitMessage" commandName="Copy Commit Message for Task" description="Copies a commit message for the currently selected task to the clipboard." category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b7T9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.relaunchSession" commandName="Relaunch Coverage Session" category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b7j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b7z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Tree" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b8D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b8j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b8z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b9D9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.export.data" commandName="导出查询结果" description="导出当前查询返回的数据" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP5b9T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C4D9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.mpc.ui.command.importFavoritesWizard" commandName="Import Marketplace Favorites" description="Import another user's Marketplace Favorites List" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP6C4T9AEemkJ6es1zdyvw" elementId="favoritesUrl" name="favoritesUrl"/>
- </commands>
- <commands xmi:id="_YP6C4j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.show.log" commandName="显示执行日志" description="显示 SQL 执行日志" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C4z9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C5D9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C5T9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C5j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.move.down" commandName="下移" description="下移对象" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C5z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C6D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C6T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.copyRowNames" commandName="复制行号" description="复制选中的行号" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C6j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C6z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C7D9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C7T9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.OpenLaunchConfigAction" commandName="Open Config" description="Open Launch Configuration" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C7j9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C7z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C8D9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C8j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.gotoMatchingBracket" commandName="Go to matching bracket" description="Position cursor on the matching bracket" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C8z9AEemkJ6es1zdyvw" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C9D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C9T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C9j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.migrate.connection" commandName="迁移连接" description="迁移连接至其它数据库" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C9z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.process.stop" commandName="终止进程" description="终止正在进行的进程" category="_YPyHED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C-D9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.junitRAPShortcut.coverage" commandName="Coverage RAP JUnit Test" description="Coverage RAP JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C-T9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.SynchronizeAll" commandName="Synchronize Changed" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C-j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C-z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Reword" commandName="Reword Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C_D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.context.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_YPw4-j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C_T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C_j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_YPw4-T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6C_z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_YPxgJD9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP6DAD9AEemkJ6es1zdyvw" elementId="href" name="Help topic href"/>
- </commands>
- <commands xmi:id="_YP6DAT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6DAj9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6DAz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6DBD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.saveAsTemplateAction" commandName="Save as Template" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6DBT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p8D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p8T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.applyChanges" commandName="保存变更" description="保存变更" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p8j9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p8z9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.p2.ui.ExploreRepository" commandName="Explore Repository" category="_YPxgBj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p9D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.InstallLfsLocal" commandName="Enable LFS locally" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p9T9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p9j9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p9z9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.commands.toggleCollapse" commandName="Toggle Collapse" description="Toggle if the outline should be collapse or not" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p-D9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.show.output" commandName="显示服务器输出" description="显示服务器控制台输出" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p-T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p-j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.open" commandName="Open Dashboard" description="Open database dashboard" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p-z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.log.jdt.showinconsole" commandName="&Show In Console" description="Show Stack Trace in Console View" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p_D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p_T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p_j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.cell.save" commandName="保存单元值" description="保存单元值" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6p_z9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.UpdateRepositoryConfiguration" commandName="Update Repository Configuration" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qAD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.StashApply" commandName="Apply Stashed Changes" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qAT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qAj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open this Version" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP6qAz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/>
- </commands>
- <commands xmi:id="_YP6qBD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qBT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.quickAccess" commandName="Find Actions" description="Quickly access UI elements" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qBj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qBz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qCD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.attachment.open" commandName="Open Attachment" category="_YPxgFz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qCT9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qCj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qCz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qDD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qDT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qDj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Index" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qDz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.maximize.result.panel" commandName="最大化结果面板" description="最大化/标准化结果面板" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qED9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.refreshFromDatabaseAction" commandName="Refresh from Database" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qET9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteAsOneStatementAction" commandName="Execute Selected Text As One Statement" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qEj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qEz9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.pushcommand" commandName="Push" description="Push application" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qFD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.addrepository" commandName="New Repository Profile Command" description="Command to create a new repository profile" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP6qFT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RAD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.fetch.page" commandName="获取下一页" description="获取下一页结果" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RAT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.perform.startup" commandName="Perform Setup Tasks (Startup)" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RAj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RAz9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RBD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.add.imports" commandName="Add Im&port" description="Create import declaration for selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RBT9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RBj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.upgradeToEclipseLinkMappingFile" commandName="Upgrade to EclipseLink Mapping File" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RBz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_YPw4_j9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP7RCD9AEemkJ6es1zdyvw" elementId="url" name="URL"/>
- <parameters xmi:id="_YP7RCT9AEemkJ6es1zdyvw" elementId="browserId" name="Browser Id"/>
- <parameters xmi:id="_YP7RCj9AEemkJ6es1zdyvw" elementId="name" name="Browser Name"/>
- <parameters xmi:id="_YP7RCz9AEemkJ6es1zdyvw" elementId="tooltip" name="Browser Tooltip"/>
- </commands>
- <commands xmi:id="_YP7RDD9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RDT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.removeAllInstances" commandName="Remove All Visible Results" category="_YPxgAj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RDj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RDz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RET9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7REj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7REz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RFD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.splitEditor" commandName="Toggle Split Editor" description="Split or join the currently active editor." category="_YPw4_j9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP7RFT9AEemkJ6es1zdyvw" elementId="Splitter.isHorizontal" name="Orientation" optional="false"/>
- </commands>
- <commands xmi:id="_YP7RFj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.copyColumnNames" commandName="复制字段名" description="复制选中的字段名" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RFz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RGD9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_YPxgHz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RGT9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.togglelinkwitheditor" commandName="Toggle Link with Editor" category="_YPxgHT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RGj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateSelectedTask" commandName="Deactivate Selected Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RGz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.query.prev" commandName="上一查询" description="切换到上一查询" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RHD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.lockToolBar" commandName="Toggle Lock Toolbars" description="Toggle the Lock on the Toolbars" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RHT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RHj9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.format" commandName="Format" category="_YPxgHT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RHz9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.ls.eclipse.gotosymbol.command" commandName="Goto Symbol" category="_YPw48D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RID9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RIT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RIj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RIz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP7RJD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.openSelectedTask" commandName="Open Selected Task" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74ED9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74ET9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.copycolumn" commandName="Copy" category="_YPxgIT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Ej9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Toggle "Link with Editor and Selection" (Git Repositories View)" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Ez9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.toggle.focus.active.view" commandName="Focus on Active Task" description="Toggle the focus on active task for the active view" category="_YPw49j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74FD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74FT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.goToNextUnread" commandName="Go To Next Unread Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Fj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.validation.ValidationCommand" commandName="Validate" description="Invoke registered Validators" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Fz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.config" commandName="配置过滤" description="配置对象过滤" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74GD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.debugAction" commandName="Debug" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74GT9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Gj9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.cloneservercommand" commandName="Clone Server" description="Clone Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Gz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.replaceall" commandName="Replace All" category="_YPyHFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74HD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="Interactive Rebase" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74HT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Hj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Hz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jaxb.ui.generateJaxbClasses" commandName="JAXB Classes..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74ID9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.cell.setNull" commandName="设为空(NULL)" description="设为空(NULL)" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74IT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Ij9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.properties.editor.convertPropertiesToYaml" commandName="Convert .properties to .yaml" category="_YPxgFT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Iz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74JD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74JT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Jj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Jz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74KD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74KT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Kj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.script" commandName="执行 SQL 脚本" description="执行脚本" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74Kz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP74LD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fID9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fIT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fIj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fIz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fJD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.move.up" commandName="上移" description="上移对象" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fJT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fJj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fJz9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fKD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fKT9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fKj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fKz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.submitTask" commandName="Submit Task" description="Submits the currently open task" category="_YPxgFz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fLD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.testNgSuiteShortcut.coverage" commandName="Coverage TestNG Suite" description="Coverage TestNG Suite" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fLT9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fLj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fLz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fMD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.compare.objects" commandName="比较" description="比较数据库对象" category="_YPyHED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fMT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.txn.autocommit" commandName="自动提交" description="更改活动会话的事务模式" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fMj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fMz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fND9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.perspective.meexplorer.search.searchmodecommand" commandName="Search Mode" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fNT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_YPw4_D9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP8fNj9AEemkJ6es1zdyvw" elementId="exportWizardId" name="Export Wizard"/>
- </commands>
- <commands xmi:id="_YP8fNz9AEemkJ6es1zdyvw" 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="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fOD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resource.link.file" commandName="链接文件" description="创建到文件的链接" category="_YPxgFD9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP8fOT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resource.link.file.contenttype" name="链接文件的内容类型"/>
- </commands>
- <commands xmi:id="_YP8fOj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fOz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP8fPD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GMD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GMT9AEemkJ6es1zdyvw" 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="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GMj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GMz9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GND9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.disconnect" commandName="断开连接" description="断开数据库连接" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GNT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GNj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.reset" commandName="Reset dashboards" description="Reset dashboards state" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GNz9AEemkJ6es1zdyvw" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_YPyHEz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GOD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GOT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.add.include" commandName="仅显示选中对象" description="仅显示选中对象" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GOj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GOz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GPD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GPT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GPj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GPz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.showcategory" commandName="Show Category" description="Show Category" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GQD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GQT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.extractMethodInplace.assist" commandName="Quick Assist - Extract method" description="Invokes quick assist and selects 'Extract to method'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GQj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.p2.ui.SearchRepositories" commandName="Search Repositories" category="_YPxgBj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9GQz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tQD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tQT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.disconnected" commandName="Disconnected" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tQj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tQz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.new.connection" commandName="新建连接" description="新建连接向导" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tRD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Reword" commandName="Reword Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tRT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tRj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tRz9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tSD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeMapAs" commandName="Map As" category="_YPxgCj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP9tST9AEemkJ6es1zdyvw" elementId="specifiedPersistentAttributeMappingKey" name="specified mapping key" optional="false"/>
- <parameters xmi:id="_YP9tSj9AEemkJ6es1zdyvw" elementId="defaultPersistentAttributeMappingKey" name="default mapping key" optional="false"/>
- </commands>
- <commands xmi:id="_YP9tSz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.index.ui.command.ResetIndex" commandName="Refresh Search Index" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tTD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tTT9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.paste" commandName="Paste" category="_YPxgKD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tTj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tTz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.query.next" commandName="下一查询" description="切换到下一查询" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tUD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tUT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.convertJavaGenerators" commandName="Move Java Generators to XML..." category="_YPxgCD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tUj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.showInSystemExplorer" commandName="Show In (System Explorer)" description="Show in system's explorer (file manager)" category="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP9tUz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.showInSystemExplorer.path" name="Resource System Path Parameter"/>
- </commands>
- <commands xmi:id="_YP9tVD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.new.local.task" commandName="New Local Task" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tVT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tVj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tVz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP9tWD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.addprofile" commandName="New Connection Profile Command" description="Command to create a new connection profile" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP9tWT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.ui.ignoreCategory" name="ignoreCategory"/>
- <parameters xmi:id="_YP9tWj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.ui.useSelection" name="useSelection"/>
- </commands>
- <commands xmi:id="_YP-UUD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Index" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UUT9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.discovery.ui" commandName="m2e Marketplace" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UUj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.zoomOut" commandName="Zoom Out" description="Zoom out text, decrease default font size for text editors" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UUz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskIncomplete" commandName="Mark Task Incomplete" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UVD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UVT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.assignAllParamsToNewFields.assist" commandName="Quick Assist - Assign all parameters to new fields" description="Invokes quick assist and selects 'Assign all parameters to new fields'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UVj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UVz9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UWD9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UWT9AEemkJ6es1zdyvw" 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="_YPw48T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP-UWj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
- </commands>
- <commands xmi:id="_YP-UWz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.last" commandName="末行" description="移动到末行" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UXD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToNextUnread" commandName="Mark Task Read and Go To Next Unread Task" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UXT9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_YPxgET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UXj9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.rundefaulttasks" commandName="Run Gradle Default Tasks" description="Runs the default tasks of the selected Gradle project" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UXz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.generateEntities" commandName="Generate Entities from Tables..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UYD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UYT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.removeActiveSession" commandName="Remove Active Session" category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UYj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskRead" commandName="Mark Task Read" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UYz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UZD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UZT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UZj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UZz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.vertical" commandName="Vertical Layout" category="_YPxgFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UaD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UaT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.addToPersistenceUnit" commandName="Add to Persistence Unit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-Uaj9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_YPxgHz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-Uaz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.next" commandName="下一行" description="移动到下一行" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UbD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_YPw4_D9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP-UbT9AEemkJ6es1zdyvw" elementId="mayPrompt" name="may prompt"/>
- </commands>
- <commands xmi:id="_YP-Ubj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.open.browser" commandName="Browse from here" description="Open new database browser view from current node" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-Ubz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UcD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithCommit" commandName="Compare with Commit..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UcT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-Ucj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateAllTasks" commandName="Deactivate Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-Ucz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UdD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UdT9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.ui.command.updateProject" commandName="Update Project" description="Update Maven Project configuration and dependencies" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-Udj9AEemkJ6es1zdyvw" elementId="org.eclipse.tools.layout.spy.commands.layoutSpyCommand" commandName="Layout Spy" description="Show the Layout Spy" category="_YPyHFT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-Udz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UeD9AEemkJ6es1zdyvw" elementId="refresh.schema.editor.action.id" commandName="Refresh from Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-UeT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-Uej9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-Uez9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7YD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7YT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.convertJavaQueries" commandName="Move Java Queries to XML..." category="_YPxgCD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7Yj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7Yz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7ZD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.swtBotJunitShortcut.coverage" commandName="Coverage SWTBot Test" description="Coverage SWTBot Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7ZT9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.commands.showFindReplaceBarCommand" commandName="Show Inline Search" category="_YPyHFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7Zj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7Zz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.refactor.move" commandName="Move" description="Move a Java Element to another package" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7aD9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7aT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7aj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.open.file" commandName="导入 SQL 脚本" description="从文件导入" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7az9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.clear" commandName="清除过滤" description="清除过滤设置" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7bD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.pastecolumn" commandName="Paste" category="_YPxgIT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7bT9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.pomFileAction.run" commandName="Run Maven Build" description="Run Maven Build" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7bj9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.linkWithSelection" commandName="Link with Current Selection" category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7bz9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.actions.LifeCycleInstall.run" commandName="Run Maven Install" description="Run Maven Install" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7cD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteCurrentAction" commandName="Execute Current Text" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7cT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7cj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.perform" commandName="Perform Setup Tasks" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7cz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7dD9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7dT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7dj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7dz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7eD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7eT9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.updatepasswordcommand" commandName="Update Password..." description="Update Password" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7ej9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7ez9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.commons.ui.command.AddRepository" commandName="Add Repository" category="_YPxgCz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7fD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.tools.select.connection" commandName="设置活动连接" description="为当前编辑器选择连接" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7fT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7fj9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7fz9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7gD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7gT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_YPw4_j9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP-7gj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/>
- </commands>
- <commands xmi:id="_YP-7gz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.mockdata.resultset.mockdata" commandName="Generate Mock Data" description="Mock Data Generator" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7hD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7hT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7hj9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7hz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP-7iD9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.ShowBootDashboard" commandName="Boot Dashboard" description="Show Boot Dashboard view" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_icD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_YPxgJD9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP_icT9AEemkJ6es1zdyvw" elementId="cheatSheetId" name="Identifier" optional="false"/>
- <parameters xmi:id="_YP_icj9AEemkJ6es1zdyvw" elementId="name" name="Name" optional="false"/>
- <parameters xmi:id="_YP_icz9AEemkJ6es1zdyvw" elementId="url" name="URL" optional="false"/>
- </commands>
- <commands xmi:id="_YP_idD9AEemkJ6es1zdyvw" elementId="revert.schema.editor.action.id" commandName="Revert Object" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_idT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.debug" commandName="Debug XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_idj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.delete" commandName="删除对象" description="删除数据库对象" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_idz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ieD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.ui.command.addDependency" commandName="Add Maven Dependency" description="Add Maven Dependency" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ieT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_iej9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.cell.reset" commandName="重置变更" description="重置变更" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_iez9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ifD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.core.synchronizeClasses" commandName="Synchronize Class List" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ifT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.breakpoint.properties" commandName="Breakpoint Properties..." description="Modify breakpoint properties" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ifj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ifz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.open" commandName="编辑对象" description="打开对象编辑器" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_igD9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_igT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_igj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_igz9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ihD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ihT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ihj9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.editor.RenameArtifactAction" commandName="Rename Maven Artifact..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ihz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_iiD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSQLAction" commandName="Execute All" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_iiT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_iij9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.api.tools.ui.remove.filters" commandName="Remove &API Problem Filters..." description="Remove API problem filters for this project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_iiz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.command.newview" commandName="New Terminal View" category="_YPxgHj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ijD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.navigate.object" commandName="打开声明" description="打开当前(高亮)数据库对象的编辑器" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ijT9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ijj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ijz9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.showkindinoutline" commandName="Show Kind in Outline" category="_YPxgHT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ikD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ikT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.statementNew" commandName="在新标签页中执行 SQL" description="在新标签页中执行 SQL 语句" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ikj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ikz9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ilD9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_ilT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP_ilj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/>
- </commands>
- <commands xmi:id="_YP_ilz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_imD9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_imT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.js.gulp.commands.gulpLaunch" commandName="Run as Gulp Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_imj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP_imz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/>
- </commands>
- <commands xmi:id="_YP_inD9AEemkJ6es1zdyvw" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_inT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YP_inj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_YPxgBT9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YP_inz9AEemkJ6es1zdyvw" elementId="title" name="Title"/>
- <parameters xmi:id="_YP_ioD9AEemkJ6es1zdyvw" elementId="message" name="Message"/>
- <parameters xmi:id="_YP_ioT9AEemkJ6es1zdyvw" elementId="initialValue" name="Initial Value"/>
- <parameters xmi:id="_YP_ioj9AEemkJ6es1zdyvw" elementId="cancelReturns" name="Return Value on Cancel"/>
- </commands>
- <commands xmi:id="_YP_ioz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJgD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.add" commandName="Add dashboard" description="Add dashboard to view" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJgT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJgj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskComplete" commandName="Mark Task Complete" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJgz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJhD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJhT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJhj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.driver.manager" commandName="驱动管理器" description="驱动管理器" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJhz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJiD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJiT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.commands.CoverageLast" commandName="Coverage" description="Coverage" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJij9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_YPxgHz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJiz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.cutcolumn" commandName="Cut" category="_YPxgIT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJjD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_YPxgHD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJjT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJjj9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJjz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJkD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.view" commandName="View dashboard" description="View dashboard in dialog" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJkT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository..." description="Adds an existing Git repository to the Git Repositories view" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJkj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJkz9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJlD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearActiveTime" commandName="Clear Active Time" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJlT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id Information To Clipboard" description="Copies the build identification information to the clipboard." category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJlj9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.refreshproject" commandName="Refresh Gradle Project" description="Synchronizes the Gradle builds of the selected projects with the workspace" category="_YPw48z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJlz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJmD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.task.attachContext" commandName="Attach Context" category="_YPw49j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJmT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor" commandName="XPath Processor" category="_YPxgCT9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQAJmj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.commands.radioStateParameter" name="State" optional="false"/>
- </commands>
- <commands xmi:id="_YQAJmz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJnD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.connector.local.command.launch" commandName="Open Local Terminal on Selection" category="_YPxgHj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJnT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_YPw4_j9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQAJnj9AEemkJ6es1zdyvw" elementId="preferencePageId" name="Preference Page"/>
- </commands>
- <commands xmi:id="_YQAJnz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.replace.toggle.open" commandName="Open Replace Bar" category="_YPyHFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJoD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.sourcelookup.ui.openSourceLookupInfoDialog" commandName="Source Lookup Info" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJoT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJoj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJoz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJpD9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.perspective.meexplorer.search.regexcommand" commandName="Regular Expression" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJpT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJpj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJpz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJqD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJqT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJqj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJqz9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJrD9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.symbolinfile" commandName="Go to Symbol in File" category="_YPxgHT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJrT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJrj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJrz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJsD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJsT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJsj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.sync.auto" commandName="自动同步连接与导航" description="根据数据库导航器的选择自动同步活动连接" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJsz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJtD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.tools.menu" commandName="上下文工具" description="显示带数据库工具的上下文菜单" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJtT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.resetOnDump" commandName="Reset on Dump" category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJtj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJtz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_YPxgKD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJuD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJuT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJuj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJuz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.fetch.all" commandName="获取所有数据" description="获取所有行" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAJvD9AEemkJ6es1zdyvw" 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="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQAwkD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQBXoD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-sD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.actions.LifeCycleTest.run" commandName="Run Maven Test" description="Run Maven Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-sT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.run" commandName="Run XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-sj9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.core.ui.enableCodeLive" commandName="CodeLive" description="CodeLive Enablement" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-sz9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.remaptoprojectcommand" commandName="Link with Project" description="Link the cloud application with the project." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-tD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-tT9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-tj9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-tz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-uD9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQB-uT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClwD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClwT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClwj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.add" commandName="添加行" description="添加新行" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClwz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClxD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClxT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClxj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.explain" commandName="解析执行计划" description="解析执行计划" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClxz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Index with HEAD Revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClyD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClyT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClyj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jaxb.eclipselink.ui.command.addEclipseLinkJaxbProperty" commandName="Add EclipseLink JAXB property" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClyz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.oracle.job.run" commandName="Run" description="Run Job" category="_YPxgEz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClzD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.convertToDocbookCommand" commandName="Generate Docbook" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClzT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClzj9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQClzz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl0D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl0T9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.restart.commands.restart" commandName="Trigger Restart" description="Restart Spring Boot Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl0j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository..." description="Clones a Git repository and adds the clone to the Git Repositories view" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl0z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl1D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl1T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl1j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl1z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl2D9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl2T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Git Repository..." description="Creates a new Git repository and adds it to the Git Repositories view" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl2j9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl2z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.disconnectAll" commandName="全部断开" description="关闭所有打开的连接" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl3D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl3T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.togglePanel" commandName="Show/hide results panel" description="Show/hide some particular results panel" category="_YPw4_T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQCl3j9AEemkJ6es1zdyvw" elementId="panelId" name="Panel Name" optional="false"/>
- </commands>
- <commands xmi:id="_YQCl3z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl4D9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.disconnectcommand" commandName="Disconnect" description="Disconnect Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl4T9AEemkJ6es1zdyvw" 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="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl4j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl4z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.goto" commandName="打开数据库对象..." description="打开数据库元对象" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl5D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl5T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.editor.open" commandName="SQL 编辑器" description="打开 SQL 编辑器(已存在或新建)" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl5j9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.perspective.meexplorer.search.folderfiltertogglecommand" commandName="Do not match folders" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl5z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl6D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.open.context.dialog" commandName="Show Context Quick View" description="Show Context Quick View" category="_YPw49j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl6T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl6j9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl6z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.sync.connection" commandName="从导航设置连接" description="根据数据库导航器的选择设置活动连接" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl7D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithRef" commandName="Compare with Branch, Tag or Reference..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl7T9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.attachment.retrieveContext" commandName="Retrieve Context Attachment" category="_YPw49j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl7j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl7z9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.RestartAction" commandName="(Re)start" description="(Re)start Boot App" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl8D9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.rejectChanges" commandName="放弃变更" description="放弃变更" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl8T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl8j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl8z9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl9D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.RefreshRepositoryTasks" commandName="Synchronize Changed" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl9T9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQCl9j9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQCl9z9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/>
- </commands>
- <commands xmi:id="_YQDM0D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM0T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM0j9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM0z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM1D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM1T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.bookmark.navigate" commandName="Navigate To" description="Navigate to the bookmarked object" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM1j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.focus.filter" commandName="激活过滤器/数据编辑器" description="将焦点设置到过滤编辑器/数据编辑器" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM1z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM2D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM2T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM2j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM2z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.save.file" commandName="保存 SQL 脚本" description="保存至文件" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM3D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.interest.increment" commandName="Make Landmark" description="Make Landmark" category="_YPw49j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM3T9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM3j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM3z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.export.data" commandName="导出数据" description="将数据导出至文件" category="_YPyHED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM4D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM4T9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.api.tools.ui.convert.javadocs" commandName="Convert API Tools &Javadoc Tags..." description="Starts a wizard that will allow you to convert existing Javadoc tags to annotations" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM4j9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM4z9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM5D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM5T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM5j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.columnsFitScreen" commandName="Columns pack: fit screen" description="Resize columns to see maximum information" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM5z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Push" commandName="Push..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM6D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM6T9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.convertJavaProjectToJpa" commandName="Convert to JPA Project..." category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM6j9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.breadcrumb.togglebreadcrumbcommand" commandName="BreadCrumb" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM6z9AEemkJ6es1zdyvw" elementId="org.eclipse.emf.codegen.ecore.ui.Generate" commandName="Generate Code" description="Generate code for the EMF models in the workspace" category="_YPxgIz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM7D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM7T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM7j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.comment.multi" commandName="切换块注释" description="添加或删除多行注释" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM7z9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM8D9AEemkJ6es1zdyvw" elementId="org.eclipse.tips.ide.command.open" commandName="Tip of the Day" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM8j9AEemkJ6es1zdyvw" 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="_YPw48T9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQDM8z9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
- </commands>
- <commands xmi:id="_YQDM9D9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM9T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM9j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM9z9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM-D9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM-T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM-j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM-z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM_D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM_T9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM_j9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.generateDynamicEntities" commandName="Generate Dynamic Entities from Tables..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDM_z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNAD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.sourcelookup.ui.importBinaryProject" commandName="Import Binary Project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNAT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNAj9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNAz9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNBD9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.replaceone" commandName="Replace and Find Next" category="_YPyHFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNBT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.editor.recent" commandName="近期 SQL 编辑器" description="打开近期 SQL 脚本" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNBj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.zoomIn" commandName="Zoom In" description="Zoom in text, increase default font size for text editors" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNBz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNCD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNCT9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNCj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNCz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNDD9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNDT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.markers.copyMarkerResourceQualifiedName" commandName="Copy Resource Qualified Name To Clipboard" description="Copies markers resource qualified name to the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNDj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.procedure.execute" commandName="执行存储过程" description="打开包含存储过程执行语句的 SQL 终端" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNDz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNED9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNET9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDNEj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.toggle.result.panel" commandName="切换结果面板" description="显示/隐藏结果面板" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz4D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz4T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.erd.diagram.create" commandName="创建 ERD" description="创建实体关系图" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz4j9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_YPyHFT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz4z9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.entityMappingsAddPersistentClass" commandName="Add Class..." category="_YPxgCj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz5D9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz5T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.oracle.code.compile" commandName="Compile" description="Compile" category="_YPxgEz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz5j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz5z9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.ui.command.openPom" commandName="Open Maven POM" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz6D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.index.rebuild" commandName="Rebuild Java Index" description="Rebuilds the Java index database" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz6T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz6j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz6z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz7D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.goToPreviousUnread" commandName="Go To Previous Unread Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz7T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz7j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.linkeditor" commandName="链接编辑器" description="链接编辑器" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz7z9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz8D9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.ui.EnableDisableBootDevtools" commandName="Add/Remove Boot Devtools" category="_YPxgFT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz8T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_YPxgEj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQDz8j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="View"/>
- <parameters xmi:id="_YQDz8z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/>
- <parameters xmi:id="_YQDz9D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/>
- </commands>
- <commands xmi:id="_YQDz9T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz9j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Edit" commandName="Edit Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz9z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQDz-D9AEemkJ6es1zdyvw" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/>
- </commands>
- <commands xmi:id="_YQDz-T9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz-j9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.selectRootElements" commandName="Select Root Elements" category="_YPw4-z9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQDz-z9AEemkJ6es1zdyvw" elementId="type" name="type" optional="false"/>
- </commands>
- <commands xmi:id="_YQDz_D9AEemkJ6es1zdyvw" 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="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz_T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz_j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.hidetrimbars" commandName="Toggle visibility of the window toolbars" description="Toggle the visibility of the toolbars of the current window" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQDz_z9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0AD9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.commands.editStartersCommand" commandName="Edit Starters" category="_YPxgFT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0AT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Aj9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Az9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_YPw4-T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0BD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0BT9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Bj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.addTaskRepository" commandName="Add Task Repository..." category="_YPw4-D9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQD0Bz9AEemkJ6es1zdyvw" elementId="connectorKind" name="Repository Type"/>
- </commands>
- <commands xmi:id="_YQD0CD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.removeAllSessions" commandName="Remove All Sessions" category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0CT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Cj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Cz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.updateUnitVersions" commandName="Update IU Versions from Repositories" description="Update to latest IU versions" category="_YPxgDT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0DD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0DT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.wsdl.ui.refactor.rename.element" commandName="Rename WSDL component" description="Renames WSDL component" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Dj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_YPxgJD9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQD0Dz9AEemkJ6es1zdyvw" elementId="cheatSheetId" name="Identifier"/>
- </commands>
- <commands xmi:id="_YQD0ED9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.viewSource.command" commandName="View Unformatted Text" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0ET9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Ej9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Ez9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0FD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQD0FT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/>
- </commands>
- <commands xmi:id="_YQD0Fj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Fz9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0GD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0GT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Gj9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.meexplorer.jdtsupport.assignworkingset.command" commandName="Assign Working Sets..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0Gz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.project.create" commandName="新建项目" description="新建项目" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0HD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQD0HT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.PullWithOptions" commandName="Pull..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa8D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa8j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_YPw4-T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa8z9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa9D9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa9T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa9j9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa9z9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskUnread" commandName="Mark Task Unread" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa-D9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa-T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa-j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.txn.log" commandName="事务日志" description="当前事务日志(执行的查询)" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa-z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa_D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.cut.line" commandName="Cut Line" description="Cut a line of text, or multiple lines when invoked again without interruption" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa_T9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.command.launch" commandName="Open Terminal on Selection" category="_YPxgHj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa_j9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.commons.ui.stop" commandName="Stop Application" description="Stop last launched application" category="_YPxgJj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEa_z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.previous" commandName="上一行" description="移动到上一行" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbAD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbAT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQEbAj9AEemkJ6es1zdyvw" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
- </commands>
- <commands xmi:id="_YQEbAz9AEemkJ6es1zdyvw" 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="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbBD9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbBT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.openEditorDropdown" commandName="Open Setup Editor" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbBj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbBz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ReplaceWithPrevious" commandName="Replace with Previous Revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbCD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.sourcelookup.ui.openPom" commandName="Open Pom" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbCT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.ui.questionnaire" commandName="Configuration Questionnaire" description="Review the IDE's most fiercely contested preferences" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbCj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Shared Area Visibility" description="Toggles the visibility of the shared area" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbCz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbDD9AEemkJ6es1zdyvw" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbDT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbDj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.GotoMatchingTokenAction" commandName="Goto Matching Token" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbDz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.api.tools.ui.setup.projects" commandName="API &Tools Setup..." description="Configure projects for API usage and compatibility checks" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbED9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbET9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbEj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbEz9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.openbuildscript" commandName="Open Gradle Build Script" description="Opens the Gradle build script for the selected Gradle project" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbFD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.convertJavaConverters" commandName="Move Java Converters to XML..." category="_YPxgCD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbFT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbFj9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.openrunconfiguration" commandName="Open Gradle Run Configuration" description="Opens the Run Configuration for the selected Gradle tasks" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbFz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.DeleteTag" commandName="&Delete Tag" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbGD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbGT9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.unmapprojectcommand" commandName="Unlink Project" description="Unlink the cloud application and the project." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbGj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.remove" commandName="Remove dashboard" description="Remove dashboard from view" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbGz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.toggleOrder" commandName="切换结果排序" description="切换结果集的排序(升序/降序/默认)" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbHD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbHT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbHj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbHz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbID9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbIT9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.copy" commandName="Copy" category="_YPxgKD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbIj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbIz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.filterMenu.distinct" commandName="按数值过滤" description="按特定的属性值过滤" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbJD9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_YPxgHz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbJT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.generate.xml" commandName="XML File..." description="Generate a XML file from the selected DTD or Schema" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbJj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.project.refresh" commandName="刷新项目" description="刷新整个工作空间" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbJz9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbKD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQEbKT9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_YPyHEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCAD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCAT9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.StopAction" commandName="Stop" description="Stop Boot App" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCAj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase on" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCAz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.ShowInHistory" commandName="Show in History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCBD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.previousTask" commandName="Previous Task Command" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCBT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCBj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCBz9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.updaterestartmodulecommand" commandName="Update and Restart" description="=Update and Restart" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCCD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCCT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCCj9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.commands.hideFindReplaceBarCommand" commandName="Close Inline Search" category="_YPyHFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCCz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCDD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCDT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToPreviousUnread" commandName="Mark Task Read and Go To Previous Unread Task" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCDj9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCDz9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCET9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCEj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCEz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCFD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCFT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.toggleMode" commandName="切换表格/记录视图" description="切换结果集的表格/记录视图" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCFj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCFz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCGD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.newEditor" commandName="Clone Editor" description="Open another editor on the active editor's input" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCGT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCGj9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCGz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCHD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCHT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCHj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCHz9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.ui.command.addPlugin" commandName="Add Maven Plugin" description="Add Maven Plugin" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCID9AEemkJ6es1zdyvw" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCIT9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCIj9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCIz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.qm.clear" commandName="清除日志" description="清除查询管理器日志" category="_YPyHED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCJD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCJT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.create" commandName="创建对象" description="创建新的数据库对象" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCJj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.add.exclude" commandName="隐藏选中对象" description="隐藏选中对象" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCJz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.mergeSessions" commandName="Merge Sessions" category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCKD9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCKT9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.commons.ui.relaunch" commandName="Relaunch Application" description="Relaunch last launched application" category="_YPxgJj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCKj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCKz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCLD9AEemkJ6es1zdyvw" 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="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCLT9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_YPxgHz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCLj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.filterMenu" commandName="过滤器菜单" description="过滤器上下文菜单" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCLz9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCMD9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.connectcommand" commandName="Connect" description="Connect to Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCMT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCMj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCMz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCND9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.commit" commandName="提交" description="提交当前会话中的改动" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFCNT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.persistentTypeAddVirtualAttribute" commandName="Add Virtual Attribute..." category="_YPxgCj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_YPyHET9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQFpET9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/>
- <parameters xmi:id="_YQFpEj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/>
- </commands>
- <commands xmi:id="_YQFpEz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.newDynamicEntity" commandName="EclipseLink Dynamic Entity" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpFD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpFT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpFj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpFz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpGD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpGT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpGj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.saveToDatabaseAction" commandName="Save to Database" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpGz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpHD9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpHT9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpHj9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_YPxgHz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpHz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpID9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Revision Information" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpIT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.morph.delimited.list" commandName="变换为带分隔符的列表" description="变换为带分隔符的列表" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpIj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpIz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXml" commandName="Add Attribute to XML" category="_YPxgCj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpJD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.data.forSelection" commandName="编辑数据" description="查看/编辑表格数据" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpJT9AEemkJ6es1zdyvw" elementId="org.eclipse.tips.ide.command.trim.open" commandName="Tip of the Day" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpJj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpJz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpKD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.selectCounters" commandName="Select Counters" category="_YPw4-z9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQFpKT9AEemkJ6es1zdyvw" elementId="type" name="type" optional="false"/>
- </commands>
- <commands xmi:id="_YQFpKj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQFpKz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQGQID9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.persistentTypeMapAs" commandName="Map As" category="_YPxgCj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQGQIT9AEemkJ6es1zdyvw" elementId="persistentTypeMappingKey" name="mapping key" optional="false"/>
- </commands>
- <commands xmi:id="_YQGQIj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.count" commandName="选择行数" description="为下面的查询选择行数" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQGQIz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.close.tab" commandName="关闭标签页" description="关闭结果标签页" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQGQJD9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.package.common.contribute" commandName="Contribute" description="Contribute to the development and success of the Eclipse IDE!" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQGQJT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.assist.templates" commandName="补全模板名称" description="自动补全模板名称" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQGQJj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.DMLDialogSelectionAction" commandName="Edit in SQL Query Builder..." category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQGQJz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQGQKD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQGQKT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3MD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.attachProfileAction" commandName="Set Connection Information" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3MT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.qm.filter" commandName="过滤..." description="设置查询管理器的过滤器" category="_YPyHED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3Mj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3Mz9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_YPyHEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3ND9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3NT9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.perspective.meexplorer.search.casesensitivecommand" commandName="Case Sensitive" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3Nj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3Nz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3OD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3OT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.import" commandName="Import Profiles Command" description="Command to import connection profiles" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3Oj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3Oz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3PD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearOutgoing" commandName="Clear Outgoing Changes" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3PT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3Pj9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.mpc.ui.command.showFavorites" commandName="Eclipse Marketplace Favorites" description="Open Marketplace Favorites" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3Pz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3QD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQG3QT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeQD9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeQT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeQj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Check Out" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeQz9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.actions.LifeCycleClean.run" commandName="Run Maven Clean" description="Run Maven Clean" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeRD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeRT9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeRj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.convertToEclipseHelpCommand" commandName="Generate Eclipse Help (*.html and *-toc.xml)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeRz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeSD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.navigateLink" commandName="追踪外键链接" description="追踪外键链接" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeST9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeSj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeSz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.configureFilters" commandName="Filters..." description="Configure the filters to apply to the markers view" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeTD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.importSession" commandName="Import Session..." category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeTT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeTj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeTz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_YPxgBT9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQHeUD9AEemkJ6es1zdyvw" elementId="title" name="Title"/>
- <parameters xmi:id="_YQHeUT9AEemkJ6es1zdyvw" elementId="message" name="Message"/>
- <parameters xmi:id="_YQHeUj9AEemkJ6es1zdyvw" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/>
- <parameters xmi:id="_YQHeUz9AEemkJ6es1zdyvw" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/>
- <parameters xmi:id="_YQHeVD9AEemkJ6es1zdyvw" elementId="buttonLabel0" name="First Button Label"/>
- <parameters xmi:id="_YQHeVT9AEemkJ6es1zdyvw" elementId="buttonLabel1" name="Second Button Label"/>
- <parameters xmi:id="_YQHeVj9AEemkJ6es1zdyvw" elementId="buttonLabel2" name="Third Button Label"/>
- <parameters xmi:id="_YQHeVz9AEemkJ6es1zdyvw" elementId="buttonLabel3" name="Fourth Button Label"/>
- <parameters xmi:id="_YQHeWD9AEemkJ6es1zdyvw" elementId="cancelReturns" name="Return Value on Cancel"/>
- </commands>
- <commands xmi:id="_YQHeWT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.genericeditor.findReferences" commandName="Find References" description="Find other code items referencing the current selected item." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeWj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeWz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeXD9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeXT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.generateDDL" commandName="Generate Tables from Entities..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeXj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeXz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.runAction" commandName="Run" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeYD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeYT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeYj9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeYz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeZD9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.webclipse.evergreen.checkForUpdates" commandName="Check for Updates" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeZT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeZj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.generateScript" commandName="生成脚本" description="生成变更脚本" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeZz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.project.select" commandName="选择活动项目" description="选择活动项目" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeaD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeaT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeaj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHeaz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHebD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHebT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHebj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.configure" commandName="Settings" description="Dashboard view settings" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHebz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHecD9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQHecT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.editor.forSelection" commandName="在 SQL 控制台中读数据" description="打开包含数据读取语句的新 SQL 控制台" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFUD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Tag" commandName="Create Tag..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFUT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFUj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFUz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFVD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.resources.nested.changeProjectPresentation" commandName="P&rojects Presentation" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQIFVT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.resources.nested.enabled" name="&Hierarchical"/>
- <parameters xmi:id="_YQIFVj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.commands.radioStateParameter" name="Nested Project view - Radio State" optional="false"/>
- </commands>
- <commands xmi:id="_YQIFVz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFWD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.genericeditor.togglehighlight" commandName="Toggle Highlight" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFWT9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFWj9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.command.formatDocument" commandName="Format" description="Format the document according to format preferences" category="_YPw49T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFWz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.rollback" commandName="回滚" description="回滚当前会话的修改" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFXD9AEemkJ6es1zdyvw" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_YPyHEz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFXT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQIFXj9AEemkJ6es1zdyvw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
- </commands>
- <commands xmi:id="_YQIFXz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.replace.toggle.close" commandName="Close Replace Bar" category="_YPyHFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFYD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFYT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.removeInstance" commandName="Remove Result" category="_YPxgAj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFYj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Index" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFYz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.discovery.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFZD9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFZT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXmlAndMap" commandName="Add Attribute to XML and Map..." category="_YPxgCj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFZj9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.refreshtaskview" commandName="Refresh View (Gradle Tasks)" description="Refreshes the Gradle Tasks view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFZz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFaD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.columnsFitValue" commandName="Columns pack: fit values" description="Resize columns to fit row values" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFaT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFaj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFaz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFbD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFbT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFbj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.synchronizePreferences" commandName="Synchronize Preferences" category="_YPxgGT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFbz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFcD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFcT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFcj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFcz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.toggleLayout" commandName="切换面板布局" description="切换垂直/水平面板布局" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFdD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFdT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFdj9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_YPxgET9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFdz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_YPxgJT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFeD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFeT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFej9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.shortcut.test.run" commandName="Run Gradle Test" description="Run Gradle test based on the current selection" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFez9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFfD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFfT9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.design" commandName="Graphical Designer" category="_YPxgFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFfj9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.quickaccess" commandName="Quick Access" category="_YPxgKD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFfz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.preferences" commandName="首选项" description="导航首选项" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFgD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resource.link.folder" commandName="链接文件夹" description="创建到文件夹的链接" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFgT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFgj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.convertToHtmlCommand" commandName="Generate HTML" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFgz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFhD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFhT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.toggle" commandName="切换过滤器" description="切换(启用/禁用)定义的过滤器" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFhj9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFhz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFiD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareWithHead" commandName="Compare with HEAD Revision" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFiT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFij9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.markers.copyDescription" commandName="Copy Description To Clipboard" description="Copies markers description field to the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFiz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFjD9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.boot.BootLaunchShortcut.debug" commandName="Debug Spring Boot App" description="Debug Spring Boot App" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFjT9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFjj9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.api.tools.ui.compare.to.baseline" commandName="API Baseline..." description="Allows to compare the selected resource with the current baseline" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIFjz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsYD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsYT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.editor.create" commandName="新建 SQL 编辑器" description="打开新 SQL 编辑器(新建脚本)" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsYj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsYz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.command.disconnect" commandName="Disconnect Terminal" category="_YPxgHj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsZD9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.RedebugAction" commandName="(Re)debug" description="(Re)debug Boot App" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsZT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Revision Information" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsZj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsZz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsaD9AEemkJ6es1zdyvw" 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="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsaT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.newEclipseLinkMappingFile" commandName="EclipseLink ORM Mapping File" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsaj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.openRemoteTask" commandName="Open Remote Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsaz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsbD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsbT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.task.retrieveContext" commandName="Retrieve Context" category="_YPw49j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsbj9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.refactor.rename" commandName="Rename" description="Rename a Java Element" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsbz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIscD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIscT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIscj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.togglestatusbar" commandName="Toggle Statusbar" description="Toggle the visibility of the bottom status bar" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIscz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsdD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.task.ui.editor.QuickOutline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_YPw4-D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsdT9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.addbuildshipnature" commandName="Add Gradle Nature" description="Adds the Gradle nature and synchronizes this project as if the Gradle Import wizard had been run on its location." category="_YPw48z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsdj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsdz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.horizotal" commandName="Horizontal Layout" category="_YPxgFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIseD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIseT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.edit.paste.special" commandName="高级粘贴" description="粘贴并保留额外设置" category="_YPyHED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsej9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsez9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsfD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsfT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsfj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.js.command" commandName="Chrome / Chromium Debugger" category="_YPxgBz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsfz9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsgD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsgT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.edit.copy.special" commandName="高级复制" description="复制特别的信息" category="_YPyHED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsgj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.bugs.commands.newTaskFromMarker" commandName="New Task from Marker..." description="Report as Bug from Marker" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsgz9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIshD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_YPw4-T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIshT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.focus.view" commandName="Focus View" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQIshj9AEemkJ6es1zdyvw" elementId="viewId" name="View ID to Focus" optional="false"/>
- </commands>
- <commands xmi:id="_YQIshz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.testNgShortcut.coverage" commandName="Coverage TestNG Test" description="Coverage TestNG Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsiD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsiT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_YPw4_j9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQIsij9AEemkJ6es1zdyvw" elementId="plugin" name="Plugin"/>
- <parameters xmi:id="_YQIsiz9AEemkJ6es1zdyvw" elementId="path" name="Path"/>
- </commands>
- <commands xmi:id="_YQIsjD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.source" commandName="Source Code" category="_YPxgFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsjT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.scriptNew" commandName="在单独的标签页中执行语句" description="在单独的结果标签页中执行脚本的语句" category="_YPxgDD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsjj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_YPxgJD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsjz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_YPw4_D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIskD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.annotate.classFile" commandName="Annotate Class File" description="Externally add Annotations to a Class File." category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIskT9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.openhomepagecommand" commandName="Open Home Page" description="Open Home Page" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIskj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIskz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_YPxgED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIslD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Check Out" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIslT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.activateSelectedTask" commandName="Activate Selected Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIslj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIslz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsmD9AEemkJ6es1zdyvw" 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="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsmT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsmj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Index" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQIsmz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_YPw4_D9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQIsnD9AEemkJ6es1zdyvw" elementId="newWizardId" name="New Wizard"/>
- </commands>
- <commands xmi:id="_YQIsnT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTcD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTcT9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.ui.importer.configureProject" commandName="Configure and Detect Nested Projects..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTcj9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.selectActiveSession" commandName="Select Active Session..." category="_YPw4-z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTcz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTdD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.generate.uuid" commandName="Generate UUID" description="Generates UUID/GUID and inserts into active text editor or data editor" category="_YPxgJz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTdT9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTdj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.erd.diagram.view" commandName="View Diagram" description="View Entity Relations Diagram" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTdz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.copy" commandName="复制行" description="复制当前行" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTeD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.interest.decrement" commandName="Make Less Interesting" description="Make Less Interesting" category="_YPw49j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTeT9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.quicksearch.commands.quicksearchCommand" commandName="Quick Search Command" category="_YPyHFz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTej9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTez9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Check Out" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTfD9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTfT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTfj9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQJTfz9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/>
- <parameters xmi:id="_YQJTgD9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/>
- </commands>
- <commands xmi:id="_YQJTgT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTgj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.delete" commandName="删除行" description="删除行" category="_YPw4_T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTgz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJThD9AEemkJ6es1zdyvw" elementId="org.eclipse.userstorage.ui.showPullDown" commandName="Show Pull Down Menu" category="_YPxgJD9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQJThT9AEemkJ6es1zdyvw" elementId="intoolbar" name="In Tool Bar" optional="false"/>
- </commands>
- <commands xmi:id="_YQJThj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.import.data" commandName="导入数据" description="从数据库表中导入数据" category="_YPyHED9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJThz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.makePersistent" commandName="Make Persistent..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTiD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSelectionAction" commandName="Execute Selected Text" category="_YPxgKz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTiT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jaxb.ui.command.createPackageInfo" commandName="Create package-info.java" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTij9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_YPxgIj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTiz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTjD9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_YPxgHz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTjT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTjj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.newMappingFile" commandName="JPA ORM Mapping File" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTjz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTkD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTkT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Scroll cursor line to center, top and bottom" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTkj9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.boot.BootLaunchShortcut.run" commandName="Run Spring Boot App" description="Run Spring Boot App" category="_YPxgBD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTkz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.xmlFileUpgradeToLatestVersion" commandName="Upgrade JPA Document Version" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTlD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTlT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTlj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Main Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTlz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.bookmark.add" commandName="添加书签" description="添加书签" category="_YPxgFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTmD9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTmT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTmj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.commands.openscrapbook" commandName="Open SQL Scrapboo&k" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTmz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_YPxgGj9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQJTnD9AEemkJ6es1zdyvw" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/>
- </commands>
- <commands xmi:id="_YQJTnT9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTnj9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_YQJTnz9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.ls.eclipse.commons.commands.OpenJavaElementInEditor" commandName="Open Java Element in Editor" category="_YPxgDz9AEemkJ6es1zdyvw">
- <parameters xmi:id="_YQJToD9AEemkJ6es1zdyvw" elementId="bindingKey" name="bindingKey" optional="false"/>
- <parameters xmi:id="_YQJToT9AEemkJ6es1zdyvw" elementId="projectName" name="projectName" optional="false"/>
- </commands>
- <commands xmi:id="_YcjXwD9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.help.darktheme.commandid" commandName="com.genuitec.myeclipse.help.darktheme.commandid"/>
- <commands xmi:id="_YcoQQD9AEemkJ6es1zdyvw" elementId="com.genuitec.migrate.to.codemix" commandName="com.genuitec.migrate.to.codemix"/>
- <commands xmi:id="_Y4NZAD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4OnID9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet/org.eclipse.datatools.sqltools.sqlscrapbook.actions.OpenScrapbookAction" commandName="Open SQL Scrapbook" description="Open scrapbook to edit SQL statements" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4SRgD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4SRgT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4UGsD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4UGsT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4UtwD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4VU0D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4VU0T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4V74D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4Wi8D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4Wi8T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageDropDownAction" commandName="Coverage" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4XKAD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageAsAction" commandName="Coverage As" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4XKAT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageHistoryAction" commandName="Coverage History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4Y_MD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.egit.ui.SearchActionSet/org.eclipse.egit.ui.actions.OpenCommitSearchPage" commandName="Git..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4d3sD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4d3sT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4eewD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4jXQD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4j-UD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jst.j2ee.J2eeMainActionSet/org.eclipse.jst.j2ee.internal.actions.NewJavaEEArtifact" commandName="Servlet" description="Create a new Servlet" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4klYD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jst.j2ee.J2eeMainActionSet/org.eclipse.jst.j2ee.internal.actions.NewJavaEEProject" commandName="Dynamic Web Project" description="Create a Dynamic Web project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4klYT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.java.actionSet.browsing/org.eclipse.mylyn.java.ui.actions.ApplyMylynToBrowsingPerspectiveAction" commandName="Focus Browsing Perspective" description="Focus Java Browsing Views on Active Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4makD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.doc.actionSet/org.eclipse.mylyn.tasks.ui.bug.report" commandName="Report Bug or Enhancement..." description="Report Bug or Enhancement" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4nosD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.navigation.additions/org.eclipse.mylyn.tasks.ui.navigate.task.history" commandName="Activate Previous Task" description="Activate Previous Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4nosT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4oPwD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4oPwT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.rse.core.search.searchActionSet/org.eclipse.rse.core.search.searchAction" commandName="Remote..." description="Opens Remote Search dialog page for text and file searching on remote systems" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4oPwj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4oPwz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4o20D9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4o20T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4pd4D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.chromium.debug.ui.actionSets/org.eclipse.wst.jsdt.chromium.debug.ui.actions.AddExceptionBreakpointAction" commandName="Add V8/Chrome JavaScript Exception Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4pd4T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenFileWizard" commandName="JavaScript Source File" description="New JavaScript file" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4qE8D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenProjectWizard" commandName="JavaScript Project..." description="New JavaScript Project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4r6ID9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.refactor.show.refactoring.history" commandName="History..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4r6IT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.SearchActionSet/org.eclipse.wst.jsdt.ui.actions.OpenJavaSearchPage" commandName="JavaScript..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4tvUD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.server.ui.new.actionSet/org.eclipse.wst.server.ui.action.new.server" commandName="Create Server" description="Create Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4tvUT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.server.ui.internal.webbrowser.actionSet/org.eclipse.wst.server.ui.internal.webbrowser.action.open" commandName="Open Web Browser" description="Open Web Browser" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4uWYD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.server.ui.internal.webbrowser.actionSet/org.eclipse.wst.server.ui.internal.webbrowser.action.switch" commandName="Web Browser" description="Web Browser" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4uWYT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newCSSFile" commandName="CSS" description="Create a new Cascading Style Sheet" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4uWYj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newJSFile" commandName="JavaScript" description="Create a new JavaScript file" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4u9cD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newHTMLFile" commandName="HTML" description="Create a new HTML page" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4u9cT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.ws.explorer.explorer/org.eclipse.wst.ws.internal.explorer.action.LaunchWSEAction" commandName="Launch the Web Services Explorer" description="Launch the Web Services Explorer" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4vkgD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.springsource.ide.eclipse.commons.launch.actionSet/org.springsource.ide.eclipse.commons.launch.relaunch.action" commandName="Relaunch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4vkgT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.springsource.ide.eclipse.commons.launch.actionSet/org.springsource.ide.eclipse.commons.launch.stop.action" commandName="Terminate" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4vkgj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.search.OpenDataSearchPage" commandName="数据库全文本" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4wLkD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.search.OpenMetadataSearchPage" commandName="数据库元数据" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4wLkT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4wyoD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.datatools.sqltools.rullerDoubleClick/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Add Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4wyoT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.exporter.genModelEditorContribution/org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" commandName="Export Model..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4wyoj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.importer.genModelEditorContribution/org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" commandName="Reload..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4wyoz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.RemoveMappingActionID" commandName="Remove Mapping" description="Remove the mapping associated with the selected objects." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4zO4D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.TypeMatchMappingActionID" commandName="Match Mapping by Type" description="Create child mappings automatically by type." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4z18D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.NameMatchMappingActionID" commandName="Match Mapping by Name" description="Create child mappings automatically by name." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4z18T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" commandName="Create One-sided Mapping" description="Create a new mapping for the selected object." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y40dAD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateMappingActionID" commandName="Create Mapping" description="Create a new mapping between the selected objects." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y40dAT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" commandName="Add Output Root..." description="Add new output root." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y41EED9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" commandName="Add Input Root..." description="Add new input root." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y41EET9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y41EEj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y41EEz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="Execute" description="Execute the Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y41rID9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Display" description="Display Result of Evaluating Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y42SMD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y42SMT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y42SMj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y425QD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y425QT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y43gUD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y43gUT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jst.jsp.core.jspsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y43gUj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jst.jsp.core.jspsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y43gUz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution/org.eclipse.m2e.jdt.ui.downloadSourcesAction" commandName="label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y43gVD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution_38/org.eclipse.m2e.jdt.ui.downloadSourcesAction_38" commandName="label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y44HYD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y44HYT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y44ucD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y44ucT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y44ucj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y45VgD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y45VgT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y45Vgj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y45Vgz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.editorActions/org.eclipse.wst.jsdt.chromium.debug.ui.editor.ruler.doubleClickBreakpointAction" commandName="Not Used" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y458kD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.debug.ui.togglebreakpoint/org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" commandName="Toggle Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y46joD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="JavaScript Editor Bookmark Ruler Action" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y46joT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y46joj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y47KsD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="JavaScript Editor Bookmark Ruler Action" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y47KsT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y47xwD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="%AddBookmark.label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y47xwT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="%SelectRuler.label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y47xwj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.editor/org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" commandName="Reload Dependencies" description="Reload Dependencies" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y48Y0D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.wsdl.wsdlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y48Y0T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.wsdl.wsdlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y48Y0j9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y48_4D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y48_4T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y49m8D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y49m8T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.jkiss.dbeaver.debug.ui.editorContribution/org.jkiss.dbeaver.debug.ui.actions.ManageBreakpointRulerAction" commandName="%actions.ManageBreakpointRulerAction.label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4-OAD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4-OAT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y4-OAj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5AqQD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5BRUD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5BRUT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5BRUj9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5B4YD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.sortByAction" commandName="Sort By" description="Sort By" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5B4YT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5B4Yj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5B4Yz9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5CfcD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5CfcT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5Cfcj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5DtkD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5DtkT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5EUoD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5EUoT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5E7sD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5E7sT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5FiwD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5GJ0D9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5GJ0T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5Gw4D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5Gw4T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5HX8D9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5HX8T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &References" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5H_AD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5ImED9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5ImET9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5KbQD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5KbQT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5LCUD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5LCUT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5LpYD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5LpYT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5MQcD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowRunningThreads" commandName="Show Running Threads" description="Show Running Threads" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5MQcT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5MQcj9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5M3gD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5M3gT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5NekD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5OssD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.context.ui.outline.contribution/org.eclipse.mylyn.context.ui.contentOutline.focus" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5OssT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.java.ui.markers.breakpoints.contribution/org.eclipse.mylyn.java.ui.actions.focus.markers.breakpoints" commandName="Focus on Active Task" description="Focus on Active Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5P60D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.ui.debug.view.contribution/org.eclipse.mylyn.ui.actions.FilterResourceNavigatorAction" commandName="Focus on Active Task (Experimental)" description="Focus on Active Task (Experimental)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5P60T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.ui.projectexplorer.filter/org.eclipse.mylyn.ide.ui.actions.focus.projectExplorer" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5Qh4D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.ui.search.contribution/org.eclipse.mylyn.ide.ui.actions.focus.search.results" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5RI8D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.ui.resource.navigator.filter/org.eclipse.mylyn.ide.ui.actions.focus.resourceNavigator" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5RI8T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.problems.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.problems" commandName="Focus on Active Task" description="Focus on Active Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5RwAD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.markers.all.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.all" commandName="Focus on Active Task" description="Focus on Active Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5RwAT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.markers.tasks.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.tasks" commandName="Focus on Active Task" description="Focus on Active Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5RwAj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.markers.bookmarks.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.bookmarks" commandName="Focus on Active Task" description="Focus on Active Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5RwAz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.java.explorer.contribution/org.eclipse.mylyn.java.actions.focus.packageExplorer" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5SXED9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.search.open" commandName="Search Repository..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5SXET9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.synchronize.changed" commandName="Synchronize Changed" description="Synchronize Changed" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5SXEj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.tasks.restore" commandName="Restore Tasks from History..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5SXEz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.open.repositories.view" commandName="Show Task Repositories View" description="Show Task Repositories View" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5SXFD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.doc.legend.show.action" commandName="Show UI Legend" description="Show Tasks UI Legend" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5S-ID9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.context.ui.actions.tasklist.focus" commandName="Focus on Workweek" description="Focus on Workweek" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5S-IT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5S-Ij9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.rse.ui.view.systemView.toolbar/org.eclipse.rse.ui.view.systemView.toolbar.linkWithSystemView" commandName="Link with Editor" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5S-Iz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.add.scriptload.breakpoint" commandName="Add Script Load Breakpoint" description="Add Script Load Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5TlMD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Suspend For All Script Loads" description="Suspends when any script is loaded" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5TlMT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.suspend.on.exceptions" commandName="Suspend On JavaScript Exceptions" description="Suspend on all JavaScript exceptions" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5TlMj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::debugViewActions/org.eclipse.wst.jsdt.debug.ui.show.all.scripts" commandName="Show All Scripts" description="Shows or hides all scripts loaded in the visible targets" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5TlMz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.functions" commandName="Show function variables" description="Show or hide function variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5TlND9AEemkJ6es1zdyvw" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.this" commandName="Show 'this' variable" description="Show or hide the this variable" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5UMQD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.prototypes" commandName="Show proto variables" description="Show or hide proto variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_Y5UMQT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.view/org.eclipse.wst.wsi.ui.internal.actions.actionDelegates.ValidateWSIProfileActionDelegate" commandName="WS-I Profile Validator" description="Validate WS-I Message Log File" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_OB6lcEvkEemRUu80Py4P3w" elementId="com.genuitec.eclipse.inlinesearch.delete.previous" commandName="Delete Previous Word" category="_YPyHFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_OB6lcUvkEemRUu80Py4P3w" elementId="com.genuitec.eclipse.inlinesearch.delete.next" commandName="Delete Next Word" category="_YPyHFj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPLsMCfvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jet.goto.matching.bracket" commandName="Goto Matching Bracket" description="Goto Matching Bracket" category="_YPxgGj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPLsMSfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.team.Revert" commandName="Revert Commit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPLsMifvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesViewCollapseWorkingTree" commandName="Collapse Working Tree" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPLsMyfvEeq9j5-P04oEqA" elementId="org.eclipse.ui.toggleShowKeys" commandName="Toggle Show Key Bindings" description="Shows key binding when command is invoked" category="_YPw4_j9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPLsNCfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.rename" commandName="Rename" description="Rename" category="_iPKeECfvEeq9j5-P04oEqA"/>
- <commands xmi:id="_iPMTQCfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.source.quickmenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_iPKeESfvEeq9j5-P04oEqA"/>
- <commands xmi:id="_iPMTQSfvEeq9j5-P04oEqA" elementId="org.eclipse.jdt.ui.edit.text.java.add.textblock" commandName="Add Text Block" description="Adds Text Block" category="_YPyHFD9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPMTQifvEeq9j5-P04oEqA" elementId="org.eclipse.text.quicksearch.commands.quicksearchCommand" commandName="Quick Search" category="_iPJ3ASfvEeq9j5-P04oEqA"/>
- <commands xmi:id="_iPMTQyfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesViewShowInSystemExplorer" commandName="Show In System Explorer" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPMTRCfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesCreateGroup" commandName="Create a Repository Group" description="Create a repository group for structuring repositories in the Git Repositories view" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPMTRSfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.team.CherryPick" commandName="Cherry Pick" category="_YPxgKj9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPMTRifvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jet.select.enclosing" commandName="Select Enclosing JET Element" description="Select Enclosing JET Element" category="_YPw48T9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_iPM6UCfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.format" commandName="Format" description="Format" category="_iPKeESfvEeq9j5-P04oEqA"/>
- <commands xmi:id="_iPM6USfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.refactor.quickmenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_iPKeECfvEeq9j5-P04oEqA"/>
- <commands xmi:id="_izZMgCfvEeq9j5-P04oEqA" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.RunToLineRulerActionDelegate" commandName="Run to Line" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_izbBsCfvEeq9j5-P04oEqA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.RunToLineRulerActionDelegate" commandName="Run to Line" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <commands xmi:id="_izcP0CfvEeq9j5-P04oEqA" elementId="AUTOGEN:::org.eclipse.debug.ui.debugview.toolbar/org.eclipse.debug.ui.debugview.toolbar.collapseAll" commandName="Collapse All" description="Collapse All" category="_YPxgDz9AEemkJ6es1zdyvw"/>
- <addons xmi:id="_YO2S-z9AEemkJ6es1zdyvw" 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="_YO2S_D9AEemkJ6es1zdyvw" 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="_YO2S_T9AEemkJ6es1zdyvw" 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="_YO2S_j9AEemkJ6es1zdyvw" 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="_YO2S_z9AEemkJ6es1zdyvw" 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="_YO2TAD9AEemkJ6es1zdyvw" 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="_YO2TAT9AEemkJ6es1zdyvw" 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="_YO2TAj9AEemkJ6es1zdyvw" 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="_YO2TAz9AEemkJ6es1zdyvw" 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="_YO2TBD9AEemkJ6es1zdyvw" 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="_YPDHQD9AEemkJ6es1zdyvw" elementId="SplitterAddon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.splitteraddon.SplitterAddon"/>
- <addons xmi:id="_IYS0IKimEeS11vbz3f9ezw" elementId="org.eclipse.ui.ide.addon.0" contributorURI="platform:/plugin/org.eclipse.ui.ide" contributionURI="bundleclass://org.eclipse.ui.ide/org.eclipse.ui.internal.ide.addons.SaveAllDirtyPartsAddon"/>
- <addons xmi:id="_dz0JgGOlEeSMMaPQU2nlzw" elementId="org.eclipse.ui.ide.application.addon.0" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.ui.ide.application/org.eclipse.ui.internal.ide.application.addons.ModelCleanupAddon"/>
- <categories xmi:id="_YPw48D9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.ls.eclipse.gotosymbol.commands.category" name="STS4"/>
- <categories xmi:id="_YPw48T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.edit" name="Edit"/>
- <categories xmi:id="_YPw48j9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.editor.category" name="WikiText Markup Editing Commands" description="commands for editing lightweight markup"/>
- <categories xmi:id="_YPw48z9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.project" name="Buildship" description="Contains the Buildship specific commands"/>
- <categories xmi:id="_YPw49D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/>
- <categories xmi:id="_YPw49T9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.commands.category" name="YEdit" description="Commands related to the YEdit plugin"/>
- <categories xmi:id="_YPw49j9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands" name="Focused UI" description="Task-Focused Interface"/>
- <categories xmi:id="_YPw49z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/>
- <categories xmi:id="_YPw4-D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.commands" name="Task Repositories"/>
- <categories xmi:id="_YPw4-T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/>
- <categories xmi:id="_YPw4-j9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.context.ui.commands" name="Mylyn WikiText" description="Commands used for Mylyn WikiText"/>
- <categories xmi:id="_YPw4-z9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui" name="EclEmma Code Coverage"/>
- <categories xmi:id="_YPw4_D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.file" name="File"/>
- <categories xmi:id="_YPw4_T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.rs" name="结果集" description="结果集命令"/>
- <categories xmi:id="_YPw4_j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.window" name="Window"/>
- <categories xmi:id="_YPxgAD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.debug.ui.commands.category" name="Database Debug" description="Database Debug commands"/>
- <categories xmi:id="_YPxgAT9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.commands" name="Spring Generic Text Editor" description="Spring Language Server Commands"/>
- <categories xmi:id="_YPxgAj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.category" name="SQL Results View"/>
- <categories xmi:id="_YPxgAz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.genericeditor.extension.category.source" name="Target Definition Source" description="Target Definition Source Page actions"/>
- <categories xmi:id="_YPxgBD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/>
- <categories xmi:id="_YPxgBT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/>
- <categories xmi:id="_YPxgBj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph" name="Oomph"/>
- <categories xmi:id="_YPxgBz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.js.category" name="Chrome / Chromium"/>
- <categories xmi:id="_YPxgCD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.jpaMetadataConversionCommands" name="JPA Metadata Conversion"/>
- <categories xmi:id="_YPxgCT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.views.XPathView" name="XPath"/>
- <categories xmi:id="_YPxgCj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.jpaStructureViewCommands" name="JPA Structure View"/>
- <categories xmi:id="_YPxgCz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.commons.repositories.ui.category.Team" name="Team"/>
- <categories xmi:id="_YPxgDD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql" name="SQL编辑器" description="SQL编辑器命令"/>
- <categories xmi:id="_YPxgDT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/>
- <categories xmi:id="_YPxgDj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.commands" name="Oomph"/>
- <categories xmi:id="_YPxgDz9AEemkJ6es1zdyvw" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/>
- <categories xmi:id="_YPxgED9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/>
- <categories xmi:id="_YPxgET9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/>
- <categories xmi:id="_YPxgEj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/>
- <categories xmi:id="_YPxgEz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.oracle" name="Oracle" description="Oracle Commands"/>
- <categories xmi:id="_YPxgFD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator" name="数据库导航" description="数据库导航命令"/>
- <categories xmi:id="_YPxgFT9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.commands.category" name="Spring Boot"/>
- <categories xmi:id="_YPxgFj9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.pagelayout" name="Web Page Editor Layout"/>
- <categories xmi:id="_YPxgFz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.category.editor" name="Task Editor"/>
- <categories xmi:id="_YPxgGD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/>
- <categories xmi:id="_YPxgGT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.category" name="Oomph Setup"/>
- <categories xmi:id="_YPxgGj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.navigate" name="Navigate"/>
- <categories xmi:id="_YPxgGz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.java.ui.commands" name="Java Context" description="Java Task-Focused Interface Commands"/>
- <categories xmi:id="_YPxgHD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/>
- <categories xmi:id="_YPxgHT9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.category" name="Language Servers"/>
- <categories xmi:id="_YPxgHj9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.commands.category" name="Terminal Commands"/>
- <categories xmi:id="_YPxgHz9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/>
- <categories xmi:id="_YPxgID9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.commands.category" name="Remote Systems"/>
- <categories xmi:id="_YPxgIT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaedtor.10x" name="ASA 9.x table schema editor"/>
- <categories xmi:id="_YPxgIj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/>
- <categories xmi:id="_YPxgIz9AEemkJ6es1zdyvw" elementId="org.eclipse.emf.codegen.ecore.ui.Commands" name="EMF Code Generation" description="Commands for the EMF code generation tools"/>
- <categories xmi:id="_YPxgJD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.help" name="Help"/>
- <categories xmi:id="_YPxgJT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.project" name="Project"/>
- <categories xmi:id="_YPxgJj9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.common.ui.commands" name="SpringSource Tools"/>
- <categories xmi:id="_YPxgJz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.database" name="连接" description="数据库连接命令"/>
- <categories xmi:id="_YPxgKD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="Terminal view commands"/>
- <categories xmi:id="_YPxgKT9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/>
- <categories xmi:id="_YPxgKj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/>
- <categories xmi:id="_YPxgKz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.category" name="Database Tools" description="Database Development tools"/>
- <categories xmi:id="_YPyHED9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.util" name="实用工具" description="实用工具"/>
- <categories xmi:id="_YPyHET9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/>
- <categories xmi:id="_YPyHEj9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/>
- <categories xmi:id="_YPyHEz9AEemkJ6es1zdyvw" elementId="org.eclipse.gef.category.view" name="View" description="View"/>
- <categories xmi:id="_YPyHFD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/>
- <categories xmi:id="_YPyHFT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/>
- <categories xmi:id="_YPyHFj9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.commands.category" name="Inline Search"/>
- <categories xmi:id="_YPyHFz9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.quicksearch.commands.category" name="Quick Search Category"/>
- <categories xmi:id="_iPJ3ASfvEeq9j5-P04oEqA" elementId="org.eclipse.text.quicksearch.commands.category" name="Quick Search"/>
- <categories xmi:id="_iPKeECfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.refactor" name="JET Refactor Actions"/>
- <categories xmi:id="_iPKeESfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.source" name="JET Source Actions"/>
- <categories xmi:id="_iPKeEifvEeq9j5-P04oEqA" elementId="org.eclipse.lsp4e.commandCategory" name="Command"/>
- </application:Application>
|