diff --git a/Android/app/src/main/AndroidManifest.xml b/Android/app/src/main/AndroidManifest.xml index 6a3f8e1c2dbf00e3fd0f8b4f22239f618d5f6953..5cb1940e7c154f2589f02d482c0b3d4057c5e517 100644 --- a/Android/app/src/main/AndroidManifest.xml +++ b/Android/app/src/main/AndroidManifest.xml @@ -13,15 +13,15 @@ android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> - <activity android:name=".MainActivity"> + <activity android:name=".activities.MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> - <activity android:name=".SettingsActivity" /> - <activity android:name=".SelectBTServerActivity"></activity> + <activity android:name=".activities.SettingsActivity" /> + <activity android:name=".activities.SelectBTServerActivity"></activity> </application> </manifest> \ No newline at end of file diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/BlueToothEszk.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/BlueToothEszk.java index 7a23c0e86dd3c093734e0d937a1aefa0c324471c..269251c9b0006ed6c3ef4925f631925080697027 100644 --- a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/BlueToothEszk.java +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/BlueToothEszk.java @@ -5,20 +5,16 @@ import java.io.OutputStream; import java.util.Set; import java.util.UUID; -import android.app.Activity; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothSocket; import android.content.Context; import android.content.Intent; -import android.os.Bundle; +import android.util.Base64; import android.util.Log; -import android.widget.TextView; -import android.widget.Toast; -import android.app.AlertDialog; -import android.content.DialogInterface; -import android.content.DialogInterface.OnClickListener; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.scommands.SajatCommand; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.scommands.SajatCommandCreator; public class BlueToothEszk @@ -129,6 +125,11 @@ public class BlueToothEszk Send(msg.getBytes()); } + public void SendSajatCommand(SajatCommand command) + { + SendString(Base64.encodeToString(command.getKuldendo(), Base64.DEFAULT) + "\n"); + } + public void Stop() { Log.i(LOGCIMKE, "\n...Stop()..."); diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/Orientacio.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/Orientacio.java index 77842683d1ecee2da9038004f3de0c7f0d9e14f3..77a2d1dd80166386998dd7318fa949a8e9d76a90 100644 --- a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/Orientacio.java +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/Orientacio.java @@ -6,6 +6,8 @@ import android.hardware.SensorEvent; import android.hardware.SensorEventListener; import android.hardware.SensorManager; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry.Vector3D; + public class Orientacio { SensorListener listener; @@ -17,6 +19,11 @@ public class Orientacio float pitch; float roll; + public Vector3D getUnitDirectionVector() + { + return new Vector3D(Math.cos(azimuth), -Math.sin(pitch), -Math.sin(azimuth)).getUnitVect(); + } + public String getAngleString() { return "a: " + String.format("%.1f",getAzimuth()) + " p: " + String.format("%.1f",getPitch()) + " r: " + String.format("%.1f",getRoll()); diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/EAngle.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/EAngle.java new file mode 100644 index 0000000000000000000000000000000000000000..832722149ee886da225bc51b9903da4c92bd4788 --- /dev/null +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/EAngle.java @@ -0,0 +1,26 @@ +package com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry; + + +public class EAngle +{ + public double azimuth = 0; + public double pitch = 0; + public double roll = 0; + + public EAngle(double azimuth, double pitch, double roll) + { + this.azimuth = azimuth; + this.pitch = pitch; + this.roll = roll; + } + + public EAngle(double azimuth, double pitch) + { + this(azimuth, pitch, 0); + } + + EAngle copy() + { + return new EAngle(azimuth, pitch, roll); + } +} diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/Line.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/Line.java new file mode 100644 index 0000000000000000000000000000000000000000..e5684fc7d1219739abdc1ad5534461a5063362ac --- /dev/null +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/Line.java @@ -0,0 +1,17 @@ +package com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry; + +/** + * Created by gatsj on 2018. 05. 29.. + */ + +public class Line +{ + Vector3D IranyVektor; + Vector3D Pont;//Egy pont, amin átmegy az egyenes + + public Line(Vector3D iranyVektor, Vector3D pont) + { + IranyVektor = iranyVektor; + Pont = pont; + } +} diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/Plane.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/Plane.java new file mode 100644 index 0000000000000000000000000000000000000000..bfb307d22e39d722608ddafd49255d6e45a28bad --- /dev/null +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/Plane.java @@ -0,0 +1,24 @@ +package com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry; + + +public class Plane +{ + + Vector3D NormalVektor; + Vector3D Pont;//Egy pont, ami illeszkedik a síkra + + public Vector3D GetIntersect(Line ln) + { + Vector3D diff = ln.Pont.minus(Pont); + double prod1 = diff.dot(NormalVektor); + double prod2 = ln.IranyVektor.dot(NormalVektor); + double prod3 = prod1 / prod2; + return ln.Pont.minus(ln.IranyVektor.times(prod3)); + } + + public Plane(Vector3D normalVektor, Vector3D pont) + { + NormalVektor = normalVektor; + Pont = pont; + } +} diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/Vector3D.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/Vector3D.java new file mode 100644 index 0000000000000000000000000000000000000000..685d8fc9ef2836012320546d0bf27290ecad12b4 --- /dev/null +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/geometry/Vector3D.java @@ -0,0 +1,111 @@ +package com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry; + +public class Vector3D +{ + public double x, y, z; + + public Vector3D(double X, double Y, double Z) + { + x = X; + y = Y; + z = Z; + } + + /** + * Euler angles with Y axis up + */ + public Vector3D(EAngle angle, double length) + { + x = Math.cos(angle.azimuth); + y = Math.sin(angle.pitch); + z = Math.sin(angle.azimuth); + + double r = length / getLength(); + x *= r; + y *= r; + z *= r; + } + + /** + * Euler angles with Y axis up. + * Unit vector length. + */ + public Vector3D(EAngle angle) + { + this(angle, 1); + } + + /** + * Két vektor által bezárt szög. + */ + public static double getAngle(Vector3D a, Vector3D b) + { + double dot = a.dot(b); + double hszorz = a.getLength() * b.getLength(); + + return Math.acos(dot / hszorz); + } + + /** + * Két vektor végpontjainak távolsága. + */ + public static double getTav(Vector3D a, Vector3D b) + { + double dx = a.x - b.x; + double dy = a.y - b.y; + double dz = a.z - b.z; + return Math.sqrt(dx * dx + dy * dy + dz * dz); + } + + public double getLength() + { + return Math.sqrt(x * x + y * y + z * z); + } + + public Vector3D getUnitVect() + { + double l = getLength(); + return new Vector3D(x / l, y / l, z / l); + } + + @Override + public String toString() + { + return "x: " + String.format("%.2f", x) + " y: " + String.format("%.2f", y) + " z: " + String.format("%.2f", z); + } + + /** + * Euler angles with Y axis up + */ + public EAngle getAngles() + { + return new EAngle(Math.asin(z / getLength()), Math.asin(y / getLength())); + } + + public Vector3D plus(Vector3D v) + { + return new Vector3D(x + v.x, y + v.y, z + v.z); + } + + public Vector3D minus(Vector3D v) + { + return new Vector3D(x - v.x, y - v.y, z - v.z); + } + + public Vector3D times(double s) + { + return new Vector3D(s * x, s * y, s * z); + } + + public double dot(Vector3D v) + { + return x * v.x + y * v.y + z * v.z; + } + + public Vector3D copy() + { + return new Vector3D(x, y, z); + } + + public static final Vector3D Origin = new Vector3D(0, 0, 0); +} diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/SCommandType.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/scommands/SCommandType.java similarity index 78% rename from Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/SCommandType.java rename to Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/scommands/SCommandType.java index 23b341f127468ec7f772fbde91c82313f9c48231..e32d99ab77a49cfb47f7d6115e6dd9e1667a666c 100644 --- a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/SCommandType.java +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/scommands/SCommandType.java @@ -1,6 +1,4 @@ -package com.feverkill.gatsj.aircursorandroid.Eszkozok; - -import android.database.sqlite.SQLiteCantOpenDatabaseException; +package com.feverkill.gatsj.aircursorandroid.Eszkozok.scommands; enum SCommandType { diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/scommands/SajatCommand.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/scommands/SajatCommand.java new file mode 100644 index 0000000000000000000000000000000000000000..d41e5a130a0e931f66e8e60b5c9ca9760442fe8c --- /dev/null +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/scommands/SajatCommand.java @@ -0,0 +1,26 @@ +package com.feverkill.gatsj.aircursorandroid.Eszkozok.scommands; + +/** + * Created by gatsj on 2018. 05. 30.. + */ + +public class SajatCommand +{ + byte[] Kuldendo; + SCommandType Tipus; + public SajatCommand(SCommandType tipus, byte[] kuldendo) + { + Tipus = tipus; + Kuldendo = kuldendo; + } + + public SCommandType getTipus() + { + return Tipus; + } + + public byte[] getKuldendo() + { + return Kuldendo; + } +} diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/SajatCommands.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/scommands/SajatCommandCreator.java similarity index 63% rename from Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/SajatCommands.java rename to Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/scommands/SajatCommandCreator.java index 790326a522a29bc52837018e4e257eae00c489d8..bbb8f2b5d74992120a9fe8d43a9570b1df088be1 100644 --- a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/SajatCommands.java +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/Eszkozok/scommands/SajatCommandCreator.java @@ -1,4 +1,4 @@ -package com.feverkill.gatsj.aircursorandroid.Eszkozok; +package com.feverkill.gatsj.aircursorandroid.Eszkozok.scommands; import java.nio.ByteBuffer; @@ -6,9 +6,9 @@ import java.nio.ByteOrder; import static com.feverkill.gatsj.aircursorandroid.Eszkozok.PrimitiveSizes.*; -public class SajatCommands +public class SajatCommandCreator { - public static byte[] CreateUjEgerCoords(float x, float y) + public static SajatCommand UjEgerCoords(float x, float y) { ByteBuffer buff = ByteBuffer.allocate(sizeof(SCommandType.UjEgerCoords.getVal()) + sizeof(x) + sizeof(y)).order(ByteOrder.LITTLE_ENDIAN); @@ -16,7 +16,6 @@ public class SajatCommands buff.putFloat(x); buff.putFloat(y); - return buff.array(); + return new SajatCommand(SCommandType.UjEgerCoords, buff.array()); } } - diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/MainActivity.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/activities/MainActivity.java similarity index 55% rename from Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/MainActivity.java rename to Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/activities/MainActivity.java index 05830cfa3e68d1cf255bc88224d313bdddf15b80..b149a4b6605056ce954f6db1f7ad0067e82e7096 100644 --- a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/MainActivity.java +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/activities/MainActivity.java @@ -1,28 +1,35 @@ -package com.feverkill.gatsj.aircursorandroid; +package com.feverkill.gatsj.aircursorandroid.activities; -import android.bluetooth.BluetoothDevice; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; -import android.util.Base64; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.TextView; -import com.feverkill.gatsj.aircursorandroid.Eszkozok.SajatCommands; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.scommands.SajatCommandCreator; import com.feverkill.gatsj.aircursorandroid.Eszkozok.BlueToothEszk; import com.feverkill.gatsj.aircursorandroid.Eszkozok.Orientacio; - -import java.util.Set; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry.Line; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry.Plane; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry.Vector3D; +import com.feverkill.gatsj.aircursorandroid.R; +import com.feverkill.gatsj.aircursorandroid.szalak.PosMeroRunnable; public class MainActivity extends AppCompatActivity { public static MainActivity Ma; - Orientacio or; + public static Thread posMeroThread; + public static PosMeroRunnable posMeroObject; + + public static Orientacio orientacio; + + public BlueToothEszk BTEszk; + + public TextView textViewAkt; - BlueToothEszk BTEszk; TextView textViewBA; TextView textViewBF; @@ -47,7 +54,10 @@ public class MainActivity extends AppCompatActivity Ma = this; - or = new Orientacio(this); + orientacio = new Orientacio(this); + + textViewAkt = findViewById(R.id.textViewAkt); + textViewBA = findViewById(R.id.textViewBA); textViewBF = findViewById(R.id.textViewBF); @@ -70,7 +80,7 @@ public class MainActivity extends AppCompatActivity @Override public void onClick(View view) { - startActivity(new Intent(Ma, SettingsActivity.class)); + startActivity(new Intent(Ma, SettingsActivity.class)); } }); btnConnect.setOnClickListener(new View.OnClickListener() @@ -86,8 +96,8 @@ public class MainActivity extends AppCompatActivity @Override public void onClick(View view) { - BTEszk.SendString(Base64.encodeToString(SajatCommands.CreateUjEgerCoords(0.7f,0.2f), Base64.DEFAULT) + "\n"); - // BTEszk.SendString(Base64.encodeToString("abcd\nef".getBytes(), Base64.DEFAULT) + "\n"); + BTEszk.SendSajatCommand(SajatCommandCreator.UjEgerCoords(0.7f, 0.2f)); + // BTEszk.SendString(Base64.encodeToString("abcd\nef".getBytes(), Base64.DEFAULT) + "\n"); } }); @@ -97,7 +107,9 @@ public class MainActivity extends AppCompatActivity @Override public void onClick(View view) { - textViewBA.setText(or.getAngleString()); + //textViewBA.setText(orientacio.getAngleString()); + posMeroObject.UpdateVecBA(); + textViewBA.setText(orientacio.getUnitDirectionVector().toString()); } }); btnSetBF.setOnClickListener(new View.OnClickListener() @@ -105,7 +117,9 @@ public class MainActivity extends AppCompatActivity @Override public void onClick(View view) { - textViewBF.setText(or.getAngleString()); + //textViewBF.setText(orientacio.getAngleString()); + posMeroObject.UpdateVecBF(); + textViewBF.setText(orientacio.getUnitDirectionVector().toString()); } }); btnSetJA.setOnClickListener(new View.OnClickListener() @@ -113,7 +127,9 @@ public class MainActivity extends AppCompatActivity @Override public void onClick(View view) { - textViewJA.setText(or.getAngleString()); + //textViewJA.setText(orientacio.getAngleString()); + posMeroObject.UpdateVecJA(); + textViewJA.setText(orientacio.getUnitDirectionVector().toString()); } }); btnSetJF.setOnClickListener(new View.OnClickListener() @@ -121,27 +137,39 @@ public class MainActivity extends AppCompatActivity @Override public void onClick(View view) { - textViewJF.setText(or.getAngleString()); + //textViewJF.setText(orientacio.getAngleString()); + posMeroObject.UpdateVecJF(); + textViewJF.setText(orientacio.getUnitDirectionVector().toString()); } }); + + Button b = findViewById(R.id.button); b.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { - Log.e("Orientacio", or.getAngleString()); + Log.e("Orientacio", orientacio.getAngleString()); } }); BTEszk = new BlueToothEszk(this); - Set<BluetoothDevice> eszkozok = BTEszk.GetPairedDevices(); + posMeroObject = new PosMeroRunnable(); + posMeroThread = new Thread(posMeroObject); + posMeroThread.start(); + + + Vector3D rv = new Vector3D(0.0, -1.0, -1.0); + Vector3D rp = new Vector3D(0.0, 0.0, 10.0); + Line line = new Line(rv, rp); + + Vector3D pn = new Vector3D(0.0, 0.0, 1.0); + Vector3D pp = new Vector3D(0.0, 0.0, 5.0); + Plane plane = new Plane(pn, pp); - int i = 0; - for (BluetoothDevice device : eszkozok) - { - Log.i("Paired BT device #" + i++, device.getName() + "\t\t" + device.getAddress()); - } + Vector3D ip = plane.GetIntersect(line); + Log.i("MainActGeometry", "The ray intersects the plane at " + ip); } } diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/SelectBTServerActivity.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/activities/SelectBTServerActivity.java similarity index 94% rename from Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/SelectBTServerActivity.java rename to Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/activities/SelectBTServerActivity.java index dc03b06cd38cbaac50d242b72e8ba0ca73dc2154..a49b1ab2c33994dbe5674cf4f10cf7b05e9a8692 100644 --- a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/SelectBTServerActivity.java +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/activities/SelectBTServerActivity.java @@ -1,8 +1,7 @@ -package com.feverkill.gatsj.aircursorandroid; +package com.feverkill.gatsj.aircursorandroid.activities; import android.app.ListActivity; import android.bluetooth.BluetoothDevice; -import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; @@ -12,6 +11,8 @@ import android.widget.ListView; import android.widget.TextView; import android.widget.Toast; +import com.feverkill.gatsj.aircursorandroid.R; + import java.util.Set; public class SelectBTServerActivity extends ListActivity diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/SettingsActivity.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/activities/SettingsActivity.java similarity index 92% rename from Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/SettingsActivity.java rename to Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/activities/SettingsActivity.java index 82e329b32ff6f112a8d25d3b99c0790b845738db..50d9dcaea16e8c22b4b9377674e3e364b4b7c9f2 100644 --- a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/SettingsActivity.java +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/activities/SettingsActivity.java @@ -1,4 +1,4 @@ -package com.feverkill.gatsj.aircursorandroid; +package com.feverkill.gatsj.aircursorandroid.activities; import android.app.ListActivity; import android.content.Intent; @@ -7,8 +7,6 @@ import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; -import android.widget.TextView; -import android.widget.Toast; import com.feverkill.gatsj.aircursorandroid.R; diff --git a/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/szalak/PosMeroRunnable.java b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/szalak/PosMeroRunnable.java new file mode 100644 index 0000000000000000000000000000000000000000..e2c006354b581346052f923894232eda6dbbb39d --- /dev/null +++ b/Android/app/src/main/java/com/feverkill/gatsj/aircursorandroid/szalak/PosMeroRunnable.java @@ -0,0 +1,275 @@ +package com.feverkill.gatsj.aircursorandroid.szalak; + + +import android.util.Log; + +import com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry.EAngle; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry.Line; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry.Plane; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.geometry.Vector3D; +import com.feverkill.gatsj.aircursorandroid.Eszkozok.scommands.SajatCommandCreator; +import com.feverkill.gatsj.aircursorandroid.activities.MainActivity; + +public class PosMeroRunnable implements Runnable +{ + boolean StopFlag = false; + + public void stop() + { + StopFlag = true; + } + + public void run() + { + while (!StopFlag) + { + Vector3D aktvec = MainActivity.orientacio.getUnitDirectionVector(); + Line aktline = new Line(aktvec, Vector3D.Origin); + + + final Vector3D av = aktvec; + MainActivity.Ma.textViewAkt.post(new Runnable() + { + public void run() + { + MainActivity.Ma.textViewAkt.setText(av.toString()); + } + }); + + + if (AllVectorsAreSet()) + { + if (Kepernyosik != null) + { + Vector3D P = Kepernyosik.GetIntersect(aktline);//P: Aktuális metszéspont a képernyősíkkal + + double tavBA = Vector3D.getTav(SarokBA, P); + double tavBF = Vector3D.getTav(SarokBF, P); + double tavJA = Vector3D.getTav(SarokJA, P); + double tavJF = Vector3D.getTav(SarokJF, P); + + Vector3D vBAP = P.minus(SarokBA); + Vector3D vBFP = P.minus(SarokBF); + Vector3D vJAP = P.minus(SarokJA); + Vector3D vJFP = P.minus(SarokJF); + + + double xBA = tavBA * Math.cos(Vector3D.getAngle(OldBAJA, vBAP)); + double rxBA = xBA / OldBAJA.getLength();//rxBA: az x koordináta a képernyőn, 0-1 arányban, a BA sarok alapján + + double yBA = tavBA * Math.cos(Vector3D.getAngle(OldBABF, vBAP)); + double ryBA = 1 - yBA / OldBABF.getLength();//rxBA: az y koordináta a képernyőn, 0-1 arányban, a BA sarok alapján + + + + MainActivity.Ma.BTEszk.SendSajatCommand(SajatCommandCreator.UjEgerCoords((float)rxBA, (float)ryBA)); + + Log.d("rxBA", String.valueOf(rxBA)); + } + else + UpdatePosGeometry(); + } + + + if (UpdateVecBAFLAG || UpdateVecBFFLAG || UpdateVecJAFLAG || UpdateVecJFFLAG) + { + if (UpdateVecBAFLAG) + { + VecIranyBA = MainActivity.orientacio.getUnitDirectionVector(); + UpdateVecBAFLAG = false; + } + if (UpdateVecBFFLAG) + { + VecIranyBF = MainActivity.orientacio.getUnitDirectionVector(); + UpdateVecBFFLAG = false; + } + if (UpdateVecJAFLAG) + { + VecIranyJA = MainActivity.orientacio.getUnitDirectionVector(); + UpdateVecJAFLAG = false; + } + if (UpdateVecJFFLAG) + { + VecIranyJF = MainActivity.orientacio.getUnitDirectionVector(); + UpdateVecJFFLAG = false; + } + + UpdatePosGeometry(); + } + + sleep(30); + } + } + + Vector3D VecIranyBA, VecIranyBF, VecIranyJA, VecIranyJF; + + boolean AllVectorsAreSet()//Egyik vektor sem null + { + return VecIranyBA != null && VecIranyBF != null && VecIranyJA != null && VecIranyJF != null; + } + + Plane Kepernyosik; + Vector3D SarokBA; + Vector3D SarokBF; + Vector3D SarokJA; + Vector3D SarokJF; + + Vector3D OldBABF; + Vector3D OldBAJA; + Vector3D OldBFBA; + Vector3D OldBFJF; + Vector3D OldJFBF; + Vector3D OldJFJA; + Vector3D OldJAJF; + Vector3D OldJABA; + + private void UpdatePosGeometry()//Ez illeszti a képernyőt az egyenesekre. Minden sarokjelölő változás után meg kell hívni + { + if (AllVectorsAreSet()) + { + Line lineBA = new Line(VecIranyBA, Vector3D.Origin); + Line lineBF = new Line(VecIranyBF, Vector3D.Origin); + Line lineJA = new Line(VecIranyJA, Vector3D.Origin); + Line lineJF = new Line(VecIranyJF, Vector3D.Origin); + + Vector3D vecKozep = VecIranyBA.getUnitVect().plus(VecIranyBF.getUnitVect()).plus(VecIranyJA.getUnitVect()).plus(VecIranyJF.getUnitVect()).getUnitVect(); + + EAngle alapszog = vecKozep.getAngles(); + + Vector3D KepernyoKozeppont = vecKozep.copy().times(100); + + double elsoszogugras = 10;//Fokban + + double[][] hibak = new double[(int) (180 / elsoszogugras + 2)][(int) (180 / elsoszogugras + 2)]; + EAngle[][] szogek = new EAngle[hibak.length][hibak[0].length]; + + + for (int y = 0; y < hibak.length; ++y) + for (int x = 0; x < hibak[0].length; ++x) + hibak[x][y] = Double.MAX_VALUE; + + int x = 0, y = 0; + for (double a = Math.toRadians(-88); a <= Math.toRadians(88); a += Math.toRadians(elsoszogugras)) + { + for (double p = Math.toRadians(-88); p <= Math.toRadians(88); p += Math.toRadians(elsoszogugras)) + { + + szogek[x][y] = new EAngle(alapszog.azimuth + a, alapszog.pitch + p); + + Plane kepsik = new Plane(new Vector3D(szogek[x][y]), KepernyoKozeppont);//A képernyő síkja, aminek normálvektora az átlagol vector, és illeszkedik rá az átlagolt vektor végpontja + hibak[x][y] = GetKepsikHiba(kepsik, lineBA, lineBF, lineJA, lineJF); + + ++x; + } + ++y; + x = 0; + } + + int bestx = 0, besty = 0; + double minhib = Double.MAX_VALUE; + for (y = 0; y < hibak.length; ++y) + for (x = 0; x < hibak[0].length; ++x) + { + if (hibak[x][y] < minhib) + { + minhib = hibak[x][y]; + bestx = x; + besty = y; + } + } + + Kepernyosik = new Plane(new Vector3D(szogek[bestx][besty]), KepernyoKozeppont); + SarokBA = Kepernyosik.GetIntersect(lineBA); + SarokBF = Kepernyosik.GetIntersect(lineBF); + SarokJA = Kepernyosik.GetIntersect(lineJA); + SarokJF = Kepernyosik.GetIntersect(lineJF); + + OldBABF = SarokBF.minus(SarokBA); + OldBAJA = SarokJA.minus(SarokBA); + OldBFBA = SarokBA.minus(SarokBF); + OldBFJF = SarokJF.minus(SarokBF); + OldJABA = SarokBA.minus(SarokJA); + OldJAJF = SarokJF.minus(SarokJA); + OldJFBF = SarokBF.minus(SarokJF); + OldJFJA = SarokJA.minus(SarokJF); + + for (y = 0; y < hibak.length; ++y) + { + String s = ""; + for (x = 0; x < hibak[0].length; ++x) + s += String.format("%.3f", hibak[x][y]) + "\t"; + + Log.e("HIBAMAP", s); + } + + + } + } + + /** + * Megadja az adott képsík illesztési hibáját az adott sarokvonalak esetén + */ + private double GetKepsikHiba(Plane kepsik, Line lineBA, Line lineBF, Line lineJA, Line lineJF) + { + Vector3D BA = kepsik.GetIntersect(lineBA); + Vector3D BF = kepsik.GetIntersect(lineBF); + Vector3D JA = kepsik.GetIntersect(lineJA); + Vector3D JF = kepsik.GetIntersect(lineJF); + + double hiba = 0; + + //Szemközti szélességek és magasságok egyenlősége + hiba += Math.abs(Vector3D.getTav(BA, BF) - Vector3D.getTav(JA, JF)); + hiba += Math.abs(Vector3D.getTav(BA, JA) - Vector3D.getTav(BF, JF)); + + //Átlók egyenlősége + hiba += Math.abs(Vector3D.getTav(BA, JF) - Vector3D.getTav(BF, JA)); + + //Sarkak derékszögűsége + hiba += BA.minus(BF).dot(BA.minus(JA)); + hiba += BF.minus(BA).dot(BF.minus(JF)); + hiba += JF.minus(BF).dot(JF.minus(JA)); + hiba += JA.minus(JF).dot(JA.minus(BA)); + + return hiba; + } + + + boolean UpdateVecBAFLAG = false; + boolean UpdateVecBFFLAG = false; + boolean UpdateVecJAFLAG = false; + boolean UpdateVecJFFLAG = false; + + public void UpdateVecBA() + { + UpdateVecBAFLAG = true; + } + + public void UpdateVecBF() + { + UpdateVecBFFLAG = true; + } + + public void UpdateVecJA() + { + UpdateVecJAFLAG = true; + } + + public void UpdateVecJF() + { + UpdateVecJFFLAG = true; + } + + static void sleep(long millis) + { + try + { + Thread.sleep(millis); + } + catch (InterruptedException e) + { + e.printStackTrace(); + } + } +} + diff --git a/Android/app/src/main/res/layout/activity_main.xml b/Android/app/src/main/res/layout/activity_main.xml index 67100fab77984c30ec7d2b24b2ae4f7826491110..89fc420d8594e52ea0da3178b956680697bbae09 100644 --- a/Android/app/src/main/res/layout/activity_main.xml +++ b/Android/app/src/main/res/layout/activity_main.xml @@ -4,7 +4,7 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" - tools:context="com.feverkill.gatsj.aircursorandroid.MainActivity"> + tools:context="com.feverkill.gatsj.aircursorandroid.activities.MainActivity"> <Button android:id="@+id/button" @@ -132,4 +132,16 @@ app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" /> + <TextView + android:id="@+id/textViewAkt" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginEnd="8dp" + android:layout_marginStart="8dp" + android:layout_marginTop="8dp" + android:text="TextView" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/textViewBA" /> + </android.support.constraint.ConstraintLayout> diff --git a/PC/.metadata/.mylyn/.tasks.xml.zip b/PC/.metadata/.mylyn/.tasks.xml.zip index ee3f7837b376808ebcd62c18f11fd14c01347f30..f8aa018c59ba3529d8f382a9fc41533c02b6e375 100644 Binary files a/PC/.metadata/.mylyn/.tasks.xml.zip and b/PC/.metadata/.mylyn/.tasks.xml.zip differ diff --git a/PC/.metadata/.mylyn/tasks.xml.zip b/PC/.metadata/.mylyn/tasks.xml.zip index 34ca1b378b744bd5c28eb795181b7cb6fb76e8de..c31686838a1eb22566fd45eab61a363fccf5fb83 100644 Binary files a/PC/.metadata/.mylyn/tasks.xml.zip and b/PC/.metadata/.mylyn/tasks.xml.zip differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/0/604cd7c9c95d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/0/604cd7c9c95d001816b8cedb400592e9 deleted file mode 100644 index aa2d72d6b1444e23adcc760d7263395d1a5f1eb7..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/0/604cd7c9c95d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1000, 1000); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/12/50a539b8cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/12/50a539b8cb5d001816b8cedb400592e9 deleted file mode 100644 index 0de964b8cec72ee925ae6acf34c48484e76d164b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/12/50a539b8cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - final Dimension screensize; - public SajatRobot() throws AWTException - { - super(); - - screensize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/12/80fed3d5d06200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/12/80fed3d5d06200181b2af13592051b0c deleted file mode 100644 index c9f15da1e2a3814044f2cf658e69ae36dcc28b80..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/12/80fed3d5d06200181b2af13592051b0c +++ /dev/null @@ -1,70 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; - - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Position of the cursor in [0,1] ranges. (0,0) is the upper left corner - { - - int xbepix = (int) (ScreenSize.width * xbe); - int ybepix = (int) (ScreenSize.height * ybe); - - int x = xbepix; - int y = ybepix; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbepix || mert.y != ybepix) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbepix) - ++x; - else - --x; - if (mert.y < ybepix) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/15/2022bf48d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/15/2022bf48d26200181b2af13592051b0c deleted file mode 100644 index 6f51a6cfb66cb9e8c65ad32427a0fb91046190e6..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/15/2022bf48d26200181b2af13592051b0c +++ /dev/null @@ -1,59 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(true == true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/15/604e1fabcb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/15/604e1fabcb5d001816b8cedb400592e9 deleted file mode 100644 index 0813eb1a4291d24100f57b681f3c48198e2d91a8..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/15/604e1fabcb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - final Dimension screensize - public SajatRobot() throws AWTException - { - super(); - - screensize = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/16/20b346a8d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/16/20b346a8d26200181b2af13592051b0c deleted file mode 100644 index 42ff2b7068cc7888f95e32fdc36f9544e4a47ec5..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/16/20b346a8d26200181b2af13592051b0c +++ /dev/null @@ -1,63 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from inoput Stream:") - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/18/b03e060fc85d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/18/b03e060fc85d001816b8cedb400592e9 deleted file mode 100644 index 3239d62da59d6250674ecd2064cbe02529f5d942..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/18/b03e060fc85d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1080, 10800); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/18/e09302bbcc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/18/e09302bbcc5d001816b8cedb400592e9 deleted file mode 100644 index 221e50a2644a906016010ed8a489eb5b7056590d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/18/e09302bbcc5d001816b8cedb400592e9 +++ /dev/null @@ -1,72 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Position of the cursor in [0,1] ranges. (0,0) is the upper left corner - { - - int xbepix = (int) (ScreenSize.width * xbe); - int ybepix = (int) (ScreenSize.height * ybe); - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/1c/b0050d6acc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/1c/b0050d6acc5d001816b8cedb400592e9 deleted file mode 100644 index 6e1dba8d96a844307a592e38208f71db999d5205..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/1c/b0050d6acc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/80431faacb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/80431faacb5d001816b8cedb400592e9 deleted file mode 100644 index aeaa43c516cebea4874dfcfc7e256986c36c63df..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/80431faacb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - final Dimension screensize - public SajatRobot() throws AWTException - { - super(); - - = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/b04e1ab4d16200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/b04e1ab4d16200181b2af13592051b0c deleted file mode 100644 index 93f8c6f7ba06ba0fdc9d97e045d2325793f17e76..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/b04e1ab4d16200181b2af13592051b0c +++ /dev/null @@ -1,51 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - private void startServer() throws IOException{ - - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid +";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier)Connector.open( connectionString ); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection=streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: "+dev.getBluetoothAddress()); - System.out.println("Remote device name: "+dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream=connection.openInputStream(); - BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream)); - String lineRead=bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream=connection.openOutputStream(); - PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/b0c8cd79c55d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/b0c8cd79c55d001816b8cedb400592e9 deleted file mode 100644 index abb668368aa32c25e74c1b3a1cb404847b1efd76..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/b0c8cd79c55d001816b8cedb400592e9 +++ /dev/null @@ -1,24 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0b1c99cc35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0b1c99cc35d001816b8cedb400592e9 deleted file mode 100644 index 70a007138df5ae5713522bf7494d958ed7eec540..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0b1c99cc35d001816b8cedb400592e9 +++ /dev/null @@ -1,30 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - - - System.out.println(MouseInfonfo.getPointerInfo().getLocation()); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/2c/906ab309bf5d00181cc6ed7bff2bc9ea b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/2c/906ab309bf5d00181cc6ed7bff2bc9ea deleted file mode 100644 index 5c59bc65bf0d3fc7e57b28e90ad5f895e3fd6c77..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/2c/906ab309bf5d00181cc6ed7bff2bc9ea +++ /dev/null @@ -1,4 +0,0 @@ - -public class Main { - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/2e/8001105bcb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/2e/8001105bcb5d001816b8cedb400592e9 deleted file mode 100644 index d2f96b14d5c503160cad110f11d3190d90244985..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/2e/8001105bcb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point2D a, Point2D b) - { - return Math.sqrt((double) ((a.x - b.getX()) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3/e0160329cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3/e0160329cc5d001816b8cedb400592e9 deleted file mode 100644 index f4e59ea5d4b8cdf1f3db60bb2faeb4157fca7a0f..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3/e0160329cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = ScreenSize.width*a; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/31/4000939ec35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/31/4000939ec35d001816b8cedb400592e9 deleted file mode 100644 index b12227685e8b20043589509f0a2e5052c7c2d75a..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/31/4000939ec35d001816b8cedb400592e9 +++ /dev/null @@ -1,30 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - - - System.out.println(new MouseInfonfo.getPointerInfo().getLocation()); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/31/6015646dcb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/31/6015646dcb5d001816b8cedb400592e9 deleted file mode 100644 index 554ed1b075d71bdc6785448e4402b2d1d21c9341..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/31/6015646dcb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point2D a, Point2D b) - { - return Math.sqrt((double) ((a.x - b.) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/35/30c89d13c85d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/35/30c89d13c85d001816b8cedb400592e9 deleted file mode 100644 index e4b1f86be4d37c54a8e872103cd980dd5f24e0eb..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/35/30c89d13c85d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1080, 1920); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/35/6043d30ac85d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/35/6043d30ac85d001816b8cedb400592e9 deleted file mode 100644 index 3864d6785fb4e9a8393286ffc6af020b322b946b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/35/6043d30ac85d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1080, 1080); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3b/a02560edc25d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3b/a02560edc25d001816b8cedb400592e9 deleted file mode 100644 index 586d0102afa7d42a294d141e98a574fb8f47cb5d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3b/a02560edc25d001816b8cedb400592e9 +++ /dev/null @@ -1,24 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Robot r = new Robot(); - - r.mouseMove(0, 1000); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3c/30dff8bfcc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3c/30dff8bfcc5d001816b8cedb400592e9 deleted file mode 100644 index f038334fda6bfab891ad0d908201443fcea82868..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3c/30dff8bfcc5d001816b8cedb400592e9 +++ /dev/null @@ -1,72 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Position of the cursor in [0,1] ranges. (0,0) is the upper left corner - { - - int xbepix = (int) (ScreenSize.width * xbe); - int ybepix = (int) (ScreenSize.height * ybe); - - int x = xbepix; - int y = ybepix; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3f/106dce50cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3f/106dce50cb5d001816b8cedb400592e9 deleted file mode 100644 index e4a3bdf5f3db7ec37759c331cf09a56adbc989c0..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/3f/106dce50cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point2D a, Point2D b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/40/902efd79d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/40/902efd79d26200181b2af13592051b0c deleted file mode 100644 index 662e3b8d71d4988f830b805dbff7ad34f7add141..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/40/902efd79d26200181b2af13592051b0c +++ /dev/null @@ -1,61 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/43/40f619244363001812c2e6b7a6dfe17e b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/43/40f619244363001812c2e6b7a6dfe17e deleted file mode 100644 index 22efb74c33c1afa60ab0b0af63a862206f0c893c..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/43/40f619244363001812c2e6b7a6dfe17e +++ /dev/null @@ -1,65 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; -import java.util.Base64; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from input Stream:"); - while (true) - { - String lineRead = bReader.readLine(); - byte[] be = Base64.getDecoder().decode(lineRead); - System.out.println(); - - if (false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/44/c0ccff12c35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/44/c0ccff12c35d001816b8cedb400592e9 deleted file mode 100644 index 541033f7b871cdb424df50988198ca205c353587..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/44/c0ccff12c35d001816b8cedb400592e9 +++ /dev/null @@ -1,27 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - // Move the cursor - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/45/b0106e04c65d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/45/b0106e04c65d001816b8cedb400592e9 deleted file mode 100644 index 3864d6785fb4e9a8393286ffc6af020b322b946b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/45/b0106e04c65d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1080, 1080); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0e515b4c35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0e515b4c35d001816b8cedb400592e9 deleted file mode 100644 index ba553af412344f18f3594c28906f9d63e304659d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0e515b4c35d001816b8cedb400592e9 +++ /dev/null @@ -1,30 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - - - System.out.println(MouseInfo.getPointerInfo().getLocation()); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/46/20ebf936cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/46/20ebf936cc5d001816b8cedb400592e9 deleted file mode 100644 index 70ae3f4c9dbac1806366bbad4747284aef96545b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/46/20ebf936cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,71 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Place of the coursor in [0,1] ranges. (0,0) is the upper - // left corner - { - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/47/a00378b9c95d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/47/a00378b9c95d001816b8cedb400592e9 deleted file mode 100644 index 1ca79076d534f06bdf9285d71efadbd2da53455a..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/47/a00378b9c95d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1920, 1080); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20fdc1d5d06200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20fdc1d5d06200181b2af13592051b0c deleted file mode 100644 index de485ac5fbd5b682de1d743a3bf3a6fe31c2012b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20fdc1d5d06200181b2af13592051b0c +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.MouseCorrectRobot Srobot = new Eszkozok.MouseCorrectRobot(); - - Srobot.MoveMouseControlled(0.5, 0.5); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/4a/308cbda4cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/4a/308cbda4cb5d001816b8cedb400592e9 deleted file mode 100644 index 974e71540bfbdf3988192515ba539ea27c89bdb6..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/4a/308cbda4cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension screensize = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/4a/80c65869d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/4a/80c65869d26200181b2af13592051b0c deleted file mode 100644 index 5f7fb57a6bb29f7cd5ad5fbce17ac71fde4d904d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/4a/80c65869d26200181b2af13592051b0c +++ /dev/null @@ -1,59 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(10 > 1 + 2) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/50/405d364ed26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/50/405d364ed26200181b2af13592051b0c deleted file mode 100644 index 14cd5e8114f1965a539fcaeac04396b232993ac1..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/50/405d364ed26200181b2af13592051b0c +++ /dev/null @@ -1,59 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(10 > 1) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/50/5013ec37cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/50/5013ec37cc5d001816b8cedb400592e9 deleted file mode 100644 index 082bf2615b989e2a77ccf20440ecf77faeac224e..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/50/5013ec37cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,71 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Place of the coursor in [0,1] ranges. (0,0) is the upper - // left corner - { - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/52/1068fd3cc95d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/52/1068fd3cc95d001816b8cedb400592e9 deleted file mode 100644 index e6503311fff3997871e2e5be937e698bf97d9b20..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/52/1068fd3cc95d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1920, 1080); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/52/e00c2b75cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/52/e00c2b75cb5d001816b8cedb400592e9 deleted file mode 100644 index ddf0ab13c37e9e670f2cc8b20c318aee87dfedd1..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/52/e00c2b75cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point2D a, Point2D b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/53/d0cc5decd06200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/53/d0cc5decd06200181b2af13592051b0c deleted file mode 100644 index c0a69d3e20385e599a67285bdca055cf44ac940b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/53/d0cc5decd06200181b2af13592051b0c +++ /dev/null @@ -1,63 +0,0 @@ -package eszkozok; - -public class BTSPPServer -{ - //start server - private void startServer() throws IOException{ - - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid +";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier)Connector.open( connectionString ); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection=streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: "+dev.getBluetoothAddress()); - System.out.println("Remote device name: "+dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream=connection.openInputStream(); - BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream)); - String lineRead=bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream=connection.openOutputStream(); - PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - - } - - - public static void main(String[] args) throws IOException { - - //display local device address and name - LocalDevice localDevice = LocalDevice.getLocalDevice(); - System.out.println("Address: "+localDevice.getBluetoothAddress()); - System.out.println("Name: "+localDevice.getFriendlyName()); - - SimpleSPPServer sampleSPPServer=new SimpleSPPServer(); - sampleSPPServer.startServer(); - - } -} -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/54/b012a0a7cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/54/b012a0a7cb5d001816b8cedb400592e9 deleted file mode 100644 index 35e6ec4f10c5643e3d2511412d8b3104822c66ac..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/54/b012a0a7cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - final Dimension screensize = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/58/d0f720a7d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/58/d0f720a7d26200181b2af13592051b0c deleted file mode 100644 index 6a608d8ce22a72c2bcba0db73a7d399057e59062..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/58/d0f720a7d26200181b2af13592051b0c +++ /dev/null @@ -1,63 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from inoput Stream") - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/59/9051e96ad26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/59/9051e96ad26200181b2af13592051b0c deleted file mode 100644 index 0666ef675686fa051f5ba56fd2ced2db88fea8bb..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/59/9051e96ad26200181b2af13592051b0c +++ /dev/null @@ -1,61 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(10 > 1 + 2) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - } - if(true) - return; - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/5b/a0d9999ac35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/5b/a0d9999ac35d001816b8cedb400592e9 deleted file mode 100644 index 219834917c7bee6151e6c0a3236af798d41be454..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/5b/a0d9999ac35d001816b8cedb400592e9 +++ /dev/null @@ -1,30 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - - - MouseInfonfo.getPointerInfo().getLocation() - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6/50fb83c6cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6/50fb83c6cc5d001816b8cedb400592e9 deleted file mode 100644 index b3f3575e5ff07f0e70f9f444711fa11a1010dbe1..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6/50fb83c6cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,72 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Position of the cursor in [0,1] ranges. (0,0) is the upper left corner - { - - int xbepix = (int) (ScreenSize.width * xbe); - int ybepix = (int) (ScreenSize.height * ybe); - - int x = xbepix; - int y = ybepix; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbepix || mert.y != ybepix) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6/60136130cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6/60136130cc5d001816b8cedb400592e9 deleted file mode 100644 index d8fd265452b94aac3eccb30a0c40fe8517c5e33d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6/60136130cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = (int)(ScreenSize.width*xbe); - int y = (int)(ScreenSize.height*ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/60/80e91f75d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/60/80e91f75d26200181b2af13592051b0c deleted file mode 100644 index 93fbc09635c3805d3fde12f61c6c846639842598..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/60/80e91f75d26200181b2af13592051b0c +++ /dev/null @@ -1,61 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - if(false) - brak; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/60/d04c1bbdd16200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/60/d04c1bbdd16200181b2af13592051b0c deleted file mode 100644 index 1dbc18af36570b781606429b0b40c0baa7922dce..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/60/d04c1bbdd16200181b2af13592051b0c +++ /dev/null @@ -1,51 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() throws IOException{ - - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid +";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier)Connector.open( connectionString ); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection=streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: "+dev.getBluetoothAddress()); - System.out.println("Remote device name: "+dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream=connection.openInputStream(); - BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream)); - String lineRead=bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream=connection.openOutputStream(); - PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/62/4062c908cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/62/4062c908cb5d001816b8cedb400592e9 deleted file mode 100644 index 62d8e393988c603cae1a5419d3e60513e6489d1a..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/62/4062c908cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,71 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int a = Toolkit.getDefaultToolkit().getScreenResolution(); - final Display display = getShell().getDisplay(); - final Monitor monitor = display.getPrimaryMonitor(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0418f13cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0418f13cb5d001816b8cedb400592e9 deleted file mode 100644 index de5101b5ddec2a5724ebfcffd29dc69a08956048..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0418f13cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,71 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/64/50ebafcdcc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/64/50ebafcdcc5d001816b8cedb400592e9 deleted file mode 100644 index de485ac5fbd5b682de1d743a3bf3a6fe31c2012b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/64/50ebafcdcc5d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.MouseCorrectRobot Srobot = new Eszkozok.MouseCorrectRobot(); - - Srobot.MoveMouseControlled(0.5, 0.5); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/64/8058aaf0cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/64/8058aaf0cb5d001816b8cedb400592e9 deleted file mode 100644 index 59bc84ebdc93e121d2563c4a281e7e7c43392d7f..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/64/8058aaf0cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - final Dimension ScreenSize; - public SajatRobot() throws AWTException - { - super(); - - screensize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/64/e0c97dcdd16200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/64/e0c97dcdd16200181b2af13592051b0c deleted file mode 100644 index 87d5770fa1733e2d540e5a63e0bc9a89499e76c5..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/64/e0c97dcdd16200181b2af13592051b0c +++ /dev/null @@ -1,52 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid +";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier)Connector.open( connectionString ); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection=streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: "+dev.getBluetoothAddress()); - System.out.println("Remote device name: "+dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream=connection.openInputStream(); - BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream)); - String lineRead=bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream=connection.openOutputStream(); - PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/65/30670c6dc55d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/65/30670c6dc55d001816b8cedb400592e9 deleted file mode 100644 index bbd48ac850c32486c2ad6cd60a9ff213763c0513..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/65/30670c6dc55d001816b8cedb400592e9 +++ /dev/null @@ -1,24 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/68/20775009cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/68/20775009cc5d001816b8cedb400592e9 deleted file mode 100644 index 607c4ecb4c8cb098443e9d150f960e2fdd1c00d9..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/68/20775009cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6a/20af32e9d16200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6a/20af32e9d16200181b2af13592051b0c deleted file mode 100644 index ae3d8d08270bdb63a2c09a322734511a15bd4095..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6a/20af32e9d16200181b2af13592051b0c +++ /dev/null @@ -1,57 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid +";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier)Connector.open( connectionString ); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection=streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: "+dev.getBluetoothAddress()); - System.out.println("Remote device name: "+dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream=connection.openInputStream(); - BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream)); - String lineRead=bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream=connection.openOutputStream(); - PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch(Exception e) - { - e.printStackTrace();� - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6c/c0e53562c55d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6c/c0e53562c55d001816b8cedb400592e9 deleted file mode 100644 index 9c4149c0e17f53f363a84617e1c709066912dd1a..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6c/c0e53562c55d001816b8cedb400592e9 +++ /dev/null @@ -1,34 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - - while(true) - { - System.out.println(MouseInfo.getPointerInfo().getLocation()); - TimeUnit.MILLISECONDS.sleep(200); - } - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6f/3035ad85d4620018130bd763d424a8b9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6f/3035ad85d4620018130bd763d424a8b9 deleted file mode 100644 index 8a3a0e647609c0e56551c264b5349dbb2079ae20..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/6f/3035ad85d4620018130bd763d424a8b9 +++ /dev/null @@ -1,63 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - // RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - //System.out.println("Remote device address: " + dev.getBluetoothAddress()); - //System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from input Stream:"); - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/70/306b9bafcc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/70/306b9bafcc5d001816b8cedb400592e9 deleted file mode 100644 index f6f292355a64a1fd77171c8ad1e4bcd049fefc3f..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/70/306b9bafcc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Position of the cursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/71/e0eb2274d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/71/e0eb2274d26200181b2af13592051b0c deleted file mode 100644 index 0e2b5425b1f5a97f003a5c02415a412e48360f5b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/71/e0eb2274d26200181b2af13592051b0c +++ /dev/null @@ -1,61 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - if(true) - return; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/75/001769e8c25d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/75/001769e8c25d001816b8cedb400592e9 deleted file mode 100644 index 22bfd47aa297b81a2984f5f4dc49332f657f3b43..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/75/001769e8c25d001816b8cedb400592e9 +++ /dev/null @@ -1,24 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Robot r = new Robot(); - - r.mouseMove(0, 800); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ce18d1c35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ce18d1c35d001816b8cedb400592e9 deleted file mode 100644 index e62e466349087935417c060ee0acb091e76684e4..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ce18d1c35d001816b8cedb400592e9 +++ /dev/null @@ -1,31 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - - while(true) - - System.out.println(MouseInfo.getPointerInfo().getLocation()); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/7a/80504931cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/7a/80504931cc5d001816b8cedb400592e9 deleted file mode 100644 index c092edd456357c32b380c697bd8ca9b014b01db9..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/7a/80504931cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,68 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int y = (int)(ScreenSize.height*ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/7b/40aab703cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/7b/40aab703cc5d001816b8cedb400592e9 deleted file mode 100644 index 9aaf78ffc12023a162f6a050f0e74da3182db6c0..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/7b/40aab703cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public SajatRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/7e/c0c47b85cd5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/7e/c0c47b85cd5d001816b8cedb400592e9 deleted file mode 100644 index cc14c5224ca7d6bd054ea053cf1631c6c6475d70..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/7e/c0c47b85cd5d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.MouseCorrectRobot Srobot = new Eszkozok.MouseCorrectRobot(); - - Srobot.MoveMouseControlled(1.5, 1.5); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/83/20bde6fbca5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/83/20bde6fbca5d001816b8cedb400592e9 deleted file mode 100644 index f185c56c55480eb3e9b0a0df48ae709693fcc6ef..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/83/20bde6fbca5d001816b8cedb400592e9 +++ /dev/null @@ -1,71 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - Dimension a = Toolkit.getDefaultToolkit().getScreenResolution()(); - final Display display = getShell().getDisplay(); - final Monitor monitor = display.getPrimaryMonitor(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/83/b050e1fad06200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/83/b050e1fad06200181b2af13592051b0c deleted file mode 100644 index 5b4e5802e142c0c50693ea302839f3ed63c785c7..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/83/b050e1fad06200181b2af13592051b0c +++ /dev/null @@ -1,63 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; -public class BTSPPServer -{ - //start server - private void startServer() throws IOException{ - - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid +";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier)Connector.open( connectionString ); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection=streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: "+dev.getBluetoothAddress()); - System.out.println("Remote device name: "+dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream=connection.openInputStream(); - BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream)); - String lineRead=bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream=connection.openOutputStream(); - PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - - } - - - public static void main(String[] args) throws IOException { - - //display local device address and name - LocalDevice localDevice = LocalDevice.getLocalDevice(); - System.out.println("Address: "+localDevice.getBluetoothAddress()); - System.out.println("Name: "+localDevice.getFriendlyName()); - - SimpleSPPServer sampleSPPServer=new SimpleSPPServer(); - sampleSPPServer.startServer(); - - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/84/806c53793f63001812c2e6b7a6dfe17e b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/84/806c53793f63001812c2e6b7a6dfe17e deleted file mode 100644 index 454eff975bbc60054427686004ed49c54b16f518..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/84/806c53793f63001812c2e6b7a6dfe17e +++ /dev/null @@ -1,65 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from input Stream:"); - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/84/90f862a9d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/84/90f862a9d26200181b2af13592051b0c deleted file mode 100644 index b36e3e23d2c3c03146e51225f2c676963c77d34a..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/84/90f862a9d26200181b2af13592051b0c +++ /dev/null @@ -1,63 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from inoput Stream:"); - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/85/00f47d4bd26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/85/00f47d4bd26200181b2af13592051b0c deleted file mode 100644 index ff783bbce5fa58ab973843044e7d036cb772c54f..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/85/00f47d4bd26200181b2af13592051b0c +++ /dev/null @@ -1,59 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(1 == 1) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/85/40c12a6fd16200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/85/40c12a6fd16200181b2af13592051b0c deleted file mode 100644 index a579a2203570ca590620bf3d313b43a20e6887a4..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/85/40c12a6fd16200181b2af13592051b0c +++ /dev/null @@ -1,64 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - private void startServer() throws IOException{ - - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid +";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier)Connector.open( connectionString ); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection=streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: "+dev.getBluetoothAddress()); - System.out.println("Remote device name: "+dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream=connection.openInputStream(); - BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream)); - String lineRead=bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream=connection.openOutputStream(); - PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - - } - - - public static void main(String[] args) throws IOException { - - //display local device address and name - LocalDevice localDevice = LocalDevice.getLocalDevice(); - System.out.println("Address: "+localDevice.getBluetoothAddress()); - System.out.println("Name: "+localDevice.getFriendlyName()); - - SimpleSPPServer sampleSPPServer=new SimpleSPPServer(); - sampleSPPServer.startServer(); - - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/89/e03498b6cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/89/e03498b6cc5d001816b8cedb400592e9 deleted file mode 100644 index dcbef92cb849920c05c2d23a767cee80338f7b09..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/89/e03498b6cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,72 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Position of the cursor in [0,1] ranges. (0,0) is the upper left corner - { - - int xpix = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/8a/40af3ad5d16200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/8a/40af3ad5d16200181b2af13592051b0c deleted file mode 100644 index 948c83645ed8fde14d2ba7ce0908d699093cdeaf..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/8a/40af3ad5d16200181b2af13592051b0c +++ /dev/null @@ -1,57 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid +";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier)Connector.open( connectionString ); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection=streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: "+dev.getBluetoothAddress()); - System.out.println("Remote device name: "+dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream=connection.openInputStream(); - BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream)); - String lineRead=bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream=connection.openOutputStream(); - PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch(Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/8b/5097f94ccb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/8b/5097f94ccb5d001816b8cedb400592e9 deleted file mode 100644 index 76e635950ad9d47ad6e16929573cc1fb194df8fa..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/8b/5097f94ccb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point2D a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/8c/306096a5d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/8c/306096a5d26200181b2af13592051b0c deleted file mode 100644 index 5da1a43386a873503fbf2ebd48c269633a3e9f81..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/8c/306096a5d26200181b2af13592051b0c +++ /dev/null @@ -1,62 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/91/809ae6ffca5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/91/809ae6ffca5d001816b8cedb400592e9 deleted file mode 100644 index 4ce005ac716a1e30b3d81629823a37bc72bf9815..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/91/809ae6ffca5d001816b8cedb400592e9 +++ /dev/null @@ -1,71 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - Dimension a = Toolkit.getDefaultToolkit().getScreenResolution(); - final Display display = getShell().getDisplay(); - final Monitor monitor = display.getPrimaryMonitor(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/92/b08a13f8d06200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/92/b08a13f8d06200181b2af13592051b0c deleted file mode 100644 index a579a2203570ca590620bf3d313b43a20e6887a4..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/92/b08a13f8d06200181b2af13592051b0c +++ /dev/null @@ -1,64 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - private void startServer() throws IOException{ - - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid +";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier)Connector.open( connectionString ); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection=streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: "+dev.getBluetoothAddress()); - System.out.println("Remote device name: "+dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream=connection.openInputStream(); - BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream)); - String lineRead=bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream=connection.openOutputStream(); - PrintWriter pWriter=new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - - } - - - public static void main(String[] args) throws IOException { - - //display local device address and name - LocalDevice localDevice = LocalDevice.getLocalDevice(); - System.out.println("Address: "+localDevice.getBluetoothAddress()); - System.out.println("Name: "+localDevice.getFriendlyName()); - - SimpleSPPServer sampleSPPServer=new SimpleSPPServer(); - sampleSPPServer.startServer(); - - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/93/00fc8589c55d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/93/00fc8589c55d001816b8cedb400592e9 deleted file mode 100644 index dc91681d8c09cf0d4957ae3f84a779142591e3f7..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/93/00fc8589c55d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1000, 1000); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/93/c0243109cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/93/c0243109cb5d001816b8cedb400592e9 deleted file mode 100644 index 8f462eedd6edf4a3e499fdf01ca071cb1106ce82..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/93/c0243109cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,70 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/96/10f66ebfc95d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/96/10f66ebfc95d001816b8cedb400592e9 deleted file mode 100644 index 4e2055ff65817542405e97e04f9ae8b2002e5753..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/96/10f66ebfc95d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(100, 100); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00ddef5be5d00181cc6ed7bff2bc9ea b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00ddef5be5d00181cc6ed7bff2bc9ea deleted file mode 100644 index 0c68a61dca867ceb49e79d2402935261ec3e3809..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00ddef5be5d00181cc6ed7bff2bc9ea +++ /dev/null @@ -1,7 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 -org.eclipse.jdt.core.compiler.compliance=1.8 -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.8 diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/97/80ee4d1fcd5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/97/80ee4d1fcd5d001816b8cedb400592e9 deleted file mode 100644 index dd24f53aeec92c337025f42d24200afaefe669c5..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/97/80ee4d1fcd5d001816b8cedb400592e9 +++ /dev/null @@ -1,72 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Position of the cursor in [0,1] ranges. (0,0) is the upper left corner - { - - int xbepix = (int) (ScreenSize.width * xbe); - int ybepix = (int) (ScreenSize.height * ybe); - - int x = xbepix; - int y = ybepix; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbepix || mert.y != ybepix) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbepix) - ++x; - else - --x; - if (mert.y < ybepix) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/9a/90c863a3cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/9a/90c863a3cb5d001816b8cedb400592e9 deleted file mode 100644 index 62ffc2d7c2e968c1f50e0d438aacae46f92abfd4..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/9a/90c863a3cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/9b/d015bc993f63001812c2e6b7a6dfe17e b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/9b/d015bc993f63001812c2e6b7a6dfe17e deleted file mode 100644 index 740bed4424daaee5e15c1a0dadf21d29e1f33286..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/9b/d015bc993f63001812c2e6b7a6dfe17e +++ /dev/null @@ -1,66 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; -import java.util.Base64; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from input Stream:"); - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(Base64.Decoder(lineRead)); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/9f/601e2297cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/9f/601e2297cb5d001816b8cedb400592e9 deleted file mode 100644 index c5f4469bf6310de5c4801db2e69ea3bee95c2a0c..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/9f/601e2297cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ea6a77cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ea6a77cb5d001816b8cedb400592e9 deleted file mode 100644 index ce817e06d780c36c46b421415e312e185511876b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ea6a77cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point2D a, Point2D b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f0e8b3f4c25d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f0e8b3f4c25d001816b8cedb400592e9 deleted file mode 100644 index 74e309402b44f0bb84ad9e6a26fae7ca58b9e87c..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f0e8b3f4c25d001816b8cedb400592e9 +++ /dev/null @@ -1,24 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Robot r = new Robot(); - - r.mouseMove(1000, 0); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a3/805e14f4cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a3/805e14f4cb5d001816b8cedb400592e9 deleted file mode 100644 index d280fdcdccb7dc0749fab887366b52a3eb6ed67d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a3/805e14f4cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - final Dimension ScreenSize; - public SajatRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c0e1c26dcc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c0e1c26dcc5d001816b8cedb400592e9 deleted file mode 100644 index a4be65f1491811520031fd879518a2f981d8dd88..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c0e1c26dcc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Place of the cursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a3/d094ef70c55d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a3/d094ef70c55d001816b8cedb400592e9 deleted file mode 100644 index d85ff10ff28cdff1187f157c328bdbcef65263eb..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a3/d094ef70c55d001816b8cedb400592e9 +++ /dev/null @@ -1,24 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot(); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a5/30e65e8ec35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a5/30e65e8ec35d001816b8cedb400592e9 deleted file mode 100644 index 488d6c8deac038e4c66bf2ade92a5740bd403aa2..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a5/30e65e8ec35d001816b8cedb400592e9 +++ /dev/null @@ -1,29 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - - - MouseInfo.getPointerInfo().getLocation() - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a6/1038e05bd4620018130bd763d424a8b9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a6/1038e05bd4620018130bd763d424a8b9 deleted file mode 100644 index aa18beb11dedd0b37cf9a592025ff2b1858c3062..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a6/1038e05bd4620018130bd763d424a8b9 +++ /dev/null @@ -1,63 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from input Stream:"); - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a7/80f0b0513f63001812c2e6b7a6dfe17e b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a7/80f0b0513f63001812c2e6b7a6dfe17e deleted file mode 100644 index 454eff975bbc60054427686004ed49c54b16f518..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a7/80f0b0513f63001812c2e6b7a6dfe17e +++ /dev/null @@ -1,65 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from input Stream:"); - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a7/b0945434cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a7/b0945434cc5d001816b8cedb400592e9 deleted file mode 100644 index 047584ba486168567464fa87fd582a4947a34b34..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a7/b0945434cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = (int) (ScreenSize.width * xbe); - int y = (int)(ScreenSize.height*ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a8/40b3ae8cc55d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a8/40b3ae8cc55d001816b8cedb400592e9 deleted file mode 100644 index 65f7d714620d1dda4e9f6243a90a7015b3d664cb..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a8/40b3ae8cc55d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1080, 1000); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a8/a0c7d431cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a8/a0c7d431cc5d001816b8cedb400592e9 deleted file mode 100644 index d8fd265452b94aac3eccb30a0c40fe8517c5e33d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/a8/a0c7d431cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = (int)(ScreenSize.width*xbe); - int y = (int)(ScreenSize.height*ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80bc19b3cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80bc19b3cc5d001816b8cedb400592e9 deleted file mode 100644 index d3f3f29d78166f9568f1a485cdaef328ad1a8fa2..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80bc19b3cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,72 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Position of the cursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ae/d02318ad3f63001812c2e6b7a6dfe17e b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ae/d02318ad3f63001812c2e6b7a6dfe17e deleted file mode 100644 index acfdfcffdab9947d89da77e3a199073b7ccd1e81..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ae/d02318ad3f63001812c2e6b7a6dfe17e +++ /dev/null @@ -1,66 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; -import java.util.Base64; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from input Stream:"); - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(Base64.getDecoder().decode(lineRead)); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/af/603fd1d5d06200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/af/603fd1d5d06200181b2af13592051b0c deleted file mode 100644 index 63f59c666ce27676537c43f664781a006b76d0ca..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/af/603fd1d5d06200181b2af13592051b0c +++ /dev/null @@ -1,6 +0,0 @@ -package Eszkozok; - -public class BTSPPServer -{ - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/b3/6053f755c65d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/b3/6053f755c65d001816b8cedb400592e9 deleted file mode 100644 index 748e6fe86ea9e52911508cbe2eaba5eea47d0cae..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/b3/6053f755c65d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(1080, 100); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/b9/a0d0ae03cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/b9/a0d0ae03cc5d001816b8cedb400592e9 deleted file mode 100644 index 9aaf78ffc12023a162f6a050f0e74da3182db6c0..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/b9/a0d0ae03cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public SajatRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ba/2052e604bf5d00181cc6ed7bff2bc9ea b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ba/2052e604bf5d00181cc6ed7bff2bc9ea deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ba/b05d5087cd5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ba/b05d5087cd5d001816b8cedb400592e9 deleted file mode 100644 index 288afbce25dc3c07cfe473c1d6ffc2214c4f521d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ba/b05d5087cd5d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.MouseCorrectRobot Srobot = new Eszkozok.MouseCorrectRobot(); - - Srobot.MoveMouseControlled(-0.5, 0.5); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0073a214363001812c2e6b7a6dfe17e b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0073a214363001812c2e6b7a6dfe17e deleted file mode 100644 index 473643d6efb92569a35a8d92f17e6323609bce1a..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0073a214363001812c2e6b7a6dfe17e +++ /dev/null @@ -1,64 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; -import java.util.Base64; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from input Stream:"); - while (true) - { - String lineRead = bReader.readLine(); - System.out.println(Base64.getDecoder().decode(lineRead)); - - if (false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c/50280fe7d06200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c/50280fe7d06200181b2af13592051b0c deleted file mode 100644 index ed93db012c9649e12e1a6709e9c9b770be760b01..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c/50280fe7d06200181b2af13592051b0c +++ /dev/null @@ -1,6 +0,0 @@ -package eszkozok; - -public class BTSPPServer -{ - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c/f06b3dd8c35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c/f06b3dd8c35d001816b8cedb400592e9 deleted file mode 100644 index 9755c18529e853d9c2c99c0c940a5474f052392a..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c/f06b3dd8c35d001816b8cedb400592e9 +++ /dev/null @@ -1,34 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - - while(true) - { - System.out.println(MouseInfo.getPointerInfo().getLocation()); - TimeUnit.MILLISECONDS.sleep(200); - } - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c0/401ae015cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c0/401ae015cc5d001816b8cedb400592e9 deleted file mode 100644 index 513c63e44ad9d8f2759b3917c9f9db341482bc74..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c0/401ae015cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c2/60333e2ecc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c2/60333e2ecc5d001816b8cedb400592e9 deleted file mode 100644 index 3ef34d10f21becfdff11b5c69e2ea8877af8cf38..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c2/60333e2ecc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = ScreenSize.width*xbe; - int y = ScreenSize.height*ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c6/806c043bd26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c6/806c043bd26200181b2af13592051b0c deleted file mode 100644 index 3084c53d14e65d1a18f1c106670dd2b35383335a..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c6/806c043bd26200181b2af13592051b0c +++ /dev/null @@ -1,56 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c7/307c3485c55d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c7/307c3485c55d001816b8cedb400592e9 deleted file mode 100644 index 43a83882532cf118e659bdb5e18cd8f5ddbd3cce..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/c7/307c3485c55d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(500, 500); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ca/2008d615cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ca/2008d615cc5d001816b8cedb400592e9 deleted file mode 100644 index 93cec7f81c5c5cc4c32d377c329d103fa94b7742..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ca/2008d615cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.MouseCorrectRobot Srobot = new Eszkozok.MouseCorrectRobot(); - - Srobot.MoveMouseEllenorzott(800, 800); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d0/50c807aecb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d0/50c807aecb5d001816b8cedb400592e9 deleted file mode 100644 index a2f115880496f646f0abb90f770b180d06827eb9..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d0/50c807aecb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - final Dimension screensize; - public SajatRobot() throws AWTException - { - super(); - - screensize = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d2/f0b1aa03cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d2/f0b1aa03cc5d001816b8cedb400592e9 deleted file mode 100644 index 38fef218b072d85becec784dbad020e1a5fd029d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d2/f0b1aa03cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(800, 800); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d4/40884271d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d4/40884271d26200181b2af13592051b0c deleted file mode 100644 index 7c6e824033dcb1382f940871a92b4296b56331ef..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d4/40884271d26200181b2af13592051b0c +++ /dev/null @@ -1,61 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - if(true) - return; - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d5/900ea44acb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d5/900ea44acb5d001816b8cedb400592e9 deleted file mode 100644 index 601d788a27c639caa6f3eba6fb8a55f784f34322..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d5/900ea44acb5d001816b8cedb400592e9 +++ /dev/null @@ -1,73 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e07d1bfbca5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e07d1bfbca5d001816b8cedb400592e9 deleted file mode 100644 index 330c8f225dd2dc0e1f7606c3dff24eb06f975302..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e07d1bfbca5d001816b8cedb400592e9 +++ /dev/null @@ -1,70 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - final Display display = getShell().getDisplay(); - final Monitor monitor = display.getPrimaryMonitor(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d8/807f676dc55d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d8/807f676dc55d001816b8cedb400592e9 deleted file mode 100644 index a1b2b5f517104ab9dd0e40bd3b8ccc67b7656afc..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/d8/807f676dc55d001816b8cedb400592e9 +++ /dev/null @@ -1,24 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; -import java.util.concurrent.TimeUnit; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot();; - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/dd/c00e7d73cb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/dd/c00e7d73cb5d001816b8cedb400592e9 deleted file mode 100644 index e4a3bdf5f3db7ec37759c331cf09a56adbc989c0..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/dd/c00e7d73cb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point2D a, Point2D b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/df/10c94cf4ca5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/df/10c94cf4ca5d001816b8cedb400592e9 deleted file mode 100644 index d51e033b3ae3f5ea3d13cf2a96aa09a7a659f43d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/df/10c94cf4ca5d001816b8cedb400592e9 +++ /dev/null @@ -1,70 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimensionn a = Toolkit.getDefaultToolkit().getScreenSize(); - final Display display = getShell().getDisplay(); - final Monitor monitor = display.getPrimaryMonitor(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e3/00d790f1c25d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e3/00d790f1c25d001816b8cedb400592e9 deleted file mode 100644 index 3b68cc3928afae90893f199935e50f8e69311e0f..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e3/00d790f1c25d001816b8cedb400592e9 +++ /dev/null @@ -1,24 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Robot r = new Robot(); - - r.mouseMove(0, 0); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e4/60e1c8a4cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e4/60e1c8a4cc5d001816b8cedb400592e9 deleted file mode 100644 index be57b9d0e34595db89675008f188fc41a4ebd482..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e4/60e1c8a4cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.MouseCorrectRobot Srobot = new Eszkozok.MouseCorrectRobot(); - - Srobot.MoveMouseControlled(800, 800); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e7/00ea7d6ed26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e7/00ea7d6ed26200181b2af13592051b0c deleted file mode 100644 index b8385ccde4164eb48fc76f8c10a096f9ca31f7ac..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e7/00ea7d6ed26200181b2af13592051b0c +++ /dev/null @@ -1,61 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - if(true) - return; - while(10 > 1 + 2) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e7/f05462c7d06200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/e7/f05462c7d06200181b2af13592051b0c deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ea/901c5021cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ea/901c5021cc5d001816b8cedb400592e9 deleted file mode 100644 index 208199a0d06cd425a91e8fc4c0966ff76eb07f3c..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ea/901c5021cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,69 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;//Primary Screen Size - public MouseCorrectRobot() throws AWTException - { - super(); - - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)//Place of the coursor in [0,1] ranges. (0,0) is the upper left corner - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ec/50cf9e45d26200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ec/50cf9e45d26200181b2af13592051b0c deleted file mode 100644 index de09d8d21b6ef671418057dc46dde2cb9ea7a2e3..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ec/50cf9e45d26200181b2af13592051b0c +++ /dev/null @@ -1,59 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ed/406befa4c35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ed/406befa4c35d001816b8cedb400592e9 deleted file mode 100644 index 70a007138df5ae5713522bf7494d958ed7eec540..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ed/406befa4c35d001816b8cedb400592e9 +++ /dev/null @@ -1,30 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.MouseInfo; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - - - System.out.println(MouseInfonfo.getPointerInfo().getLocation()); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ed/9062efefd16200181b2af13592051b0c b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ed/9062efefd16200181b2af13592051b0c deleted file mode 100644 index 29298aebb6cc4137075b764177e608e0892b3c0a..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ed/9062efefd16200181b2af13592051b0c +++ /dev/null @@ -1,57 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f1/006f10e9cc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f1/006f10e9cc5d001816b8cedb400592e9 deleted file mode 100644 index 7531eb20ad1acb3948ad9e76bd8909633ad50abd..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f1/006f10e9cc5d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.MouseCorrectRobot Srobot = new Eszkozok.MouseCorrectRobot(); - - Srobot.MoveMouseControlled(0.9, 0.9); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90d8ca3fcc5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90d8ca3fcc5d001816b8cedb400592e9 deleted file mode 100644 index a4c6a229147e41f0a4b4a8c2383756530eb73838..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90d8ca3fcc5d001816b8cedb400592e9 +++ /dev/null @@ -1,70 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class MouseCorrectRobot extends Robot -{ - final Dimension ScreenSize;// Primary Screen Size - - public MouseCorrectRobot() throws AWTException - { - super(); - ScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); - } - - private static double getTav(Point a, Point b) - { - return Math.sqrt((double) ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseControlled(double xbe, double ybe)// Place of the coursor in [0,1] ranges. (0,0) is the upper - // left corner - { - - int x = (int) (ScreenSize.width * xbe); - int y = (int) (ScreenSize.height * ybe); - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0; - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f005456bcb5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f005456bcb5d001816b8cedb400592e9 deleted file mode 100644 index d55c2184342b1a102379c37f37f1dabf21629072..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f005456bcb5d001816b8cedb400592e9 +++ /dev/null @@ -1,74 +0,0 @@ -package Eszkozok; - -import java.awt.AWTException; -import java.awt.Dimension; -import java.awt.MouseInfo; -import java.awt.Point; -import java.awt.Robot; -import java.awt.Toolkit; -import java.awt.geom.Point2D; - -import javax.management.monitor.Monitor; - -public class SajatRobot extends Robot -{ - - public SajatRobot() throws AWTException - { - super(); - - Dimension a = Toolkit.getDefaultToolkit().getScreenSize(); - int b = Toolkit.getDefaultToolkit().getScreenResolution(); - - System.out.println(a); - - System.out.println(b); - } - - private static double getTav(Point2D a, Point2D b) - { - return Math.sqrt((double) ((a.getX() - b.getX()) * (a.getX() - b.getX()) + (a.y - b.y) * (a.y - b.y))); - } - - public void MoveMouseEllenorzott(int xbe, int ybe) - { - - int x = xbe; - int y = ybe; - - Point mert = MouseInfo.getPointerInfo().getLocation(); - Point ElozoInitPont = new Point(0, 0); - - int UgyanAztMeri = 0;// Sz�ml�lja, h egym�s ut�n h�nyszor m�ri uygan azt a helyet - final int UgyanAZtMeriLimit = 30; - - int i = 0; - final int LepesLimit = 20000; - while ((mert.x != xbe || mert.y != ybe) && i < LepesLimit && UgyanAztMeri < UgyanAZtMeriLimit) - { - ++i; - if (mert.x < xbe) - ++x; - else - --x; - if (mert.y < ybe) - ++y; - else - --y; - mouseMove(x, y); - - mert = MouseInfo.getPointerInfo().getLocation(); - - if (getTav(ElozoInitPont, mert) < 5) - ++UgyanAztMeri; - else - { - UgyanAztMeri = 0; - ElozoInitPont.x = mert.x; - ElozoInitPont.y = mert.y; - } - - } - } - -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f6/40daadbcc95d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f6/40daadbcc95d001816b8cedb400592e9 deleted file mode 100644 index bb22f8b029e7a9cdb62eca122b121ae12faf93bd..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f6/40daadbcc95d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.SajatRobot Srobot = new Eszkozok.SajatRobot(); - - Srobot.MoveMouseEllenorzott(400, 400); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f7/500a728cc35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f7/500a728cc35d001816b8cedb400592e9 deleted file mode 100644 index b8952c1654b9c7a60c2aa138e432e11613aacf2d..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f7/500a728cc35d001816b8cedb400592e9 +++ /dev/null @@ -1,26 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - int xCoord = 500; - int yCoord = 500; - - Robot robot = new Robot(); - robot.mouseMove(xCoord, yCoord); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f7/90b0037ecd5d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f7/90b0037ecd5d001816b8cedb400592e9 deleted file mode 100644 index de485ac5fbd5b682de1d743a3bf3a6fe31c2012b..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/f7/90b0037ecd5d001816b8cedb400592e9 +++ /dev/null @@ -1,21 +0,0 @@ -package fo; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Eszkozok.MouseCorrectRobot Srobot = new Eszkozok.MouseCorrectRobot(); - - Srobot.MoveMouseControlled(0.5, 0.5); - } - catch (Exception e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/fe/b031bb353f63001812c2e6b7a6dfe17e b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/fe/b031bb353f63001812c2e6b7a6dfe17e deleted file mode 100644 index aa18beb11dedd0b37cf9a592025ff2b1858c3062..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/fe/b031bb353f63001812c2e6b7a6dfe17e +++ /dev/null @@ -1,63 +0,0 @@ -package eszkozok; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - -import javax.bluetooth.*; -import javax.microedition.io.*; - -public class BTSPPServer -{ - //start server - public void startServer() - { - try - { - //Create a UUID for SPP - UUID uuid = new UUID("1101", true); - //Create the servicve url - String connectionString = "btspp://localhost:" + uuid + ";name=Sample SPP Server"; - - //open server url - StreamConnectionNotifier streamConnNotifier = (StreamConnectionNotifier) Connector.open(connectionString); - - //Wait for client connection - System.out.println("\nServer Started. Waiting for clients to connect..."); - StreamConnection connection = streamConnNotifier.acceptAndOpen(); - - RemoteDevice dev = RemoteDevice.getRemoteDevice(connection); - System.out.println("Remote device address: " + dev.getBluetoothAddress()); - System.out.println("Remote device name: " + dev.getFriendlyName(true)); - - //read string from spp client - InputStream inStream = connection.openInputStream(); - BufferedReader bReader = new BufferedReader(new InputStreamReader(inStream)); - - System.out.println("Reading from input Stream:"); - while(true) - { - String lineRead = bReader.readLine(); - System.out.println(lineRead); - - if(false) - break; - } - //send response to spp client - OutputStream outStream = connection.openOutputStream(); - PrintWriter pWriter = new PrintWriter(new OutputStreamWriter(outStream)); - pWriter.write("Response String from SPP Server\r\n"); - pWriter.flush(); - - pWriter.close(); - streamConnNotifier.close(); - } - catch (Exception e) - { - e.printStackTrace(); - } - } -} \ No newline at end of file diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ff/6099b40fc35d001816b8cedb400592e9 b/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ff/6099b40fc35d001816b8cedb400592e9 deleted file mode 100644 index b08f26442a32c6f63ab25705adf47ad749258790..0000000000000000000000000000000000000000 --- a/PC/.metadata/.plugins/org.eclipse.core.resources/.history/ff/6099b40fc35d001816b8cedb400592e9 +++ /dev/null @@ -1,24 +0,0 @@ -package fo; - -import java.awt.AWTException; -import java.awt.Robot; - -public class Main -{ - public static void main(String[] args) - { - System.out.println("AAA"); - - try - { - Robot r = new Robot(); - - r.mouseMove(1900, 0); - } - catch (AWTException e) - { - e.printStackTrace(); - } - - } -} diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/af/history.index b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/af/history.index deleted file mode 100644 index 6316385d369e384873397c3d9c31794902e9d1de..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/af/history.index and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/1a/history.index b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/1a/history.index index bc663f0f0dc4590abb3fdd665cf65b919aaa753d..25778ff132aedb797c31137804eef9cfeaf4bdb0 100644 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/1a/history.index and b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/1a/history.index differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/b9/history.index b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/b9/history.index deleted file mode 100644 index a4becaa6b969cefeca93d199bf7924a1282568c6..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/b9/history.index and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/c9/history.index b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/c9/history.index index fbe77c6ec66be52e2177abe8a9e37792d05e554c..48520c011994cc612258b3f81cd13bf39fb39cc8 100644 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/c9/history.index and b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/c9/history.index differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/fa/history.index b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/fa/history.index index c267b99e2f296a1a905d21201810554a2579a39a..1a39b4eb7f1a45691450b003c687c45c7f3bc8ad 100644 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/fa/history.index and b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/fa/history.index differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/history.index b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/history.index deleted file mode 100644 index 07c29c628e2167e7f4e6837ede88853a540b7328..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.indexes/e4/history.index and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.markers b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.markers index d62e85fb4c35f6aa6eff0d34e620274e454e7903..76f2f672d35897882e49eaf337e165889133cb15 100644 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.markers and b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.markers differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.markers.snap b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.markers.snap deleted file mode 100644 index 99ca0d22fa67a63c3db90f3916a544bdcc2e624f..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.markers.snap and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.syncinfo.snap b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.syncinfo.snap deleted file mode 100644 index 7e9499e44818563ab80f6a70ad1cdabf02b8e651..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/.syncinfo.snap and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/org.eclipse.jdt.core/state.dat b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/org.eclipse.jdt.core/state.dat new file mode 100644 index 0000000000000000000000000000000000000000..f283c43c883f76e4d278fc36d08c68be78b38d6b Binary files /dev/null and b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/AirCursorPCServer/org.eclipse.jdt.core/state.dat differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap deleted file mode 100644 index 7e9499e44818563ab80f6a70ad1cdabf02b8e651..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap b/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap deleted file mode 100644 index 7e9499e44818563ab80f6a70ad1cdabf02b8e651..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap b/PC/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap deleted file mode 100644 index 47de47b932509cadde7627155b9044a356f54416..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.root/7.tree b/PC/.metadata/.plugins/org.eclipse.core.resources/.root/7.tree deleted file mode 100644 index 50caba1d6c0d20265ce1628a867c44158411721e..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.root/7.tree and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.root/8.tree b/PC/.metadata/.plugins/org.eclipse.core.resources/.root/8.tree new file mode 100644 index 0000000000000000000000000000000000000000..b1c7f2a9d80ad62575ba11eb94db1ac82faf176e Binary files /dev/null and b/PC/.metadata/.plugins/org.eclipse.core.resources/.root/8.tree differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources b/PC/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources index 44bbabfa30c369db404a7f83240004d30b0b7af4..f7d7ba58c1f956bf1b71835873fbf6215a832aa0 100644 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and b/PC/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.resources/7.snap b/PC/.metadata/.plugins/org.eclipse.core.resources/7.snap deleted file mode 100644 index 536e62336f27c62673f3bad09867c0b858ab1ffc..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.core.resources/7.snap and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs b/PC/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs index ad912b14242908e288ecc05c9e249dfe4c903135..25fc1f91ff3984c266debe574d9626c92e437bd9 100644 --- a/PC/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs +++ b/PC/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs @@ -1,5 +1,5 @@ content_assist_disabled_computers=org.eclipse.jdt.ui.textProposalCategory\u0000org.eclipse.recommenders.calls.rcp.proposalCategory.templates\u0000org.eclipse.mylyn.java.ui.javaAllProposalCategory\u0000org.eclipse.jdt.ui.javaAllProposalCategory\u0000org.eclipse.jdt.ui.javaTypeProposalCategory\u0000org.eclipse.jdt.ui.javaNoTypeProposalCategory\u0000org.eclipse.recommenders.chain.rcp.proposalCategory.chain\u0000 -content_assist_lru_history=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><history maxLHS\="100" maxRHS\="10"><lhs name\="java.awt.Robot"><rhs name\="Eszkozok.SajatRobot"/></lhs><lhs name\="Eszkozok.SajatRobot"><rhs name\="Eszkozok.SajatRobot"/></lhs><lhs name\="java.awt.geom.Point2D"><rhs name\="java.awt.Point"/></lhs><lhs name\="java.lang.Cloneable"><rhs name\="java.awt.Point"/></lhs><lhs name\="java.awt.Point"><rhs name\="java.awt.Point"/></lhs></history> +content_assist_lru_history=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><history maxLHS\="100" maxRHS\="10"><lhs name\="java.awt.Robot"><rhs name\="Eszkozok.SajatRobot"/></lhs><lhs name\="Eszkozok.SajatRobot"><rhs name\="Eszkozok.SajatRobot"/></lhs><lhs name\="java.awt.geom.Point2D"><rhs name\="java.awt.Point"/></lhs><lhs name\="java.lang.Cloneable"><rhs name\="java.awt.Point"/></lhs><lhs name\="java.awt.Point"><rhs name\="java.awt.Point"/></lhs><lhs name\="java.lang.Enum"><rhs name\="eszkozok.SCommandType"/></lhs><lhs name\="eszkozok.SCommandType"><rhs name\="eszkozok.SCommandType"/></lhs></history> content_assist_number_of_computers=24 content_assist_proposals_background=255,255,255 content_assist_proposals_foreground=0,0,0 diff --git a/PC/.metadata/.plugins/org.eclipse.e4.ui.workbench.swt/dialog_settings.xml b/PC/.metadata/.plugins/org.eclipse.e4.ui.workbench.swt/dialog_settings.xml new file mode 100644 index 0000000000000000000000000000000000000000..e2c852497f7fb31b2379bf7703e3d673a657d0a7 --- /dev/null +++ b/PC/.metadata/.plugins/org.eclipse.e4.ui.workbench.swt/dialog_settings.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<section name="Workbench"> + <section name="ShowViewDialog"> + <item value="311" key="DIALOG_WIDTH"/> + <item value="1|Segoe UI|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|Segoe UI" key="DIALOG_FONT_NAME"/> + <item value="org.eclipse.debug.ui.ExpressionView" key="ShowViewDialog.STORE_SELECTED_VIEW_ID"/> + <item value="439" key="DIALOG_HEIGHT"/> + <item value="813" key="DIALOG_X_ORIGIN"/> + <item value="236" key="DIALOG_Y_ORIGIN"/> + <list key="ShowViewDialog.STORE_EXPANDED_CATEGORIES_ID"> + <item value="Debug"/> + </list> + </section> +</section> diff --git a/PC/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/PC/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi index 3f383b7b2c20419388f5c225dd432617725b6fc4..d6a73f7b63651ed13f42d7b21cc302b37b4be375 100644 --- a/PC/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ b/PC/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi @@ -1,9 +1,9 @@ <?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="_3WB14GNQEeidIdhNuvomDQ" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_3WB14WNQEeidIdhNuvomDQ" bindingContexts="_3WDFR2NQEeidIdhNuvomDQ"> +<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="_aLHq4V2-EeiwQNQmo1Li3A" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_aLHq4l2-EeiwQNQmo1Li3A" bindingContexts="_aLHq5F2-EeiwQNQmo1Li3A"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="MouseCorrectRobot.java" tooltip="AirCursorPCServer/src/eszkozok/MouseCorrectRobot.java">
<persistable path="/AirCursorPCServer/src/eszkozok/MouseCorrectRobot.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="BTSPPServer.java" tooltip="AirCursorPCServer/src/eszkozok/BTSPPServer.java">
<persistable path="/AirCursorPCServer/src/eszkozok/BTSPPServer.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="SCommandType.java" tooltip="AirCursorPCServer/src/eszkozok/SCommandType.java">
<persistable path="/AirCursorPCServer/src/eszkozok/SCommandType.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Main.java" tooltip="AirCursorPCServer/src/fo/Main.java">
<persistable path="/AirCursorPCServer/src/fo/Main.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="BTSPPServer.java" tooltip="AirCursorPCServer/src/Eszkozok/BTSPPServer.java">
<persistable path="/AirCursorPCServer/src/Eszkozok/BTSPPServer.java"/>
</file>
<file factoryID="org.eclipse.jdt.ui.ClassFileEditorInputFactory" id="org.eclipse.jdt.ui.ClassFileEditorNoSource" name="PrintStream.class" tooltip="java.io.PrintStream">
<persistable org.eclipse.jdt.ui.ClassFileIdentifier="=AirCursorPCServer/C:\/Program Files\/Java\/jre1.8.0_172\/lib\/rt.jar&lt;java.io(PrintStream.class"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="SajatRobot.java" tooltip="AirCursorPCServer/src/Eszkozok/SajatRobot.java">
<persistable path="/AirCursorPCServer/src/Eszkozok/SajatRobot.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Main.java" tooltip="AirCursorPCServer/src/main/Main.java">
<persistable path="/AirCursorPCServer/src/main/Main.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Main.java" tooltip="AirCursorPCServer/src/Main.java">
<persistable path="/AirCursorPCServer/src/Main.java"/>
</file>
</mruList>
</workbench>"/> <tags>ModelMigrationProcessor.001</tags> <tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags> - <children xsi:type="basic:TrimmedWindow" xmi:id="_3WB14WNQEeidIdhNuvomDQ" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_3WB14mNQEeidIdhNuvomDQ" label="%trimmedwindow.label.eclipseSDK" x="857" y="-8" width="1024" height="768"> + <children xsi:type="basic:TrimmedWindow" xmi:id="_aLHq4l2-EeiwQNQmo1Li3A" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_aj1s4V2-EeiwQNQmo1Li3A" label="%trimmedwindow.label.eclipseSDK" x="857" y="-8" width="1024" height="768"> <persistedState key="coolBarVisible" value="true"/> <persistedState key="perspectiveBarVisible" value="true"/> <persistedState key="isRestored" value="true"/> @@ -12,9 +12,9 @@ <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="_3WB14mNQEeidIdhNuvomDQ" selectedElement="_3WB142NQEeidIdhNuvomDQ" horizontal="true"> - <children xsi:type="advanced:PerspectiveStack" xmi:id="_3WB142NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.perspectivestack" containerData="7500" selectedElement="_3WB1_WNQEeidIdhNuvomDQ"> - <children xsi:type="advanced:Perspective" xmi:id="_3WB15GNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.j2ee.J2EEPerspective" selectedElement="_3WB15WNQEeidIdhNuvomDQ" label="Java EE" iconURI="platform:/plugin/org.eclipse.jst.j2ee.ui/icons/full/cview16/j2ee_perspective.gif"> + <children xsi:type="basic:PartSashContainer" xmi:id="_aj1s4V2-EeiwQNQmo1Li3A" selectedElement="_aj2T8F2-EeiwQNQmo1Li3A" horizontal="true"> + <children xsi:type="advanced:PerspectiveStack" xmi:id="_aj2T8F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.perspectivestack" containerData="7500" selectedElement="_-QTwYF2-EeiJcJeni346Cg"> + <children xsi:type="advanced:Perspective" xmi:id="_azPa0F2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.j2ee.J2EEPerspective" selectedElement="_azPa0V2-EeiwQNQmo1Li3A" 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.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> @@ -74,38 +74,38 @@ <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> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB15WNQEeidIdhNuvomDQ" selectedElement="_3WB15mNQEeidIdhNuvomDQ" horizontal="true"> - <children xsi:type="basic:PartStack" xmi:id="_3WB15mNQEeidIdhNuvomDQ" elementId="topLeft" containerData="1976" selectedElement="_3WB152NQEeidIdhNuvomDQ"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB152NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigator.ProjectExplorer" ref="_3WCeQ2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB16GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_3WCeRmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB16WNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_3WCeR2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB16mNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.PackagesView" toBeRendered="false" ref="_3WCeSGNQEeidIdhNuvomDQ"/> + <children xsi:type="basic:PartSashContainer" xmi:id="_azPa0V2-EeiwQNQmo1Li3A" selectedElement="_azPa0l2-EeiwQNQmo1Li3A" horizontal="true"> + <children xsi:type="basic:PartStack" xmi:id="_azPa0l2-EeiwQNQmo1Li3A" elementId="topLeft" containerData="1976" selectedElement="_azPa012-EeiwQNQmo1Li3A"> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa012-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigator.ProjectExplorer" ref="_aypk8F2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa1F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_ayqzEF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa1V2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_ayraIF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa1l2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.PackagesView" toBeRendered="false" ref="_azGQ4F2-EeiwQNQmo1Li3A"/> </children> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB162NQEeidIdhNuvomDQ" containerData="8024"> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB17GNQEeidIdhNuvomDQ" containerData="7370" horizontal="true"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB17WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editorss" containerData="7000" ref="_3WCdmGNQEeidIdhNuvomDQ"/> - <children xsi:type="basic:PartStack" xmi:id="_3WB17mNQEeidIdhNuvomDQ" elementId="topRight" containerData="3000" selectedElement="_3WB172NQEeidIdhNuvomDQ"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB172NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ContentOutline" ref="_3WCebmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB18GNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" ref="_3WCemWNQEeidIdhNuvomDQ"/> + <children xsi:type="basic:PartSashContainer" xmi:id="_azPa112-EeiwQNQmo1Li3A" containerData="8024"> + <children xsi:type="basic:PartSashContainer" xmi:id="_azPa2F2-EeiwQNQmo1Li3A" containerData="7370" horizontal="true"> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa2V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.editorss" containerData="7000" ref="_ayhpIF2-EeiwQNQmo1Li3A"/> + <children xsi:type="basic:PartStack" xmi:id="_azPa2l2-EeiwQNQmo1Li3A" elementId="topRight" containerData="3000" selectedElement="_azPa212-EeiwQNQmo1Li3A"> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa212-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.ContentOutline" ref="_azJUMl2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa3F2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" ref="_azJ7QF2-EeiwQNQmo1Li3A"/> </children> </children> - <children xsi:type="basic:PartStack" xmi:id="_3WB18WNQEeidIdhNuvomDQ" elementId="bottomRight" containerData="2630" selectedElement="_3WB18mNQEeidIdhNuvomDQ"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB18mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.AllMarkersView" ref="_3WCeSWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB182NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.PropertySheet" ref="_3WCeTGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB19GNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.ui.ServersView" ref="_3WCeTWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB19WNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.connectivity.DataSourceExplorerNavigator" ref="_3WCeUGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB19mNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" ref="_3WCeUWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB192NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ProblemView" toBeRendered="false" ref="_3WCeUmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB1-GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.TaskList" toBeRendered="false" ref="_3WCeWGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB1-WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.console.ConsoleView" toBeRendered="false" ref="_3WCeWWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB1-mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_3WCea2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB1-2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_3WCebGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB1_GNQEeidIdhNuvomDQ" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_3WCebWNQEeidIdhNuvomDQ"/> + <children xsi:type="basic:PartStack" xmi:id="_azPa3V2-EeiwQNQmo1Li3A" elementId="bottomRight" containerData="2630" selectedElement="_azPa3l2-EeiwQNQmo1Li3A"> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa3l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.AllMarkersView" ref="_azGQ4V2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa312-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.PropertySheet" ref="_azG38F2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa4F2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.ui.ServersView" ref="_azHfAF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa4V2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.connectivity.DataSourceExplorerNavigator" ref="_azHfAV2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa4l2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" ref="_azIGEF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa412-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.ProblemView" toBeRendered="false" ref="_azItIF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa5F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.TaskList" toBeRendered="false" ref="_azItIV2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa5V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.console.ConsoleView" toBeRendered="false" ref="_azItIl2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa5l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_azItI12-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa512-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_azJUMF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_azPa6F2-EeiwQNQmo1Li3A" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_azJUMV2-EeiwQNQmo1Li3A"/> </children> </children> </children> </children> - <children xsi:type="advanced:Perspective" xmi:id="_3WB1_WNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.JavaPerspective" selectedElement="_3WB1_mNQEeidIdhNuvomDQ" label="Java" iconURI="platform:/plugin/org.eclipse.jdt.ui/$nl$/icons/full/eview16/jperspective.png"> + <children xsi:type="advanced:Perspective" xmi:id="_-QTwYF2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.JavaPerspective" selectedElement="_-QTwYV2-EeiJcJeni346Cg" label="Java" iconURI="platform:/plugin/org.eclipse.jdt.ui/$nl$/icons/full/eview16/jperspective.png"> <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:print,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> @@ -172,57 +172,58 @@ <tags>persp.viewSC:org.eclipse.wb.core.PaletteView</tags> <tags>persp.viewSC:org.eclipse.ant.ui.views.AntView</tags> <tags>persp.actionSet:org.eclipse.debug.ui.debugActionSet</tags> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB1_mNQEeidIdhNuvomDQ" selectedElement="_3WB2CmNQEeidIdhNuvomDQ" horizontal="true"> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB1_2NQEeidIdhNuvomDQ" containerData="1335" selectedElement="_3WB2AGNQEeidIdhNuvomDQ"> - <children xsi:type="basic:PartStack" xmi:id="_3WB2AGNQEeidIdhNuvomDQ" elementId="left" containerData="6000" selectedElement="_3WB2AWNQEeidIdhNuvomDQ"> + <children xsi:type="basic:PartSashContainer" xmi:id="_-QTwYV2-EeiJcJeni346Cg" selectedElement="_-QTwbV2-EeiJcJeni346Cg" horizontal="true"> + <children xsi:type="basic:PartSashContainer" xmi:id="_-QTwYl2-EeiJcJeni346Cg" containerData="1335" selectedElement="_-QTwY12-EeiJcJeni346Cg"> + <children xsi:type="basic:PartStack" xmi:id="_-QTwY12-EeiJcJeni346Cg" elementId="left" containerData="6000" selectedElement="_-QTwZF2-EeiJcJeni346Cg"> <tags>org.eclipse.e4.primaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2AWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_3WCewWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2AmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_3WCeR2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2A2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_3WCeRmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2BGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_3WCeQ2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2BWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.junit.ResultView" toBeRendered="false" ref="_3WCfK2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2BmNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.StructureView" toBeRendered="false" ref="_3WCfLGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2B2NQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.PaletteView" toBeRendered="false" ref="_3WCfLWNQEeidIdhNuvomDQ"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwZF2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_-QIxQF2-EeiJcJeni346Cg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwZV2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_ayraIF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwZl2-EeiJcJeni346Cg" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_ayqzEF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwZ12-EeiJcJeni346Cg" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_aypk8F2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwaF2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.junit.ResultView" toBeRendered="false" ref="_-QRUIF2-EeiJcJeni346Cg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwaV2-EeiJcJeni346Cg" elementId="org.eclipse.wb.core.StructureView" toBeRendered="false" ref="_-QR7MF2-EeiJcJeni346Cg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwal2-EeiJcJeni346Cg" elementId="org.eclipse.wb.core.PaletteView" toBeRendered="false" ref="_-QSiQF2-EeiJcJeni346Cg"/> </children> - <children xsi:type="basic:PartStack" xmi:id="_3WB2CGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewMStack" toBeRendered="false" containerData="4000"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2CWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesView" toBeRendered="false" ref="_3WCfKWNQEeidIdhNuvomDQ"/> + <children xsi:type="basic:PartStack" xmi:id="_-QTwa12-EeiJcJeni346Cg" elementId="org.eclipse.egit.ui.RepositoriesViewMStack" toBeRendered="false" containerData="4000"> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwbF2-EeiJcJeni346Cg" elementId="org.eclipse.egit.ui.RepositoriesView" toBeRendered="false" ref="_-QQtEF2-EeiJcJeni346Cg"/> </children> </children> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB2CmNQEeidIdhNuvomDQ" containerData="8665" selectedElement="_3WB2C2NQEeidIdhNuvomDQ"> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB2C2NQEeidIdhNuvomDQ" containerData="5261" selectedElement="_3WB2DGNQEeidIdhNuvomDQ" horizontal="true"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2DGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_3WCdmGNQEeidIdhNuvomDQ"/> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB2DWNQEeidIdhNuvomDQ" containerData="2500" selectedElement="_3WB2DmNQEeidIdhNuvomDQ"> - <children xsi:type="basic:PartStack" xmi:id="_3WB2DmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasksMStack" containerData="5000" selectedElement="_3WB2D2NQEeidIdhNuvomDQ"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2D2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" ref="_3WCemWNQEeidIdhNuvomDQ"/> + <children xsi:type="basic:PartSashContainer" xmi:id="_-QTwbV2-EeiJcJeni346Cg" containerData="8665" selectedElement="_-QTwd12-EeiJcJeni346Cg"> + <children xsi:type="basic:PartSashContainer" xmi:id="_-QTwbl2-EeiJcJeni346Cg" containerData="5261" selectedElement="_-QTwb12-EeiJcJeni346Cg" horizontal="true"> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwb12-EeiJcJeni346Cg" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_ayhpIF2-EeiwQNQmo1Li3A"/> + <children xsi:type="basic:PartSashContainer" xmi:id="_-QTwcF2-EeiJcJeni346Cg" containerData="2500" selectedElement="_-QTwcV2-EeiJcJeni346Cg"> + <children xsi:type="basic:PartStack" xmi:id="_-QTwcV2-EeiJcJeni346Cg" elementId="org.eclipse.mylyn.tasks.ui.views.tasksMStack" containerData="5000" selectedElement="_-QTwcl2-EeiJcJeni346Cg"> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwcl2-EeiJcJeni346Cg" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" ref="_azJ7QF2-EeiwQNQmo1Li3A"/> </children> - <children xsi:type="basic:PartStack" xmi:id="_3WB2EGNQEeidIdhNuvomDQ" elementId="right" containerData="5000" selectedElement="_3WB2EWNQEeidIdhNuvomDQ"> + <children xsi:type="basic:PartStack" xmi:id="_-QTwc12-EeiJcJeni346Cg" elementId="right" containerData="5000" selectedElement="_-QTwdF2-EeiJcJeni346Cg"> <tags>org.eclipse.e4.secondaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2EWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ContentOutline" ref="_3WCebmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2EmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.texteditor.TemplatesView" toBeRendered="false" ref="_3WCfKGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2E2NQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_3WCfLmNQEeidIdhNuvomDQ"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwdF2-EeiJcJeni346Cg" elementId="org.eclipse.ui.views.ContentOutline" ref="_azJUMl2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwdV2-EeiJcJeni346Cg" elementId="org.eclipse.ui.texteditor.TemplatesView" toBeRendered="false" ref="_-QNCsF2-EeiJcJeni346Cg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwdl2-EeiJcJeni346Cg" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_-QTJUF2-EeiJcJeni346Cg"/> </children> </children> </children> - <children xsi:type="basic:PartStack" xmi:id="_3WB2FGNQEeidIdhNuvomDQ" elementId="bottom" containerData="4739" selectedElement="_3WB2GWNQEeidIdhNuvomDQ"> + <children xsi:type="basic:PartStack" xmi:id="_-QTwd12-EeiJcJeni346Cg" elementId="bottom" containerData="4739" selectedElement="_-QTwfF2-EeiJcJeni346Cg"> <tags>org.eclipse.e4.secondaryDataStack</tags> <tags>Java</tags> <tags>Debug</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2FWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ProblemView" ref="_3WCeUmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2FmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.JavadocView" ref="_3WCfJmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2F2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.SourceView" ref="_3WCfJ2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2GGNQEeidIdhNuvomDQ" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_3WCebWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2GWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.console.ConsoleView" ref="_3WCeWWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2GmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_3WCea2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2G2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_3WCebGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2HGNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" toBeRendered="false" ref="_3WCfKmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2HWNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.CoverageView" ref="_3WCfL2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2HmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugView" ref="_3WCfMmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2H2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ExpressionView" ref="_3WCfcGNQEeidIdhNuvomDQ"/> + <tags>active</tags> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTweF2-EeiJcJeni346Cg" elementId="org.eclipse.ui.views.ProblemView" ref="_azItIF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTweV2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.JavadocView" ref="_-QLNgF2-EeiJcJeni346Cg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwel2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.SourceView" ref="_-QL0kF2-EeiJcJeni346Cg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwe12-EeiJcJeni346Cg" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_azJUMV2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwfF2-EeiJcJeni346Cg" elementId="org.eclipse.ui.console.ConsoleView" ref="_azItIl2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwfV2-EeiJcJeni346Cg" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_azItI12-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwfl2-EeiJcJeni346Cg" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_azJUMF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_-QTwf12-EeiJcJeni346Cg" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" toBeRendered="false" ref="_-QQtEV2-EeiJcJeni346Cg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_Hx8XUV3CEeiR1ZWVQAxmCg" elementId="org.eclipse.eclemma.ui.CoverageView" ref="_Hx8XUF3CEeiR1ZWVQAxmCg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_QHHuwGNCEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugView" ref="_iFIywF3MEeiR1ZWVQAxmCg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_htsj4GNCEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ExpressionView" ref="_iFJZ0F3MEeiR1ZWVQAxmCg"/> </children> </children> </children> </children> - <children xsi:type="advanced:Perspective" xmi:id="_3WB2IGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugPerspective" selectedElement="_3WB2IWNQEeidIdhNuvomDQ" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/$nl$/icons/full/eview16/debug_persp.png"> + <children xsi:type="advanced:Perspective" xmi:id="_iFOSUF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.DebugPerspective" selectedElement="_iFOSUV3MEeiR1ZWVQAxmCg" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/$nl$/icons/full/eview16/debug_persp.png"> <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:print,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> @@ -266,3424 +267,3182 @@ <tags>persp.viewSC:org.eclipse.datatools.sqltools.result.resultView</tags> <tags>persp.perspSC:org.eclipse.datatools.sqltools.sqleditor.perspectives.EditorPerspective</tags> <tags>persp.viewSC:org.eclipse.ant.ui.views.AntView</tags> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB2IWNQEeidIdhNuvomDQ" selectedElement="_3WB2NGNQEeidIdhNuvomDQ"> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB2ImNQEeidIdhNuvomDQ" containerData="7500" selectedElement="_3WB2L2NQEeidIdhNuvomDQ"> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB2I2NQEeidIdhNuvomDQ" containerData="4500" selectedElement="_3WB2KmNQEeidIdhNuvomDQ" horizontal="true"> - <children xsi:type="basic:PartStack" xmi:id="_3WB2JGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.internal.ui.NavigatorFolderView" containerData="5000" selectedElement="_3WB2JWNQEeidIdhNuvomDQ"> + <children xsi:type="basic:PartSashContainer" xmi:id="_iFOSUV3MEeiR1ZWVQAxmCg" selectedElement="_iFOSZF3MEeiR1ZWVQAxmCg"> + <children xsi:type="basic:PartSashContainer" xmi:id="_iFOSUl3MEeiR1ZWVQAxmCg" containerData="7500" selectedElement="_iFOSX13MEeiR1ZWVQAxmCg"> + <children xsi:type="basic:PartSashContainer" xmi:id="_iFOSU13MEeiR1ZWVQAxmCg" containerData="4500" selectedElement="_iFOSWl3MEeiR1ZWVQAxmCg" horizontal="true"> + <children xsi:type="basic:PartStack" xmi:id="_iFOSVF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.internal.ui.NavigatorFolderView" containerData="5000" selectedElement="_iFOSVV3MEeiR1ZWVQAxmCg"> <tags>org.eclipse.e4.primaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2JWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugView" ref="_3WCfMmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2JmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_3WCeQ2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2J2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.ui.ServersView" ref="_3WCeTWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2KGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.PackageExplorer" toBeRendered="false" ref="_3WCewWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2KWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_3WCeR2NQEeidIdhNuvomDQ"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSVV3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.DebugView" ref="_iFIywF3MEeiR1ZWVQAxmCg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSVl3MEeiR1ZWVQAxmCg" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_aypk8F2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSV13MEeiR1ZWVQAxmCg" elementId="org.eclipse.wst.server.ui.ServersView" ref="_azHfAF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSWF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.jdt.ui.PackageExplorer" toBeRendered="false" ref="_-QIxQF2-EeiJcJeni346Cg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSWV3MEeiR1ZWVQAxmCg" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_ayraIF2-EeiwQNQmo1Li3A"/> </children> - <children xsi:type="basic:PartStack" xmi:id="_3WB2KmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.internal.ui.ToolsFolderView" containerData="5000" selectedElement="_3WB2K2NQEeidIdhNuvomDQ"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2K2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.VariableView" ref="_3WCfamNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2LGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.BreakpointView" ref="_3WCfbWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2LWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ExpressionView" toBeRendered="false" ref="_3WCfcGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2LmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.RegisterView" toBeRendered="false" ref="_3WCfj2NQEeidIdhNuvomDQ"/> + <children xsi:type="basic:PartStack" xmi:id="_iFOSWl3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.internal.ui.ToolsFolderView" containerData="5000" selectedElement="_iFOSW13MEeiR1ZWVQAxmCg"> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSW13MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.VariableView" ref="_iFIywV3MEeiR1ZWVQAxmCg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSXF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.BreakpointView" ref="_iFIywl3MEeiR1ZWVQAxmCg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSXV3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.ExpressionView" toBeRendered="false" ref="_iFJZ0F3MEeiR1ZWVQAxmCg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSXl3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.RegisterView" toBeRendered="false" ref="_iFJZ0V3MEeiR1ZWVQAxmCg"/> </children> </children> - <children xsi:type="basic:PartSashContainer" xmi:id="_3WB2L2NQEeidIdhNuvomDQ" containerData="5500" selectedElement="_3WB2MGNQEeidIdhNuvomDQ" horizontal="true"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2MGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_3WCdmGNQEeidIdhNuvomDQ"/> - <children xsi:type="basic:PartStack" xmi:id="_3WB2MWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.internal.ui.OutlineFolderView" containerData="2500" selectedElement="_3WB2MmNQEeidIdhNuvomDQ"> + <children xsi:type="basic:PartSashContainer" xmi:id="_iFOSX13MEeiR1ZWVQAxmCg" containerData="5500" selectedElement="_iFOSYF3MEeiR1ZWVQAxmCg" horizontal="true"> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSYF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_ayhpIF2-EeiwQNQmo1Li3A"/> + <children xsi:type="basic:PartStack" xmi:id="_iFOSYV3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.internal.ui.OutlineFolderView" containerData="2500" selectedElement="_iFOSYl3MEeiR1ZWVQAxmCg"> <tags>org.eclipse.e4.secondaryNavigationStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2MmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ContentOutline" ref="_3WCebmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2M2NQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_3WCfLmNQEeidIdhNuvomDQ"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSYl3MEeiR1ZWVQAxmCg" elementId="org.eclipse.ui.views.ContentOutline" ref="_azJUMl2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSY13MEeiR1ZWVQAxmCg" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_-QTJUF2-EeiJcJeni346Cg"/> </children> </children> </children> - <children xsi:type="basic:PartStack" xmi:id="_3WB2NGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.internal.ui.ConsoleFolderView" containerData="2500" selectedElement="_3WB2NWNQEeidIdhNuvomDQ"> + <children xsi:type="basic:PartStack" xmi:id="_iFOSZF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.internal.ui.ConsoleFolderView" containerData="2500" selectedElement="_iFOSZV3MEeiR1ZWVQAxmCg"> <tags>org.eclipse.e4.secondaryDataStack</tags> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2NWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.console.ConsoleView" ref="_3WCeWWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2NmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.TaskList" ref="_3WCeWGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2N2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_3WCea2NQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2OGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.PropertySheet" toBeRendered="false" ref="_3WCeTGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2OWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.DisplayView" toBeRendered="false" ref="_3WCfkGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2OmNQEeidIdhNuvomDQ" elementId="org.eclipse.search.SearchResultView" toBeRendered="false" ref="_3WCfkWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2O2NQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" toBeRendered="false" ref="_3WCfKmNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2PGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.result.resultView" toBeRendered="false" ref="_3WCfkmNQEeidIdhNuvomDQ"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSZV3MEeiR1ZWVQAxmCg" elementId="org.eclipse.ui.console.ConsoleView" ref="_azItIl2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSZl3MEeiR1ZWVQAxmCg" elementId="org.eclipse.ui.views.TaskList" ref="_azItIV2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSZ13MEeiR1ZWVQAxmCg" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_azItI12-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSaF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.ui.views.PropertySheet" toBeRendered="false" ref="_azG38F2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSaV3MEeiR1ZWVQAxmCg" elementId="org.eclipse.jdt.debug.ui.DisplayView" toBeRendered="false" ref="_iFMdIF3MEeiR1ZWVQAxmCg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSal3MEeiR1ZWVQAxmCg" elementId="org.eclipse.search.SearchResultView" toBeRendered="false" ref="_iFNEMF3MEeiR1ZWVQAxmCg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSa13MEeiR1ZWVQAxmCg" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" toBeRendered="false" ref="_-QQtEV2-EeiJcJeni346Cg"/> + <children xsi:type="advanced:Placeholder" xmi:id="_iFOSbF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.datatools.sqltools.result.resultView" toBeRendered="false" ref="_iFNrQF3MEeiR1ZWVQAxmCg"/> </children> </children> </children> </children> - <children xsi:type="basic:PartStack" xmi:id="_3WB2PWNQEeidIdhNuvomDQ" elementId="stickyFolderRight" toBeRendered="false" containerData="2500"> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2PmNQEeidIdhNuvomDQ" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_3WCdkWNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2P2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_3WCdlGNQEeidIdhNuvomDQ"/> - <children xsi:type="advanced:Placeholder" xmi:id="_3WB2QGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_3WCdl2NQEeidIdhNuvomDQ"/> + <children xsi:type="basic:PartStack" xmi:id="_aj2T8V2-EeiwQNQmo1Li3A" elementId="stickyFolderRight" toBeRendered="false" containerData="2500"> + <children xsi:type="advanced:Placeholder" xmi:id="_aj2T8l2-EeiwQNQmo1Li3A" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_ajzQoF2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_aj2T812-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_aj1F0F2-EeiwQNQmo1Li3A"/> + <children xsi:type="advanced:Placeholder" xmi:id="_aj2T9F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_aj1s4F2-EeiwQNQmo1Li3A"/> </children> </children> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCdkWNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_ajzQoF2-EeiwQNQmo1Li3A" 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> - <menus xmi:id="_3WCdkmNQEeidIdhNuvomDQ" elementId="org.eclipse.help.ui.HelpView"> + <menus xmi:id="_yJ-68F3CEeiR1ZWVQAxmCg" elementId="org.eclipse.help.ui.HelpView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_3WCdk2NQEeidIdhNuvomDQ" elementId="org.eclipse.help.ui.HelpView" visible="false"/> + <toolbar xmi:id="_yJ_iAF3CEeiR1ZWVQAxmCg" elementId="org.eclipse.help.ui.HelpView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCdlGNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_aj1F0F2-EeiwQNQmo1Li3A" 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> <tags>activeOnClose</tags> - <menus xmi:id="_3WCdlWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.internal.introview"> + <menus xmi:id="_bFav8F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.internal.introview"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_3WCdlmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.internal.introview" visible="false"/> + <toolbar xmi:id="_bFav8V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.internal.introview" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCdl2NQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_aj1s4F2-EeiwQNQmo1Li3A" 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="_3WCdmGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editorss" selectedElement="_3WCdmWNQEeidIdhNuvomDQ"> - <children xsi:type="basic:PartStack" xmi:id="_3WCdmWNQEeidIdhNuvomDQ" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_3WCeO2NQEeidIdhNuvomDQ"> + <sharedElements xsi:type="advanced:Area" xmi:id="_ayhpIF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.editorss" selectedElement="_ayhpIV2-EeiwQNQmo1Li3A"> + <children xsi:type="basic:PartStack" xmi:id="_ayhpIV2-EeiwQNQmo1Li3A" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_WETFkGNHEeidIdhNuvomDQ"> <tags>org.eclipse.e4.primaryDataStack</tags> <tags>EditorStack</tags> - <tags>active</tags> - <tags>noFocus</tags> - <children xsi:type="basic:Part" xmi:id="_3WCdmmNQEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Main.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_Km9kAF2_EeiJcJeni346Cg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Main.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Main.java" partName="Main.java" title="Main.java" tooltip="AirCursorPCServer/src/fo/Main.java">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/AirCursorPCServer/src/fo/Main.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="287" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCdm2NQEeidIdhNuvomDQ" elementId="#CompilationUnitEditorContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#CompilationUnitEditorContext</tags> - <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> - <tags>popup:#AbstractTextEditorContext</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCd52NQEeidIdhNuvomDQ" elementId="#CompilationUnitRulerContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#CompilationUnitRulerContext</tags> - <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> - <tags>popup:#AbstractTextEditorRulerContext</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCd6GNQEeidIdhNuvomDQ" elementId="#OverviewRulerContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#OverviewRulerContext</tags> - </menus> </children> - <children xsi:type="basic:Part" xmi:id="_3WCd6WNQEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="BTSPPServer.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_x6iswGLQEeifiaWhg1jCmQ" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="BTSPPServer.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor" name="BTSPPServer.java" partName="BTSPPServer.java" title="BTSPPServer.java" tooltip="AirCursorPCServer/src/eszkozok/BTSPPServer.java">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/AirCursorPCServer/src/eszkozok/BTSPPServer.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="2359" selectionTopPixel="1107"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCd6mNQEeidIdhNuvomDQ" elementId="#CompilationUnitEditorContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#CompilationUnitEditorContext</tags> - <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> - <tags>popup:#AbstractTextEditorContext</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCeOWNQEeidIdhNuvomDQ" elementId="#CompilationUnitRulerContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#CompilationUnitRulerContext</tags> - <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> - <tags>popup:#AbstractTextEditorRulerContext</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCeOmNQEeidIdhNuvomDQ" elementId="#OverviewRulerContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#OverviewRulerContext</tags> - </menus> </children> - <children xsi:type="basic:Part" xmi:id="_3WCeO2NQEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="SCommandType.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_WETFkGNHEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="SCommandType.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor" name="SCommandType.java" partName="SCommandType.java" title="SCommandType.java" tooltip="AirCursorPCServer/src/eszkozok/SCommandType.java">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/AirCursorPCServer/src/eszkozok/SCommandType.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="149" selectionTopPixel="0"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <tags>active</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCePGNQEeidIdhNuvomDQ" elementId="#CompilationUnitEditorContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#CompilationUnitEditorContext</tags> - <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> - <tags>popup:#AbstractTextEditorContext</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCePWNQEeidIdhNuvomDQ" elementId="#CompilationUnitRulerContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#CompilationUnitRulerContext</tags> - <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> - <tags>popup:#AbstractTextEditorRulerContext</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCePmNQEeidIdhNuvomDQ" elementId="#OverviewRulerContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#OverviewRulerContext</tags> - </menus> </children> - <children xsi:type="basic:Part" xmi:id="_3WCeP2NQEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="MouseCorrectRobot.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true"> + <children xsi:type="basic:Part" xmi:id="_NoGYgGNLEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="MouseCorrectRobot.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true"> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor" name="MouseCorrectRobot.java" partName="MouseCorrectRobot.java" title="MouseCorrectRobot.java" tooltip="AirCursorPCServer/src/eszkozok/MouseCorrectRobot.java">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/AirCursorPCServer/src/eszkozok/MouseCorrectRobot.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="1380" selectionTopPixel="386"/>
</editor>"/> <tags>Editor</tags> <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags> <tags>removeOnHide</tags> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCeQGNQEeidIdhNuvomDQ" elementId="#CompilationUnitEditorContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#CompilationUnitEditorContext</tags> - <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags> - <tags>popup:#AbstractTextEditorContext</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCeQWNQEeidIdhNuvomDQ" elementId="#CompilationUnitRulerContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#CompilationUnitRulerContext</tags> - <tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags> - <tags>popup:#AbstractTextEditorRulerContext</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCeQmNQEeidIdhNuvomDQ" elementId="#OverviewRulerContext"> - <tags>menuContribution:popup</tags> - <tags>popup:#OverviewRulerContext</tags> - </menus> </children> </children> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCeQ2NQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_aypk8F2-EeiwQNQmo1Li3A" 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 1526993334096" org.eclipse.ui.navigator.resources.workingSets.showTopLevelWorkingSets="0">
<lastRecentlyUsedFilters/>
</view>"/> <tags>View</tags> <tags>categoryTag:General</tags> - <menus xmi:id="_3WCeRGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigator.ProjectExplorer"> + <menus xmi:id="_a0G9gF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigator.ProjectExplorer"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_3WCeRWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigator.ProjectExplorer"/> + <toolbar xmi:id="_a0G9gV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigator.ProjectExplorer"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCeRmNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_ayqzEF2-EeiwQNQmo1Li3A" 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="_3WCeR2NQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_ayraIF2-EeiwQNQmo1Li3A" 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="_3WCeSGNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azGQ4F2-EeiwQNQmo1Li3A" 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="_3WCeSWNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azGQ4V2-EeiwQNQmo1Li3A" 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="_3WCeSmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.AllMarkersView"> + <menus xmi:id="_a5_jEF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.AllMarkersView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_3WCeS2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.AllMarkersView"/> + <toolbar xmi:id="_a5_jEV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.AllMarkersView"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCeTGNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azG38F2-EeiwQNQmo1Li3A" 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="_3WCeTWNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azHfAF2-EeiwQNQmo1Li3A" 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> - <menus xmi:id="_3WCeTmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.ui.ServersView"> + <menus xmi:id="_j_rM0F3MEeiR1ZWVQAxmCg" elementId="org.eclipse.wst.server.ui.ServersView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_3WCeT2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.ui.ServersView" visible="false"/> + <toolbar xmi:id="_j_rM0V3MEeiR1ZWVQAxmCg" elementId="org.eclipse.wst.server.ui.ServersView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCeUGNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azHfAV2-EeiwQNQmo1Li3A" 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="_3WCeUWNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azIGEF2-EeiwQNQmo1Li3A" 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="_3WCeUmNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azItIF2-EeiwQNQmo1Li3A" 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"/> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view PRIMARY_SORT_FIELD="org.eclipse.ui.ide.severityAndDescriptionField" categoryGroup="org.eclipse.ui.ide.severity" markerContentGenerator="org.eclipse.ui.ide.problemsGenerator" partName="Problems">
<expanded>
<category IMemento.internal.id="Errors"/>
<category IMemento.internal.id="Errors (1 item)"/>
<category IMemento.internal.id="Warnings"/>
</expanded>
<columnWidths org.eclipse.ui.ide.locationField="90" org.eclipse.ui.ide.markerType="90" org.eclipse.ui.ide.pathField="120" org.eclipse.ui.ide.resourceField="90" org.eclipse.ui.ide.severityAndDescriptionField="300"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.severityAndDescriptionField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.resourceField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.pathField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.locationField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.markerType"/>
</view>"/> <tags>View</tags> <tags>categoryTag:General</tags> - <menus xmi:id="_3WCeU2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ProblemView"> + <menus xmi:id="_-VtNwF2-EeiJcJeni346Cg" elementId="org.eclipse.ui.views.ProblemView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCeVGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ProblemView"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.ui.views.ProblemView</tags> - <tags>popup:org.eclipse.ui.ide.MarkersView</tags> - </menus> - <toolbar xmi:id="_3WCeVWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ProblemView" visible="false"/> + <toolbar xmi:id="_-VtNwV2-EeiJcJeni346Cg" elementId="org.eclipse.ui.views.ProblemView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCeWGNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azItIV2-EeiwQNQmo1Li3A" 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="_3WCeWWNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azItIl2-EeiwQNQmo1Li3A" 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"/> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:General</tags> - <menus xmi:id="_3WCeWmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.console.ConsoleView"> + <tags>active</tags> + <tags>activeOnClose</tags> + <menus xmi:id="_GRB-MF3CEeiR1ZWVQAxmCg" elementId="org.eclipse.ui.console.ConsoleView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCeW2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu</tags> - </menus> - <toolbar xmi:id="_3WCeXGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.console.ConsoleView"/> + <toolbar xmi:id="_GRB-MV3CEeiR1ZWVQAxmCg" elementId="org.eclipse.ui.console.ConsoleView"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCea2NQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azItI12-EeiwQNQmo1Li3A" 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="_3WCebGNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azJUMF2-EeiwQNQmo1Li3A" 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="_3WCebWNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azJUMV2-EeiwQNQmo1Li3A" 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="_3WCebmNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azJUMl2-EeiwQNQmo1Li3A" 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> - <menus xmi:id="_3WCeb2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ContentOutline"> + <menus xmi:id="_a4V9QF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.ContentOutline"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCeemNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.outline"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.jdt.ui.outline</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCee2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.outline"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.jdt.ui.outline</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCefGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.outline"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.jdt.ui.outline</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCefWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.outline"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.jdt.ui.outline</tags> - </menus> - <toolbar xmi:id="_3WCefmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ContentOutline"/> + <toolbar xmi:id="_a4V9QV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.ContentOutline"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCemWNQEeidIdhNuvomDQ" 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"> + <sharedElements xsi:type="basic:Part" xmi:id="_azJ7QF2-EeiwQNQmo1Li3A" 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"/> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view linkWithEditor="true" presentation="org.eclipse.mylyn.tasks.ui.categorized">
<sorter groupBy="CATEGORY_QUERY">
<sorter>
<sortorg.eclipse.mylyn.tasks.ui.scheduled0 sortDirection="1" sortKey="DUE_DATE"/>
<sortorg.eclipse.mylyn.tasks.ui.scheduled1 sortDirection="1" sortKey="SCHEDULED_DATE"/>
<sortorg.eclipse.mylyn.tasks.ui.scheduled2 sortDirection="1" sortKey="PRIORITY"/>
<sortorg.eclipse.mylyn.tasks.ui.scheduled3 sortDirection="1" sortKey="RANK"/>
<sortorg.eclipse.mylyn.tasks.ui.scheduled4 sortDirection="1" sortKey="DATE_CREATED"/>
<sortorg.eclipse.mylyn.tasks.ui.scheduled5 sortDirection="1" sortKey="NONE"/>
<sortorg.eclipse.mylyn.tasks.ui.scheduled6 sortDirection="1" sortKey="NONE"/>
<sortorg.eclipse.mylyn.tasks.ui.scheduled7 sortDirection="1" sortKey="NONE"/>
<sortorg.eclipse.mylyn.tasks.ui.scheduled8 sortDirection="1" sortKey="NONE"/>
<sortorg.eclipse.mylyn.tasks.ui.categorized0 sortDirection="1" sortKey="PRIORITY"/>
<sortorg.eclipse.mylyn.tasks.ui.categorized1 sortDirection="1" sortKey="RANK"/>
<sortorg.eclipse.mylyn.tasks.ui.categorized2 sortDirection="1" sortKey="DATE_CREATED"/>
<sortorg.eclipse.mylyn.tasks.ui.categorized3 sortDirection="1" sortKey="NONE"/>
<sortorg.eclipse.mylyn.tasks.ui.categorized4 sortDirection="1" sortKey="NONE"/>
<sortorg.eclipse.mylyn.tasks.ui.categorized5 sortDirection="1" sortKey="NONE"/>
<sortorg.eclipse.mylyn.tasks.ui.categorized6 sortDirection="1" sortKey="NONE"/>
<sortorg.eclipse.mylyn.tasks.ui.categorized7 sortDirection="1" sortKey="NONE"/>
<sortorg.eclipse.mylyn.tasks.ui.categorized8 sortDirection="1" sortKey="NONE"/>
</sorter>
</sorter>
<filteredTreeFindHistory/>
</view>"/> <tags>View</tags> <tags>categoryTag:Mylyn</tags> - <menus xmi:id="_3WCemmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks"> + <menus xmi:id="_-STUcF2-EeiJcJeni346Cg" elementId="org.eclipse.mylyn.tasks.ui.views.tasks"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCesGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.menus.activeTask"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.mylyn.tasks.ui.menus.activeTask</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCesWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.mylyn.tasks.ui.views.tasks</tags> - </menus> - <toolbar xmi:id="_3WCesmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks"/> + <toolbar xmi:id="_-ST7gF2-EeiJcJeni346Cg" elementId="org.eclipse.mylyn.tasks.ui.views.tasks"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCewWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.PackageExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QIxQF2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.PackageExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart"/> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view group_libraries="1" layout="2" linkWithEditor="0" rootMode="1" workingSetName="Aggregate for window 1526993334096">
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.buildship.ui.packageexplorer.filter.gradle.buildfolder" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_RemoteSystemsConnections" isEnabled="true"/>
<child filterId="org.eclipse.mylyn.java.ui.MembersFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.m2e.MavenModuleFilter" isEnabled="false"/>
<child filterId="org.eclipse.buildship.ui.packageexplorer.filter.gradle.subProject" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.pde.ui.BinaryProjectFilter1" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.pde.ui.ExternalPluginLibrariesFilter1" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_RemoteSystemsTempFiles" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.DeprecatedMembersFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
</xmlDefinedFilters>
</customFilters>
</view>"/> <tags>View</tags> <tags>categoryTag:Java</tags> - <menus xmi:id="_3WCewmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.PackageExplorer"> + <menus xmi:id="_-QqVsF2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.PackageExplorer"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCe2GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.PackageExplorer"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.jdt.ui.PackageExplorer</tags> - </menus> - <toolbar xmi:id="_3WCfIGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.PackageExplorer"/> + <toolbar xmi:id="_-QqVsV2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.PackageExplorer"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfJmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.JavadocView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QLNgF2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.JavadocView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.JavadocView"/> <tags>View</tags> <tags>categoryTag:Java</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfJ2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.SourceView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QL0kF2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.SourceView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.SourceView"/> <tags>View</tags> <tags>categoryTag:Java</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfKGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.texteditor.TemplatesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QNCsF2-EeiJcJeni346Cg" elementId="org.eclipse.ui.texteditor.TemplatesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.texteditor.templates.TemplatesView"/> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfKWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QQtEF2-EeiJcJeni346Cg" elementId="org.eclipse.egit.ui.RepositoriesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.repository.RepositoriesView"/> <tags>View</tags> <tags>categoryTag:Git</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfKmNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Terminal" iconURI="platform:/plugin/org.eclipse.tm.terminal.view.ui/icons/eview16/terminal_view.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QQtEV2-EeiJcJeni346Cg" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Terminal" iconURI="platform:/plugin/org.eclipse.tm.terminal.view.ui/icons/eview16/terminal_view.gif" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.TerminalsView"/> <tags>View</tags> <tags>categoryTag:Terminal</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfK2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.junit.ResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QRUIF2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.junit.ResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.junit"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart"/> <tags>View</tags> <tags>categoryTag:Java</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfLGNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.StructureView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Structure" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/properties_view.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QR7MF2-EeiJcJeni346Cg" elementId="org.eclipse.wb.core.StructureView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Structure" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/properties_view.gif" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wb.core"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wb.internal.core.views.StructureView"/> <tags>View</tags> <tags>categoryTag:WindowBuilder</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfLWNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.PaletteView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Palette" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/palette.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QSiQF2-EeiJcJeni346Cg" elementId="org.eclipse.wb.core.PaletteView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Palette" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/palette.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wb.core"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wb.internal.core.views.PaletteView"/> <tags>View</tags> <tags>categoryTag:WindowBuilder</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfLmNQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.views.AntView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_-QTJUF2-EeiJcJeni346Cg" elementId="org.eclipse.ant.ui.views.AntView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ant.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ant.internal.ui.views.AntView"/> <tags>View</tags> <tags>categoryTag:Ant</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfL2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.CoverageView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Coverage" iconURI="platform:/plugin/org.eclipse.eclemma.ui/icons/full/eview16/coverage.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_Hx8XUF3CEeiR1ZWVQAxmCg" elementId="org.eclipse.eclemma.ui.CoverageView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Coverage" iconURI="platform:/plugin/org.eclipse.eclemma.ui/icons/full/eview16/coverage.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.eclemma.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.eclemma.internal.ui.coverageview.CoverageView"/> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view column0="300" column1="80" column2="120" column3="120" column4="120" counters="INSTRUCTION" hideunusedelements="false" linked="false" reversesort="true" roottype="GROUP" sortcolumn="3"/>"/> <tags>View</tags> <tags>categoryTag:Java</tags> - <menus xmi:id="_3WCfMGNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.CoverageView"> + <menus xmi:id="_HyGIUF3CEeiR1ZWVQAxmCg" elementId="org.eclipse.eclemma.ui.CoverageView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_3WCfMWNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.CoverageView" visible="false"/> + <toolbar xmi:id="_HyGIUV3CEeiR1ZWVQAxmCg" elementId="org.eclipse.eclemma.ui.CoverageView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfMmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_iFIywF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.DebugView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.launch.LaunchView"/> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:Debug</tags> - <menus xmi:id="_3WCfM2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugView"> + <menus xmi:id="_iGbzQF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.DebugView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCfPGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugView"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.debug.ui.DebugView</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCfXmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugView"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.debug.ui.DebugView</tags> - </menus> - <toolbar xmi:id="_3WCfX2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugView" visible="false"/> + <toolbar xmi:id="_iGbzQV3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.DebugView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfamNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.VariableView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_iFIywV3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.VariableView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.variables.VariablesView"/> <tags>View</tags> <tags>categoryTag:Debug</tags> - <menus xmi:id="_3WCfa2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.VariableView"> + <menus xmi:id="_iIJDcF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.VariableView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_3WCfbGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.VariableView"/> + <toolbar xmi:id="_iIJDcV3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.VariableView"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfbWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.BreakpointView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_iFIywl3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.BreakpointView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointsView"/> <tags>View</tags> <tags>categoryTag:Debug</tags> - <menus xmi:id="_3WCfbmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.BreakpointView"> + <menus xmi:id="_iRXQ4F3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.BreakpointView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <toolbar xmi:id="_3WCfb2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.BreakpointView"/> + <toolbar xmi:id="_iRXQ4V3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.BreakpointView"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfcGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ExpressionView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_iFJZ0F3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.ExpressionView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.expression.ExpressionView"/> <persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/> <tags>View</tags> <tags>categoryTag:Debug</tags> - <menus xmi:id="_3WCfcWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ExpressionView"> + <menus xmi:id="_ht3jAGNCEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ExpressionView"> <tags>ViewMenu</tags> <tags>menuContribution:menu</tags> </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCfeWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.VariableView.detail"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.debug.ui.VariableView.detail</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCfemNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ExpressionView"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.debug.ui.ExpressionView</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCfgWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.VariableView.detail"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.debug.ui.VariableView.detail</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCfgmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.VariableView.detail"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.debug.ui.VariableView.detail</tags> - </menus> - <menus xsi:type="menu:PopupMenu" xmi:id="_3WCfg2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.VariableView.detail"> - <tags>menuContribution:popup</tags> - <tags>popup:org.eclipse.debug.ui.VariableView.detail</tags> - </menus> - <toolbar xmi:id="_3WCfhGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ExpressionView" visible="false"/> + <toolbar xmi:id="_ht3jAWNCEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.ExpressionView" visible="false"/> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfj2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.RegisterView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_iFJZ0V3MEeiR1ZWVQAxmCg" elementId="org.eclipse.debug.ui.RegisterView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.registers.RegistersView"/> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfkGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.DisplayView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_iFMdIF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.jdt.debug.ui.DisplayView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.debug.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.debug.ui.display.DisplayView"/> <tags>View</tags> <tags>categoryTag:Debug</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfkWNQEeidIdhNuvomDQ" elementId="org.eclipse.search.SearchResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_iFNEMF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.search.SearchResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.search.internal.ui.SearchResultView"/> <tags>View</tags> <tags>categoryTag:General</tags> </sharedElements> - <sharedElements xsi:type="basic:Part" xmi:id="_3WCfkmNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.result.resultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="SQL Results" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.result.ui/icons/sqlresult.gif" tooltip="" closeable="true"> + <sharedElements xsi:type="basic:Part" xmi:id="_iFNrQF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.datatools.sqltools.result.resultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="SQL Results" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.result.ui/icons/sqlresult.gif" tooltip="" closeable="true"> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.datatools.sqltools.result.ui"/> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.datatools.sqltools.result.internal.ui.view.ResultsView"/> <tags>View</tags> <tags>categoryTag:Data Management</tags> </sharedElements> - <trimBars xmi:id="_3WCfk2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.main.toolbar"> - <children xsi:type="menu:ToolBar" xmi:id="_3WCflGNQEeidIdhNuvomDQ" elementId="group.file" toBeRendered="false"> + <trimBars xmi:id="_akBTEF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.main.toolbar"> + <children xsi:type="menu:ToolBar" xmi:id="_aouz8F2-EeiwQNQmo1Li3A" elementId="group.file" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_3WCflWNQEeidIdhNuvomDQ" elementId="group.file" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_aouz8V2-EeiwQNQmo1Li3A" elementId="group.file" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCflmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.workbench.file"> + <children xsi:type="menu:ToolBar" xmi:id="_aowCEF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.workbench.file"> <tags>Draggable</tags> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfl2NQEeidIdhNuvomDQ" elementId="new.group"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfmGNQEeidIdhNuvomDQ" elementId="newWizardDropDown"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfmWNQEeidIdhNuvomDQ" elementId="new.ext" visible="false"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfmmNQEeidIdhNuvomDQ" elementId="save.group" visible="false"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfm2NQEeidIdhNuvomDQ" elementId="save"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfnGNQEeidIdhNuvomDQ" elementId="saveAll"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfnWNQEeidIdhNuvomDQ" elementId="save.ext" visible="false"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:HandledToolItem" xmi:id="_3WCfnmNQEeidIdhNuvomDQ" elementId="print" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.png" tooltip="Print" command="_3WEVoWNQEeidIdhNuvomDQ"/> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfn2NQEeidIdhNuvomDQ" elementId="print.ext" visible="false"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfoGNQEeidIdhNuvomDQ" elementId="build.group"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfoWNQEeidIdhNuvomDQ" elementId="build.ext" visible="false"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfomNQEeidIdhNuvomDQ" elementId="additions"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCfo2NQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.wizards.actions.NewDesignerTypeDropDownAction"> - <tags>Opaque</tags> - </children> + <children xsi:type="menu:HandledToolItem" xmi:id="_s_gzMGM-EeidIdhNuvomDQ" elementId="print" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.png" tooltip="Print" command="_aL01x12-EeiwQNQmo1Li3A"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCfpGNQEeidIdhNuvomDQ" elementId="additions" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_aowpIF2-EeiwQNQmo1Li3A" elementId="additions" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_3WCfpWNQEeidIdhNuvomDQ" elementId="additions" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_aowpIV2-EeiwQNQmo1Li3A" elementId="additions" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCf5GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_-XWMgF2-EeiJcJeni346Cg" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf5WNQEeidIdhNuvomDQ" elementId="JavaWizards"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf5mNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard" visible="false"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf52NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf6GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"> - <tags>Opaque</tags> - </children> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCf6WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.actionSet.presentation"> + <children xsi:type="menu:ToolBar" xmi:id="_BWsSgF2_EeiJcJeni346Cg" elementId="org.eclipse.ui.edit.text.actionSet.presentation"> <tags>Draggable</tags> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf6mNQEeidIdhNuvomDQ" elementId="Presentation"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf62NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf7GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf7WNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.java.ui.editor.folding.auto"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf7mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleWordWrap"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf72NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf8GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf8WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" visible="false"> - <tags>Opaque</tags> - </children> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCf8mNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.launchActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_a8grkF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.launchActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf82NQEeidIdhNuvomDQ" elementId="debug"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf9GNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf9WNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf9mNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.actions.CoverageDropDownAction"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf92NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"> - <tags>Opaque</tags> - </children> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCf-GNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" visible="false"> + <children xsi:type="menu:ToolBar" xmi:id="_a77cwF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" visible="false"> <tags>Draggable</tags> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCf-WNQEeidIdhNuvomDQ" elementId="org.eclipse.search.searchActionSet"> + <children xsi:type="menu:ToolBar" xmi:id="_a8O-wF2-EeiwQNQmo1Li3A" elementId="org.eclipse.search.searchActionSet"> <tags>Draggable</tags> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf-mNQEeidIdhNuvomDQ" elementId="Search"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf-2NQEeidIdhNuvomDQ" elementId="openType"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf_GNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.openTask"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCf_WNQEeidIdhNuvomDQ" elementId="org.eclipse.search.OpenSearchDialogPage"> - <tags>Opaque</tags> - </children> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCf_mNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" visible="false"> + <children xsi:type="menu:ToolBar" xmi:id="_a8D_oF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" visible="false"> <tags>Draggable</tags> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCf_2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.ws.explorer.explorer" visible="false"> + <children xsi:type="menu:ToolBar" xmi:id="_a8ZW0F2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.ws.explorer.explorer" visible="false"> <tags>Draggable</tags> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCgAGNQEeidIdhNuvomDQ" elementId="group.nav" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_aowpIl2-EeiwQNQmo1Li3A" elementId="group.nav" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_3WCgAWNQEeidIdhNuvomDQ" elementId="group.nav" toBeRendered="false"/> - </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCgAmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.workbench.navigate"> - <tags>Draggable</tags> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgA2NQEeidIdhNuvomDQ" elementId="history.group"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgBGNQEeidIdhNuvomDQ" elementId="group.application" visible="false"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgBWNQEeidIdhNuvomDQ" elementId="backardHistory"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgBmNQEeidIdhNuvomDQ" elementId="forwardHistory"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgB2NQEeidIdhNuvomDQ" elementId="pin.group"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:HandledToolItem" xmi:id="_3WCgCGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.pinEditor" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.png" tooltip="Pin Editor" type="Check" command="_3WEVRGNQEeidIdhNuvomDQ"/> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgCWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgCmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgC2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"> - <tags>Opaque</tags> - </children> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_aowpI12-EeiwQNQmo1Li3A" elementId="group.nav" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCgDGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.CompilationUnitEditor" visible="false"> + <children xsi:type="menu:ToolBar" xmi:id="_aowpJF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.workbench.navigate"> <tags>Draggable</tags> + <children xsi:type="menu:HandledToolItem" xmi:id="_s_jPcGM-EeidIdhNuvomDQ" elementId="org.eclipse.ui.window.pinEditor" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.png" tooltip="Pin Editor" type="Check" command="_aL0Oq12-EeiwQNQmo1Li3A"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCgDWNQEeidIdhNuvomDQ" elementId="group.editor" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_aowpJV2-EeiwQNQmo1Li3A" elementId="group.editor" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_3WCgDmNQEeidIdhNuvomDQ" elementId="group.editor" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_aowpJl2-EeiwQNQmo1Li3A" elementId="group.editor" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCgD2NQEeidIdhNuvomDQ" elementId="group.help" toBeRendered="false"> + <children xsi:type="menu:ToolBar" xmi:id="_aowpJ12-EeiwQNQmo1Li3A" elementId="group.help" toBeRendered="false"> <tags>toolbarSeparator</tags> - <children xsi:type="menu:ToolBarSeparator" xmi:id="_3WCgEGNQEeidIdhNuvomDQ" elementId="group.help" toBeRendered="false"/> + <children xsi:type="menu:ToolBarSeparator" xmi:id="_aowpKF2-EeiwQNQmo1Li3A" elementId="group.help" toBeRendered="false"/> </children> - <children xsi:type="menu:ToolBar" xmi:id="_3WCgEWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.workbench.help" visible="false"> + <children xsi:type="menu:ToolBar" xmi:id="_aowpKV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.workbench.help" visible="false"> <tags>Draggable</tags> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgEmNQEeidIdhNuvomDQ" elementId="group.help"> - <tags>Opaque</tags> - </children> - <children xsi:type="menu:DirectToolItem" xmi:id="_3WCgE2NQEeidIdhNuvomDQ" elementId="group.application" visible="false"> - <tags>Opaque</tags> - </children> </children> - <children xsi:type="menu:ToolControl" xmi:id="_3WCgFGNQEeidIdhNuvomDQ" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"> + <children xsi:type="menu:ToolControl" xmi:id="_avKMEF2-EeiwQNQmo1Li3A" 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="_3WCgGGNQEeidIdhNuvomDQ" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher"> + <children xsi:type="menu:ToolControl" xmi:id="_avLaMF2-EeiwQNQmo1Li3A" 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> </trimBars> - <trimBars xmi:id="_3WCgH2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.trim.status" side="Bottom"> - <children xsi:type="menu:ToolControl" xmi:id="_3WCgIGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.StatusLine" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> + <trimBars xmi:id="_avXncF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.trim.status" side="Bottom"> + <children xsi:type="menu:ToolControl" xmi:id="_ave8MF2-EeiwQNQmo1Li3A" 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="_3WCgIWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.HeapStatus" toBeRendered="false" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> + <children xsi:type="menu:ToolControl" xmi:id="_avotMF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.HeapStatus" toBeRendered="false" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> <tags>Draggable</tags> </children> - <children xsi:type="menu:ToolControl" xmi:id="_3WCgImNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> + <children xsi:type="menu:ToolControl" xmi:id="_av7oIF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"> <tags>Draggable</tags> </children> </trimBars> - <trimBars xmi:id="_3WCgKmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left"> - <children xsi:type="menu:ToolControl" xmi:id="_3WCgK2NQEeidIdhNuvomDQ" 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"> + <trimBars xmi:id="_awV30F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left"> + <children xsi:type="menu:ToolControl" xmi:id="_bIeD8F2-EeiwQNQmo1Li3A" 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="_3WCgLGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.trim.vertical2" side="Right"/> + <trimBars xmi:id="_awWe4F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.trim.vertical2" side="Right"/> </children> - <bindingTables xmi:id="_3WCgLWNQEeidIdhNuvomDQ" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_3WDFR2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WCgLmNQEeidIdhNuvomDQ" keySequence="ALT+F11" command="_3WES1WNQEeidIdhNuvomDQ"> + <bindingTables xmi:id="_aLHq412-EeiwQNQmo1Li3A" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_aLHq5F2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEaV2-EeiwQNQmo1Li3A" keySequence="ALT+F11" command="_aLvWIF2-EeiwQNQmo1Li3A"> <tags>platform:win32</tags> </bindings> - <bindings xmi:id="_3WCgL2NQEeidIdhNuvomDQ" keySequence="SHIFT+INSERT" command="_3WESgGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgMGNQEeidIdhNuvomDQ" keySequence="ALT+PAGE_UP" command="_3WEUOmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgMWNQEeidIdhNuvomDQ" keySequence="ALT+PAGE_DOWN" command="_3WEVB2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgMmNQEeidIdhNuvomDQ" keySequence="SHIFT+DEL" command="_3WETjWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgM2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+SPACE" command="_3WETYWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgNGNQEeidIdhNuvomDQ" keySequence="CTRL+SPACE" command="_3WEVaWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgNWNQEeidIdhNuvomDQ" keySequence="CTRL+A" command="_3WET92NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgNmNQEeidIdhNuvomDQ" keySequence="CTRL+C" command="_3WEUZmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgN2NQEeidIdhNuvomDQ" keySequence="CTRL+1" command="_3WETOGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgOGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+I" command="_3WETGmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgOWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+L" command="_3WEV4mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgOmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+D" command="_3WEWEGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgO2NQEeidIdhNuvomDQ" keySequence="CTRL+X" command="_3WETjWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgPGNQEeidIdhNuvomDQ" keySequence="CTRL+Y" command="_3WEUKmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgPWNQEeidIdhNuvomDQ" keySequence="CTRL+Z" command="_3WEThWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgPmNQEeidIdhNuvomDQ" keySequence="CTRL+V" command="_3WESgGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgP2NQEeidIdhNuvomDQ" keySequence="ALT+CTRL+SHIFT+F9" command="_3WET7mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgQGNQEeidIdhNuvomDQ" keySequence="CTRL+INSERT" command="_3WEUZmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgQWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+F1" command="_3WES7mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgQmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+F2" command="_3WEU6WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgQ2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+F3" command="_3WEVrGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgRGNQEeidIdhNuvomDQ" keySequence="CTRL+F10" command="_3WESqWNQEeidIdhNuvomDQ"/> + <bindings xmi:id="_aMaEcF2-EeiwQNQmo1Li3A" keySequence="SHIFT+INSERT" command="_aLuvAF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarcV2-EeiwQNQmo1Li3A" keySequence="ALT+PAGE_UP" command="_aLyZdV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSdV2-EeiwQNQmo1Li3A" keySequence="ALT+PAGE_DOWN" command="_aLzns12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSgV2-EeiwQNQmo1Li3A" keySequence="SHIFT+DEL" command="_aLxLP12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5k12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+SPACE" command="_aLwkR12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgm12-EeiwQNQmo1Li3A" keySequence="CTRL+SPACE" command="_aL01j12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduv12-EeiwQNQmo1Li3A" keySequence="CTRL+A" command="_aLxybV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduyF2-EeiwQNQmo1Li3A" keySequence="CTRL+C" command="_aLzAWl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe83V2-EeiwQNQmo1Li3A" keySequence="CTRL+1" command="_aLwkHl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK-12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+I" command="_aLv9NV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgLAl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+L" command="_aL1cq12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZHF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+D" command="_aL1c2V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMinMF2-EeiwQNQmo1Li3A" keySequence="CTRL+X" command="_aLxLP12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMinM12-EeiwQNQmo1Li3A" keySequence="CTRL+Y" command="_aLyZZV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMinNl2-EeiwQNQmo1Li3A" keySequence="CTRL+Z" command="_aLxLN12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDcl2-EeiwQNQmo1Li3A" keySequence="CTRL+V" command="_aLuvAF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRlV2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+SHIFT+F9" command="_aLxyZF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRmV2-EeiwQNQmo1Li3A" keySequence="CTRL+INSERT" command="_aLzAWl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4q12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+F1" command="_aLv9CV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4rF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+F2" command="_aLznlV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4rV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+F3" command="_aL010l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU7l2-EeiwQNQmo1Li3A" keySequence="CTRL+F10" command="_aLvV9F2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WCgRWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.textEditorScope" bindingContext="_3WDFTGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WCgRmNQEeidIdhNuvomDQ" keySequence="END" command="_3WEVyGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgR2NQEeidIdhNuvomDQ" keySequence="INSERT" command="_3WEUqmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgSGNQEeidIdhNuvomDQ" keySequence="F2" command="_3WETQ2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgSWNQEeidIdhNuvomDQ" keySequence="HOME" command="_3WEV82NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgSmNQEeidIdhNuvomDQ" keySequence="SHIFT+F12" command="_3WEVuGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgS2NQEeidIdhNuvomDQ" keySequence="SHIFT+END" command="_3WET2WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgTGNQEeidIdhNuvomDQ" keySequence="SHIFT+HOME" command="_3WETs2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgTWNQEeidIdhNuvomDQ" keySequence="ALT+ARROW_UP" command="_3WEWVGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgTmNQEeidIdhNuvomDQ" keySequence="ALT+ARROW_DOWN" command="_3WEVE2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgT2NQEeidIdhNuvomDQ" keySequence="F12" command="_3WEUV2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgUGNQEeidIdhNuvomDQ" keySequence="CTRL+BS" command="_3WESP2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgUWNQEeidIdhNuvomDQ" keySequence="CTRL++" command="_3WEU3WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgUmNQEeidIdhNuvomDQ" keySequence="CTRL+-" command="_3WETzGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgU2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+CR" command="_3WEVq2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgVGNQEeidIdhNuvomDQ" keySequence="CTRL+J" command="_3WESsWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgVWNQEeidIdhNuvomDQ" keySequence="CTRL+K" command="_3WEVAWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgVmNQEeidIdhNuvomDQ" keySequence="CTRL+L" command="_3WEVgmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgV2NQEeidIdhNuvomDQ" keySequence="CTRL+D" command="_3WESwmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgWGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+X" command="_3WEUb2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgWWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+Y" command="_3WETxmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgWmNQEeidIdhNuvomDQ" keySequence="CTRL+=" command="_3WEU3WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgW2NQEeidIdhNuvomDQ" keySequence="ALT+/" command="_3WEV-GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgXGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+Q" command="_3WETImNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgXWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+A" command="_3WEUiWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgXmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Y" command="_3WESNmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgX2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+J" command="_3WETE2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgYGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+K" command="_3WES5mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgYWNQEeidIdhNuvomDQ" keySequence="SHIFT+CR" command="_3WEV8WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgYmNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+J" command="_3WETMGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgY2NQEeidIdhNuvomDQ" keySequence="CTRL+DEL" command="_3WETfmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgZGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+DEL" command="_3WEVcGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgZWNQEeidIdhNuvomDQ" keySequence="CTRL+END" command="_3WEVGGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgZmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_3WEVNWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgZ2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_3WEUrGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgaGNQEeidIdhNuvomDQ" keySequence="CTRL+ARROW_UP" command="_3WES62NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgaWNQEeidIdhNuvomDQ" keySequence="CTRL+ARROW_DOWN" command="_3WEWamNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgamNQEeidIdhNuvomDQ" keySequence="CTRL+ARROW_LEFT" command="_3WEUYWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCga2NQEeidIdhNuvomDQ" keySequence="CTRL+ARROW_RIGHT" command="_3WETH2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgbGNQEeidIdhNuvomDQ" keySequence="CTRL+HOME" command="_3WESfmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgbWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+INSERT" command="_3WETAWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgbmNQEeidIdhNuvomDQ" keySequence="CTRL+NUMPAD_MULTIPLY" command="_3WEVK2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgb2NQEeidIdhNuvomDQ" keySequence="CTRL+NUMPAD_ADD" command="_3WEWFWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgcGNQEeidIdhNuvomDQ" keySequence="CTRL+NUMPAD_SUBTRACT" command="_3WEVqWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgcWNQEeidIdhNuvomDQ" keySequence="CTRL+NUMPAD_DIVIDE" command="_3WES8GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgcmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_3WET3WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgc2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_3WETB2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgdGNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+ARROW_UP" command="_3WEWKGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgdWNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+ARROW_DOWN" command="_3WEUAmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgdmNQEeidIdhNuvomDQ" keySequence="CTRL+F10" command="_3WEVpmNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMVy4F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.textEditorScope" bindingContext="_aL5uAl2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMZdQF2-EeiwQNQmo1Li3A" keySequence="END" command="_aL1ckV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEUF2-EeiwQNQmo1Li3A" keySequence="INSERT" command="_aLzAnl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEVV2-EeiwQNQmo1Li3A" keySequence="F2" command="_aLwkKV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEal2-EeiwQNQmo1Li3A" keySequence="HOME" command="_aL1cvF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEa12-EeiwQNQmo1Li3A" keySequence="SHIFT+F12" command="_aL013l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEbF2-EeiwQNQmo1Li3A" keySequence="SHIFT+END" command="_aLxyT12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarZF2-EeiwQNQmo1Li3A" keySequence="SHIFT+HOME" command="_aLxLZV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaral2-EeiwQNQmo1Li3A" keySequence="ALT+ARROW_UP" command="_aL2Do12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarbF2-EeiwQNQmo1Li3A" keySequence="ALT+ARROW_DOWN" command="_aL0Oel2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbScV2-EeiwQNQmo1Li3A" keySequence="F12" command="_aLyZkl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5hF2-EeiwQNQmo1Li3A" keySequence="CTRL+BS" command="_aLuH2F2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgkF2-EeiwQNQmo1Li3A" keySequence="CTRL++" command="_aLzniV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgk12-EeiwQNQmo1Li3A" keySequence="CTRL+-" command="_aLxyQl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcglF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+CR" command="_aL010V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHr12-EeiwQNQmo1Li3A" keySequence="CTRL+J" command="_aLvV_F2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHsF2-EeiwQNQmo1Li3A" keySequence="CTRL+K" command="_aLznrV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHsl2-EeiwQNQmo1Li3A" keySequence="CTRL+L" command="_aL01qF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduzF2-EeiwQNQmo1Li3A" keySequence="CTRL+D" command="_aLvWDV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVw12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+X" command="_aLzAY12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVyF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+Y" command="_aLxyPF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeV0l2-EeiwQNQmo1Li3A" keySequence="CTRL+=" command="_aLzniV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe8012-EeiwQNQmo1Li3A" keySequence="ALT+/" command="_aL1cwV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe82l2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+Q" command="_aLv9PV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe83l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+A" command="_aLzAfV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK-l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Y" command="_aLtgwl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK_l2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+J" command="_aLv9Ll2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgLAV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+K" command="_aLv9AV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyBV2-EeiwQNQmo1Li3A" keySequence="SHIFT+CR" command="_aL1cul2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMinN12-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+J" command="_aLwkFl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDeV2-EeiwQNQmo1Li3A" keySequence="CTRL+DEL" command="_aLxLMF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlqgl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+DEL" command="_aL01ll2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRl12-EeiwQNQmo1Li3A" keySequence="CTRL+END" command="_aL0Of12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRm12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_aL0OnF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4pV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_aLzAoF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4pl2-EeiwQNQmo1Li3A" keySequence="CTRL+ARROW_UP" command="_aLv9Bl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4p12-EeiwQNQmo1Li3A" keySequence="CTRL+ARROW_DOWN" command="_aL2DuV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4qF2-EeiwQNQmo1Li3A" keySequence="CTRL+ARROW_LEFT" command="_aLzAVV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4qV2-EeiwQNQmo1Li3A" keySequence="CTRL+ARROW_RIGHT" command="_aLv9Ol2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4ql2-EeiwQNQmo1Li3A" keySequence="CTRL+HOME" command="_aLuu_l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMoGwV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+INSERT" command="_aLv9HF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMoGxF2-EeiwQNQmo1Li3A" keySequence="CTRL+NUMPAD_MULTIPLY" command="_aL0Okl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMoGx12-EeiwQNQmo1Li3A" keySequence="CTRL+NUMPAD_ADD" command="_aL1c3l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMoGyl2-EeiwQNQmo1Li3A" keySequence="CTRL+NUMPAD_SUBTRACT" command="_aL01z12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot0V2-EeiwQNQmo1Li3A" keySequence="CTRL+NUMPAD_DIVIDE" command="_aLv9C12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot312-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_aLxyU12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot4F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_aLv9Il2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU612-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+ARROW_UP" command="_aL1c8V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU7V2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+ARROW_DOWN" command="_aLxyeF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU712-EeiwQNQmo1Li3A" keySequence="CTRL+F10" command="_aL01zF2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WCgd2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" bindingContext="_3WDFfmNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WCgeGNQEeidIdhNuvomDQ" keySequence="INSERT" command="_3WETw2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgeWNQEeidIdhNuvomDQ" keySequence="F4" command="_3WESpGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgemNQEeidIdhNuvomDQ" keySequence="SHIFT+INSERT" command="_3WES22NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCge2NQEeidIdhNuvomDQ" keySequence="ALT+ARROW_UP" command="_3WEU8mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgfGNQEeidIdhNuvomDQ" keySequence="ALT+ARROW_DOWN" command="_3WETdmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgfWNQEeidIdhNuvomDQ" keySequence="CTRL+CR" command="_3WETcGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgfmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+I" command="_3WETzWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgf2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+C" command="_3WEUSWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCggGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+R" command="_3WET22NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCggWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+U" command="_3WEVJWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCggmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_UP" command="_3WEVXGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgg2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_DOWN" command="_3WET1WNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMZdQV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" bindingContext="_aL6VNl2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMZdQl2-EeiwQNQmo1Li3A" keySequence="INSERT" command="_aLxyOV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEYF2-EeiwQNQmo1Li3A" keySequence="F4" command="_aLuvJF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEbV2-EeiwQNQmo1Li3A" keySequence="SHIFT+INSERT" command="_aLvWJl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaraF2-EeiwQNQmo1Li3A" keySequence="ALT+ARROW_UP" command="_aLznnl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMara12-EeiwQNQmo1Li3A" keySequence="ALT+ARROW_DOWN" command="_aLxLKF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5iV2-EeiwQNQmo1Li3A" keySequence="CTRL+CR" command="_aLxLIl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVxV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+I" command="_aLxyQ12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj5V2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+C" command="_aLyZhF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZEV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+R" command="_aLxyUV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAI12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+U" command="_aL0OjF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4sF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_UP" command="_aL01gl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnftV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_DOWN" command="_aLxyS12-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WCghGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" bindingContext="_3WDFbGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WCghWNQEeidIdhNuvomDQ" keySequence="F1" command="_3WEST2NQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMaEUV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" bindingContext="_aL6VOF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEUl2-EeiwQNQmo1Li3A" keySequence="F1" command="_aLuH6F2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WCghmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.contexts.window" bindingContext="_3WDFSGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WCgh2NQEeidIdhNuvomDQ" keySequence="F2" command="_3WESiWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgiGNQEeidIdhNuvomDQ" keySequence="F3" command="_3WETMmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgiWNQEeidIdhNuvomDQ" keySequence="F4" command="_3WESk2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgimNQEeidIdhNuvomDQ" keySequence="F5" command="_3WETq2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgi2NQEeidIdhNuvomDQ" keySequence="ALT+F7" command="_3WEUkWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgjGNQEeidIdhNuvomDQ" keySequence="SHIFT+F2" command="_3WEUwGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgjWNQEeidIdhNuvomDQ" keySequence="SHIFT+F5" command="_3WEUB2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgjmNQEeidIdhNuvomDQ" keySequence="ALT+F5" command="_3WET7WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgj2NQEeidIdhNuvomDQ" keySequence="ALT+ARROW_LEFT" command="_3WESrWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgkGNQEeidIdhNuvomDQ" keySequence="F11" command="_3WEWBGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgkWNQEeidIdhNuvomDQ" keySequence="ALT+ARROW_RIGHT" command="_3WETomNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgkmNQEeidIdhNuvomDQ" keySequence="F12" command="_3WEVbGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgk2NQEeidIdhNuvomDQ" keySequence="CTRL+BREAK" command="_3WESvWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCglGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X X" command="_3WEUf2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCglWNQEeidIdhNuvomDQ" keySequence="DEL" command="_3WES4GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCglmNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+X G" command="_3WEV_2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgl2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X A" command="_3WEShGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgmGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X E" command="_3WEU5WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgmWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X O" command="_3WEUwWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgmmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X Q" command="_3WETF2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgm2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X P" command="_3WEWHmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgnGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X R" command="_3WEUKGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgnWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X T" command="_3WET9GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgnmNQEeidIdhNuvomDQ" keySequence="SHIFT+DEL" command="_3WETXmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgn2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X J" command="_3WEVDGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgoGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+X M" command="_3WET_mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgoWNQEeidIdhNuvomDQ" keySequence="ALT+X" command="_3WEUUWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgomNQEeidIdhNuvomDQ" keySequence="ALT+V" command="_3WET_WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgo2NQEeidIdhNuvomDQ" keySequence="CTRL+," command="_3WEShmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgpGNQEeidIdhNuvomDQ" keySequence="CTRL+-" command="_3WEV5GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgpWNQEeidIdhNuvomDQ" keySequence="CTRL+." command="_3WEWLWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgpmNQEeidIdhNuvomDQ" keySequence="CTRL+#" command="_3WESqmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgp2NQEeidIdhNuvomDQ" keySequence="ALT+C" command="_3WETcmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgqGNQEeidIdhNuvomDQ" keySequence="CTRL+H" command="_3WEVaGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgqWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+D J" command="_3WEVO2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgqmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+D O" command="_3WEUbGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgq2NQEeidIdhNuvomDQ" keySequence="CTRL+M" command="_3WEVZGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgrGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+D Q" command="_3WEUD2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgrWNQEeidIdhNuvomDQ" keySequence="CTRL+N" command="_3WEWSGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgrmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+D P" command="_3WEVnGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgr2NQEeidIdhNuvomDQ" keySequence="ALT+CTRL+P" command="_3WES2GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgsGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+D E" command="_3WEWWWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgsWNQEeidIdhNuvomDQ" keySequence="CTRL+B" command="_3WESimNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgsmNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+T" command="_3WEU5mNQEeidIdhNuvomDQ"> + <bindingTables xmi:id="_aMaEU12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.contexts.window" bindingContext="_aLHq5V2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEVF2-EeiwQNQmo1Li3A" keySequence="F2" command="_aLuvCV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEWF2-EeiwQNQmo1Li3A" keySequence="F3" command="_aLwkGF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEX12-EeiwQNQmo1Li3A" keySequence="F4" command="_aLuvE12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEZl2-EeiwQNQmo1Li3A" keySequence="F5" command="_aLxLXV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEaF2-EeiwQNQmo1Li3A" keySequence="ALT+F7" command="_aLzAhV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarYV2-EeiwQNQmo1Li3A" keySequence="SHIFT+F2" command="_aLznbF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarY12-EeiwQNQmo1Li3A" keySequence="SHIFT+F5" command="_aLyZQl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarZV2-EeiwQNQmo1Li3A" keySequence="ALT+F5" command="_aLxyY12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarbV2-EeiwQNQmo1Li3A" keySequence="ALT+ARROW_LEFT" command="_aLvV-F2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarbl2-EeiwQNQmo1Li3A" keySequence="F11" command="_aL1czV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarcF2-EeiwQNQmo1Li3A" keySequence="ALT+ARROW_RIGHT" command="_aLxLVF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbScF2-EeiwQNQmo1Li3A" keySequence="F12" command="_aL01kl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSdF2-EeiwQNQmo1Li3A" keySequence="CTRL+BREAK" command="_aLvWCF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSdl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X X" command="_aLzAc12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSd12-EeiwQNQmo1Li3A" keySequence="DEL" command="_aLvWK12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSeF2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+X G" command="_aL1cyF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSeV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X A" command="_aLuvBF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSel2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X E" command="_aLznkV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSe12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X O" command="_aLznbV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSfF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X Q" command="_aLv9Ml2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSfV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X P" command="_aL1c512-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSfl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X R" command="_aLyZY12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSf12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X T" command="_aLxyal2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSgF2-EeiwQNQmo1Li3A" keySequence="SHIFT+DEL" command="_aLwkRF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMbSgl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X J" command="_aL0Oc12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5gF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+X M" command="_aLxydF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5gV2-EeiwQNQmo1Li3A" keySequence="ALT+X" command="_aLyZjF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5mV2-EeiwQNQmo1Li3A" keySequence="ALT+V" command="_aLxyc12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgkV2-EeiwQNQmo1Li3A" keySequence="CTRL+," command="_aLuvBl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgkl2-EeiwQNQmo1Li3A" keySequence="CTRL+-" command="_aL1crV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcglV2-EeiwQNQmo1Li3A" keySequence="CTRL+." command="_aL1c9l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgnF2-EeiwQNQmo1Li3A" keySequence="CTRL+#" command="_aLvV9V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHol2-EeiwQNQmo1Li3A" keySequence="ALT+C" command="_aLxLJF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHql2-EeiwQNQmo1Li3A" keySequence="CTRL+H" command="_aL01jl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHq12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+D J" command="_aL0Ool2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHsV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+D O" command="_aLzAYF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHs12-EeiwQNQmo1Li3A" keySequence="CTRL+M" command="_aL01il2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHtF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+D Q" command="_aLyZSl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdusV2-EeiwQNQmo1Li3A" keySequence="CTRL+N" command="_aL1dEV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduu12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+D P" command="_aL01wl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduvF2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+P" command="_aLvWI12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduwF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+D E" command="_aL2DqF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduwV2-EeiwQNQmo1Li3A" keySequence="CTRL+B" command="_aLuvCl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduyl2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+T" command="_aLznkl2-EeiwQNQmo1Li3A"> <tags>locale:hu</tags> </bindings> - <bindings xmi:id="_3WCgs2NQEeidIdhNuvomDQ" keySequence="ALT+CTRL+T" command="_3WEUYmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgtGNQEeidIdhNuvomDQ" keySequence="CTRL+E" command="_3WETfGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgtWNQEeidIdhNuvomDQ" keySequence="CTRL+F" command="_3WESzmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgtmNQEeidIdhNuvomDQ" keySequence="CTRL+G" command="_3WESQGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgt2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+H" command="_3WETdGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCguGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+I" command="_3WESq2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCguWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+J" command="_3WETeGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgumNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+L" command="_3WETNGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgu2NQEeidIdhNuvomDQ" keySequence="ALT+-" command="_3WEUemNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgvGNQEeidIdhNuvomDQ" keySequence="CTRL+=" command="_3WETpWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgvWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+M" command="_3WEWFmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgvmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+N" command="_3WEThmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgv2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+D R" command="_3WEUK2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgwGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+R" command="_3WEWcGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgwWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+D T" command="_3WESTmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgwmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+C" command="_3WEVb2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgw2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+S" command="_3WEU0GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgxGNQEeidIdhNuvomDQ" keySequence="CTRL+3" command="_3WETQmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgxWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+T" command="_3WETjGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgxmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+U" command="_3WES_2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgx2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+F" command="_3WEVt2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgyGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+V" command="_3WEV0GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgyWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+G" command="_3WEUx2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgymNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+W" command="_3WETi2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgy2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+D X" command="_3WEUHWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgzGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+H" command="_3WEUWWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgzWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Z" command="_3WEUU2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgzmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+N" command="_3WEUe2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCgz2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+O" command="_3WEWCmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg0GNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+P" command="_3WEU7WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg0WNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+A" command="_3WEVBWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg0mNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+B" command="_3WES52NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg02NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+R" command="_3WEUL2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg1GNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+S" command="_3WEUS2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg1WNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+T" command="_3WEUi2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg1mNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+E" command="_3WES-WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg12NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+V" command="_3WET3GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg2GNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+G" command="_3WEWQ2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg2WNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+W" command="_3WEWJ2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg2mNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+H" command="_3WESnWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg22NQEeidIdhNuvomDQ" keySequence="ALT+CR" command="_3WEVU2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg3GNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+D A" command="_3WEVhWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg3WNQEeidIdhNuvomDQ" keySequence="CTRL+_" command="_3WETZWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WCg3mNQEeidIdhNuvomDQ" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="true"/> + <bindings xmi:id="_aMduy12-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+T" command="_aLzAVl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduzV2-EeiwQNQmo1Li3A" keySequence="CTRL+E" command="_aLxLLl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduzl2-EeiwQNQmo1Li3A" keySequence="CTRL+F" command="_aLvWGV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVwF2-EeiwQNQmo1Li3A" keySequence="CTRL+G" command="_aLuH2V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVwl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+H" command="_aLxLJl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVxF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+I" command="_aLvV9l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVyV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+J" command="_aLxLKl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVzl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+L" command="_aLwkGl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeV0F2-EeiwQNQmo1Li3A" keySequence="ALT+-" command="_aLzAbl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeV0V2-EeiwQNQmo1Li3A" keySequence="CTRL+=" command="_aLxLV12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeV012-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+M" command="_aL1c312-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeV1V2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+N" command="_aLxLOF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe8312-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+D R" command="_aLyZZl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj4l2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+R" command="_aL2Dv12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj412-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+D T" command="_aLuH512-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj5F2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+C" command="_aL01lV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj6F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+S" command="_aLznfF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj6V2-EeiwQNQmo1Li3A" keySequence="CTRL+3" command="_aLwkKF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj7F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+T" command="_aLxLPl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj712-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+U" command="_aLv9Gl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj8V2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+F" command="_aL013V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK8F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+V" command="_aL1cmV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK8l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+G" command="_aLznc12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK9l2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+W" command="_aLxLPV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK912-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+D X" command="_aLyZWF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK-F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+H" command="_aLyZlF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK_12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Z" command="_aLyZjl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyBl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+N" command="_aLzAb12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyB12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+O" command="_aL1c012-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyC12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+P" command="_aLznmV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyDF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+A" command="_aLznsV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyEV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+B" command="_aLv9Al2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyE12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+R" command="_aLyZal2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZGV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+S" command="_aLyZhl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAIF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+T" command="_aLzAf12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAJl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+E" command="_aLv9FF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiALF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+V" command="_aLxyUl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAL12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+G" command="_aL1dDF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAMl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+W" command="_aL1c8F2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMinMV2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+H" command="_aLuvHV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMinOl2-EeiwQNQmo1Li3A" keySequence="ALT+CR" command="_aL0Oul2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMjOQV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+D A" command="_aL01q12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMj1UF2-EeiwQNQmo1Li3A" keySequence="CTRL+_" command="_aLwkS12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMj1UV2-EeiwQNQmo1Li3A" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="true"/> </bindings> - <bindings xmi:id="_3WCg32NQEeidIdhNuvomDQ" keySequence="CTRL+P" command="_3WEVoWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg4GNQEeidIdhNuvomDQ" keySequence="CTRL+Q" command="_3WEVsmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg4WNQEeidIdhNuvomDQ" keySequence="CTRL+S" command="_3WETzmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg4mNQEeidIdhNuvomDQ" keySequence="CTRL+U" command="_3WEUIGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg42NQEeidIdhNuvomDQ" keySequence="CTRL+W" command="_3WEUNWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg5GNQEeidIdhNuvomDQ" keySequence="CTRL+{" command="_3WETZWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WCg5WNQEeidIdhNuvomDQ" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="false"/> + <bindings xmi:id="_aMkcYF2-EeiwQNQmo1Li3A" keySequence="CTRL+P" command="_aL01x12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcYV2-EeiwQNQmo1Li3A" keySequence="CTRL+Q" command="_aL012F2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcZl2-EeiwQNQmo1Li3A" keySequence="CTRL+S" command="_aLxyRF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDcF2-EeiwQNQmo1Li3A" keySequence="CTRL+U" command="_aLyZW12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDdF2-EeiwQNQmo1Li3A" keySequence="CTRL+W" command="_aLyZcF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDdV2-EeiwQNQmo1Li3A" keySequence="CTRL+{" command="_aLwkS12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMlDdl2-EeiwQNQmo1Li3A" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="false"/> </bindings> - <bindings xmi:id="_3WCg5mNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+SHIFT+M" command="_3WEWBmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg52NQEeidIdhNuvomDQ" keySequence="CTRL+DEL" command="_3WEV6GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg6GNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+SHIFT+A" command="_3WEVFmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg6WNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E L" command="_3WESh2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg6mNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E N" command="_3WEWNWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg62NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E P" command="_3WESPGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg7GNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E R" command="_3WETJWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg7WNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E E" command="_3WESr2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg7mNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+SHIFT+T" command="_3WESqGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg72NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E G" command="_3WETk2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg8GNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E J" command="_3WESf2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WCg8WNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E T" command="_3WESpmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEAGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E S" command="_3WET-GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEAWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q H" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEAmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.cheatsheets.views.CheatSheetView"/> + <bindings xmi:id="_aMlDd12-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+SHIFT+M" command="_aL1cz12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDeF2-EeiwQNQmo1Li3A" keySequence="CTRL+DEL" command="_aL1csV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDel2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+SHIFT+A" command="_aL0OfV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDe12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E L" command="_aLuvB12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDfF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E N" command="_aL1c_l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDfV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E P" command="_aLuH1V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDfl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E R" command="_aLv9QF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDf12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E E" command="_aLvV-l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDgF2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+SHIFT+T" command="_aLvV812-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlqgF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E G" command="_aLxLRV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlqgV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E J" command="_aLuu_12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlqg12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E T" command="_aLvV8V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlqhF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E S" command="_aLxybl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlqhV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q H" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMlqhl2-EeiwQNQmo1Li3A" 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="_3WDEA2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q J" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEBGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/> + <bindings xmi:id="_aMlqh12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q J" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMlqiF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/> </bindings> - <bindings xmi:id="_3WDEBWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q L" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEBmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/> + <bindings xmi:id="_aMlqil2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q L" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMlqi12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/> </bindings> - <bindings xmi:id="_3WDEB2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q K" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDECGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.mylyn.tasks.ui.views.tasks"/> + <bindings xmi:id="_aMlqjF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q K" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMlqjV2-EeiwQNQmo1Li3A" 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="_3WDECWNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+SHIFT+ARROW_UP" command="_3WEUu2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDECmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q B" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEC2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/> + <bindings xmi:id="_aMlqjl2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+SHIFT+ARROW_UP" command="_aLznZ12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlqj12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q B" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMlqkF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/> </bindings> - <bindings xmi:id="_3WDEDGNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+SHIFT+ARROW_DOWN" command="_3WEWUGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEDWNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+SHIFT+ARROW_RIGHT" command="_3WEUpWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEDmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q D" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDED2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/> + <bindings xmi:id="_aMlqkV2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+SHIFT+ARROW_DOWN" command="_aL1dGV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlqkl2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+SHIFT+ARROW_RIGHT" command="_aLzAmV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRkF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q D" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMmRkV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/> </bindings> - <bindings xmi:id="_3WDEEGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q C" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEEWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/> + <bindings xmi:id="_aMmRk12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q C" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMmRlF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/> </bindings> - <bindings xmi:id="_3WDEEmNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+SHIFT+F12" command="_3WEWGGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEE2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_3WEUz2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEFGNQEeidIdhNuvomDQ" keySequence="CTRL+F4" command="_3WEUNWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEFWNQEeidIdhNuvomDQ" keySequence="CTRL+F6" command="_3WES2WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEFmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_3WETZ2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEF2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F7" command="_3WEWB2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEGGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F8" command="_3WETZGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEGWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F9" command="_3WET6mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEGmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F11" command="_3WEUT2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEG2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F12" command="_3WESXmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEHGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q X" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEHWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/> + <bindings xmi:id="_aMmRll2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+SHIFT+F12" command="_aL1c4V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRml2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_aLzne12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRn12-EeiwQNQmo1Li3A" keySequence="CTRL+F4" command="_aLyZcF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4o12-EeiwQNQmo1Li3A" keySequence="CTRL+F6" command="_aLvWJF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4pF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_aLwkTV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4rl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F7" command="_aL1c0F2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfsV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F8" command="_aLwkSl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfs12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F9" command="_aLxyYF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfvF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F11" command="_aLyZil2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfwl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F12" command="_aLuH912-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfw12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q X" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMoGwF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/> </bindings> - <bindings xmi:id="_3WDEHmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q Z" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEH2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/> + <bindings xmi:id="_aMoGwl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q Z" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMoGw12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/> </bindings> - <bindings xmi:id="_3WDEIGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q Y" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEIWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.sync.views.SynchronizeView"/> + <bindings xmi:id="_aMoGxV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q Y" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMoGxl2-EeiwQNQmo1Li3A" 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="_3WDEImNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F4" command="_3WETi2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEI2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F6" command="_3WEU2mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEJGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+F7" command="_3WEVGmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEJWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q P" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEJmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/> + <bindings xmi:id="_aMoGyV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F4" command="_aLxLPV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot0F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F6" command="_aLznhl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot0l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+F7" command="_aL0OgV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot012-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q P" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMot1F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/> </bindings> - <bindings xmi:id="_3WDEJ2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q O" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEKGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/> + <bindings xmi:id="_aMot1l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q O" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMot112-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/> </bindings> - <bindings xmi:id="_3WDEKWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q Q" command="_3WEU9WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEKmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q T" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEK2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/> + <bindings xmi:id="_aMot3l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q Q" command="_aLznoV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU4F2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q T" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMpU4V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/> </bindings> - <bindings xmi:id="_3WDELGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q S" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDELWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.search.ui.views.SearchView"/> + <bindings xmi:id="_aMpU412-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q S" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMpU5F2-EeiwQNQmo1Li3A" 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="_3WDELmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q V" command="_3WEU9WNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WDEL2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/> + <bindings xmi:id="_aMpU5V2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q V" command="_aLznoV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aMpU5l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/> </bindings> - <bindings xmi:id="_3WDEMGNQEeidIdhNuvomDQ" keySequence="CTRL+F7" command="_3WEUZ2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEMWNQEeidIdhNuvomDQ" keySequence="CTRL+F8" command="_3WETO2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEMmNQEeidIdhNuvomDQ" keySequence="CTRL+F9" command="_3WES_WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEM2NQEeidIdhNuvomDQ" keySequence="CTRL+F11" command="_3WEVzmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDENGNQEeidIdhNuvomDQ" keySequence="CTRL+F12" command="_3WES6mNQEeidIdhNuvomDQ"/> + <bindings xmi:id="_aMpU6V2-EeiwQNQmo1Li3A" keySequence="CTRL+F7" command="_aLzAW12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU6l2-EeiwQNQmo1Li3A" keySequence="CTRL+F8" command="_aLwkIV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU7F2-EeiwQNQmo1Li3A" keySequence="CTRL+F9" command="_aLv9GF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU8F2-EeiwQNQmo1Li3A" keySequence="CTRL+F11" command="_aL1cl12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU8V2-EeiwQNQmo1Li3A" keySequence="CTRL+F12" command="_aLv9BV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDENWNQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_3WDFZmNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDENmNQEeidIdhNuvomDQ" keySequence="F3" command="_3WESUWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEN2NQEeidIdhNuvomDQ" keySequence="SHIFT+F2" command="_3WEUm2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEOGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+O" command="_3WESSmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEOWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+R" command="_3WESkmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEOmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F" command="_3WEV8GNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMaEVl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_aL6VG12-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEV12-EeiwQNQmo1Li3A" keySequence="F3" command="_aLuH6l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarYF2-EeiwQNQmo1Li3A" keySequence="SHIFT+F2" command="_aLzAj12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe80F2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+O" command="_aLuH412-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyEl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+R" command="_aLuvEl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAJ12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F" command="_aL1cuV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEO2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.genericeditor.genericEditorContext" bindingContext="_3WDFaWNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEPGNQEeidIdhNuvomDQ" keySequence="F3" command="_3WEVs2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEPWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+G" command="_3WEVx2NQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMaEWV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.genericeditor.genericEditorContext" bindingContext="_aL6VKl2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEWl2-EeiwQNQmo1Li3A" keySequence="F3" command="_aL012V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAMF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+G" command="_aL1ckF2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEPmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_3WDFTmNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEP2NQEeidIdhNuvomDQ" keySequence="F3" command="_3WEVH2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEQGNQEeidIdhNuvomDQ" keySequence="F4" command="_3WEUBmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEQWNQEeidIdhNuvomDQ" keySequence="SHIFT+F2" command="_3WEVeGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEQmNQEeidIdhNuvomDQ" keySequence="CTRL+G" command="_3WEVA2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEQ2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+I" command="_3WEUmGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDERGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+J" command="_3WEUvGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDERWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+L" command="_3WEUFmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDERmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+M" command="_3WEVymNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDER2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+C" command="_3WETVmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDESGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+U" command="_3WETHmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDESWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+H" command="_3WEWbWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDESmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Z" command="_3WET7GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDES2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+O" command="_3WESw2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDETGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+R" command="_3WEU1WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDETWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+S" command="_3WEUy2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDETmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+T" command="_3WES5WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDET2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+V" command="_3WETIWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEUGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+G" command="_3WEUjmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEUWNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+H" command="_3WEVXWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEUmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q J" command="_3WEV3WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEU2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q D" command="_3WEVFGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEVGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q P" command="_3WEU32NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEVWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+Q T" command="_3WEUuGNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMaEW12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_aL6VOl2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEXF2-EeiwQNQmo1Li3A" keySequence="F3" command="_aL0Ohl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEYV2-EeiwQNQmo1Li3A" keySequence="F4" command="_aLyZQV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarYl2-EeiwQNQmo1Li3A" keySequence="SHIFT+F2" command="_aL01nl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVwV2-EeiwQNQmo1Li3A" keySequence="CTRL+G" command="_aLznr12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVx12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+I" command="_aLzAjF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVyl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+J" command="_aLznaF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVz12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+L" command="_aLyZUV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeV1F2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+M" command="_aL1ck12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj512-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+C" command="_aLwkPF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj8F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+U" command="_aLv9OV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK-V2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+H" command="_aL2DvF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgLAF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Z" command="_aLxyYl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyCl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+O" command="_aLvWDl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZE12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+R" command="_aLzngV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZG12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+S" command="_aLznd12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAIV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+T" command="_aLv9AF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiALl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+V" command="_aLv9PF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAMV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+G" command="_aLzAgl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMinMl2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+H" command="_aL01g12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlqiV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q J" command="_aL1cpl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRkl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q D" command="_aL0Oe12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot1V2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q P" command="_aLzni12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU4l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+Q T" command="_aLznZF2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEVmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_3WDFU2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEV2NQEeidIdhNuvomDQ" keySequence="F3" command="_3WEUh2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEWGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+/" command="_3WEUeWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEWWNQEeidIdhNuvomDQ" keySequence="CTRL+I" command="_3WEVpGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEWmNQEeidIdhNuvomDQ" keySequence="CTRL+O" command="_3WEUl2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEW2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+\" command="_3WEU6GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEXGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+P" command="_3WEUimNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEXWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+A" command="_3WEWa2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEXmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+C" command="_3WEV7mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEX2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F" command="_3WEWRGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEYGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+>" command="_3WEVhmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEYWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_UP" command="_3WEVDmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEYmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_DOWN" command="_3WEVJ2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEY2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_LEFT" command="_3WESm2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEZGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_3WEUw2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEZWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+ARROW_UP" command="_3WETEWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEZmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_3WEUFWNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMaEXV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_aL6VEF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEXl2-EeiwQNQmo1Li3A" keySequence="F3" command="_aLzAe12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5kV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+/" command="_aLzAbV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHrl2-EeiwQNQmo1Li3A" keySequence="CTRL+I" command="_aL01yl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduul2-EeiwQNQmo1Li3A" keySequence="CTRL+O" command="_aLzAi12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVzV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+\" command="_aLznlF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe82V2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+P" command="_aLzAfl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyDV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+A" command="_aL2Dul2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZGF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+C" command="_aL1ct12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAK12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F" command="_aL1dDV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMjOQl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+>" command="_aL01rF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfsF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_UP" command="_aL0OdV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnft12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_DOWN" command="_aL0Ojl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfu12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_LEFT" command="_aLuvG12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfwF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_aLznb12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot2l2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+ARROW_UP" command="_aLv9LF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot3V2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_aLyZUF2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEZ2NQEeidIdhNuvomDQ" elementId="org.eclipse.buildship.ui.contexts.taskview" bindingContext="_3WDFf2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEaGNQEeidIdhNuvomDQ" keySequence="F5" command="_3WEV7WNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMaEYl2-EeiwQNQmo1Li3A" elementId="org.eclipse.buildship.ui.contexts.taskview" bindingContext="_aL6VO12-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEY12-EeiwQNQmo1Li3A" keySequence="F5" command="_aL1ctl2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEaWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.debugging" bindingContext="_3WDFeGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEamNQEeidIdhNuvomDQ" keySequence="F5" command="_3WESmGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEa2NQEeidIdhNuvomDQ" keySequence="F6" command="_3WET4WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEbGNQEeidIdhNuvomDQ" keySequence="F7" command="_3WEWNmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEbWNQEeidIdhNuvomDQ" keySequence="F8" command="_3WEUo2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEbmNQEeidIdhNuvomDQ" keySequence="CTRL+R" command="_3WEUamNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEb2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+3" command="_3WESlGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEcGNQEeidIdhNuvomDQ" keySequence="CTRL+F2" command="_3WEVdGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEcWNQEeidIdhNuvomDQ" keySequence="CTRL+F5" command="_3WEV_mNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMaEZF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.debugging" bindingContext="_aL6VLF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEZV2-EeiwQNQmo1Li3A" keySequence="F5" command="_aLuvGF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaEZ12-EeiwQNQmo1Li3A" keySequence="F6" command="_aLxyV12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarZl2-EeiwQNQmo1Li3A" keySequence="F7" command="_aL1c_12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarZ12-EeiwQNQmo1Li3A" keySequence="F8" command="_aLzAl12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcZF2-EeiwQNQmo1Li3A" keySequence="CTRL+R" command="_aLzAXl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcZ12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+3" command="_aLuvFF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRnF2-EeiwQNQmo1Li3A" keySequence="CTRL+F2" command="_aL01ml2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRoF2-EeiwQNQmo1Li3A" keySequence="CTRL+F5" command="_aL1cx12-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEcmNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.EditContext" bindingContext="_3WDFSmNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEc2NQEeidIdhNuvomDQ" keySequence="SHIFT+INSERT" command="_3WETvWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEdGNQEeidIdhNuvomDQ" keySequence="ALT+ARROW_UP" command="_3WESPWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEdWNQEeidIdhNuvomDQ" keySequence="ALT+ARROW_RIGHT" command="_3WEWA2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEdmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+V" command="_3WETvWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEd2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+C" command="_3WEVSWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEeGNQEeidIdhNuvomDQ" keySequence="CTRL+INSERT" command="_3WEVSWNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMaEbl2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.EditContext" bindingContext="_aL5uAF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMaEb12-EeiwQNQmo1Li3A" keySequence="SHIFT+INSERT" command="_aLxyM12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMaraV2-EeiwQNQmo1Li3A" keySequence="ALT+ARROW_UP" command="_aLuH1l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMarb12-EeiwQNQmo1Li3A" keySequence="ALT+ARROW_RIGHT" command="_aL1czF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK8V2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+V" command="_aLxyM12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZFl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+C" command="_aL0OsF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRmF2-EeiwQNQmo1Li3A" keySequence="CTRL+INSERT" command="_aL0OsF2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEeWNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.xml.editorScope" bindingContext="_3WDFVGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEemNQEeidIdhNuvomDQ" keySequence="F12" command="_3WEUR2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEe2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+A" command="_3WEUDWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEfGNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+A" command="_3WEUDWNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMbScl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.xml.editorScope" bindingContext="_aL6VEV2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMbSc12-EeiwQNQmo1Li3A" keySequence="F12" command="_aLyZgl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyEF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+A" command="_aLyZSF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcY12-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+A" command="_aLyZSF2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEfWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" bindingContext="_3WDFUGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEfmNQEeidIdhNuvomDQ" keySequence="ALT+X" command="_3WEWXWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEf2NQEeidIdhNuvomDQ" keySequence="ALT+Q" command="_3WEVmWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEgGNQEeidIdhNuvomDQ" keySequence="ALT+S" command="_3WEUAWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEgWNQEeidIdhNuvomDQ" keySequence="CTRL+/" command="_3WESWGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEgmNQEeidIdhNuvomDQ" keySequence="ALT+C" command="_3WETTWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEg2NQEeidIdhNuvomDQ" keySequence="ALT+CTRL+X" command="_3WEULmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEhGNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+R" command="_3WEVzWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEhWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+P" command="_3WEVOGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEhmNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+D" command="_3WETd2NQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMb5gl2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" bindingContext="_aL5uCF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMb5g12-EeiwQNQmo1Li3A" keySequence="ALT+X" command="_aL2DrF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5lF2-EeiwQNQmo1Li3A" keySequence="ALT+Q" command="_aL01v12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5ll2-EeiwQNQmo1Li3A" keySequence="ALT+S" command="_aLxyd12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgll2-EeiwQNQmo1Li3A" keySequence="CTRL+/" command="_aLuH8V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHo12-EeiwQNQmo1Li3A" keySequence="ALT+C" command="_aLwkM12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHqV2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+X" command="_aLyZaV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduwl2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+R" command="_aL1cll2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe81F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+P" command="_aL0On12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkca12-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+D" command="_aLxLKV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEh2NQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_3WDFfWNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEiGNQEeidIdhNuvomDQ" keySequence="ALT+Y" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEiWNQEeidIdhNuvomDQ" keySequence="ALT+P" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEimNQEeidIdhNuvomDQ" keySequence="ALT+R" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEi2NQEeidIdhNuvomDQ" keySequence="ALT+S" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEjGNQEeidIdhNuvomDQ" keySequence="ALT+T" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEjWNQEeidIdhNuvomDQ" keySequence="ALT+V" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEjmNQEeidIdhNuvomDQ" keySequence="ALT+W" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEj2NQEeidIdhNuvomDQ" keySequence="ALT+H" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEkGNQEeidIdhNuvomDQ" keySequence="ALT+L" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEkWNQEeidIdhNuvomDQ" keySequence="ALT+N" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEkmNQEeidIdhNuvomDQ" keySequence="ALT+A" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEk2NQEeidIdhNuvomDQ" keySequence="ALT+C" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDElGNQEeidIdhNuvomDQ" keySequence="ALT+D" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDElWNQEeidIdhNuvomDQ" keySequence="ALT+E" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDElmNQEeidIdhNuvomDQ" keySequence="ALT+F" command="_3WEUd2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEl2NQEeidIdhNuvomDQ" keySequence="ALT+G" command="_3WEUd2NQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMb5hV2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_aL6VMl2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMb5hl2-EeiwQNQmo1Li3A" keySequence="ALT+Y" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5kl2-EeiwQNQmo1Li3A" keySequence="ALT+P" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5lV2-EeiwQNQmo1Li3A" keySequence="ALT+R" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5l12-EeiwQNQmo1Li3A" keySequence="ALT+S" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5mF2-EeiwQNQmo1Li3A" keySequence="ALT+T" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5ml2-EeiwQNQmo1Li3A" keySequence="ALT+V" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5m12-EeiwQNQmo1Li3A" keySequence="ALT+W" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgnV2-EeiwQNQmo1Li3A" keySequence="ALT+H" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgnl2-EeiwQNQmo1Li3A" keySequence="ALT+L" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgn12-EeiwQNQmo1Li3A" keySequence="ALT+N" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHoF2-EeiwQNQmo1Li3A" keySequence="ALT+A" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHpF2-EeiwQNQmo1Li3A" keySequence="ALT+C" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHpV2-EeiwQNQmo1Li3A" keySequence="ALT+D" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHpl2-EeiwQNQmo1Li3A" keySequence="ALT+E" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHp12-EeiwQNQmo1Li3A" keySequence="ALT+F" command="_aLzAa12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHqF2-EeiwQNQmo1Li3A" keySequence="ALT+G" command="_aLzAa12-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEmGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_3WDFeWNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEmWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+," command="_3WEVtmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEmmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+." command="_3WEVYmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEm2NQEeidIdhNuvomDQ" keySequence="CTRL+G" command="_3WEVY2NQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMb5h12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_aL6VLV2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMb5iF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+," command="_aL013F2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMb5jF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+." command="_aL01iF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduz12-EeiwQNQmo1Li3A" keySequence="CTRL+G" command="_aL01iV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEnGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_3WDFS2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEnWNQEeidIdhNuvomDQ" keySequence="CTRL+CR" command="_3WESpWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEnmNQEeidIdhNuvomDQ" keySequence="ALT+CR" command="_3WEUWGNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMb5il2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_aL5uAV2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMb5i12-EeiwQNQmo1Li3A" keySequence="CTRL+CR" command="_aLvV8F2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMinOV2-EeiwQNQmo1Li3A" keySequence="ALT+CR" command="_aLyZk12-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEn2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_3WDFUmNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEoGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+/" command="_3WEUIWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEoWNQEeidIdhNuvomDQ" keySequence="CTRL+/" command="_3WEUfWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEomNQEeidIdhNuvomDQ" keySequence="CTRL+I" command="_3WEToGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEo2NQEeidIdhNuvomDQ" keySequence="CTRL+O" command="_3WET-WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEpGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+\" command="_3WESxGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEpWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+O" command="_3WETgGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEpmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+P" command="_3WEVGWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEp2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+B" command="_3WEWWGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEqGNQEeidIdhNuvomDQ" keySequence="CTRL+2 R" command="_3WEVV2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEqWNQEeidIdhNuvomDQ" keySequence="CTRL+7" command="_3WEUfWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEqmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+M" command="_3WETRGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEq2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+C" command="_3WEUfWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDErGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+U" command="_3WEVQmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDErWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F" command="_3WEV8GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDErmNQEeidIdhNuvomDQ" keySequence="CTRL+T" command="_3WEUiGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEr2NQEeidIdhNuvomDQ" keySequence="CTRL+F3" command="_3WEWKmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEsGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_UP" command="_3WEUDmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEsWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_DOWN" command="_3WES7GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEsmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_LEFT" command="_3WETqWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEs2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_3WESvmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEtGNQEeidIdhNuvomDQ" keySequence="CTRL+2 M" command="_3WETrmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEtWNQEeidIdhNuvomDQ" keySequence="CTRL+2 L" command="_3WEStWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEtmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+ARROW_UP" command="_3WEUN2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEt2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_3WET-2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEuGNQEeidIdhNuvomDQ" keySequence="CTRL+2 F" command="_3WEWFGNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMb5jV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_aL5uC12-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMb5jl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+/" command="_aLyZXF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgl12-EeiwQNQmo1Li3A" keySequence="CTRL+/" command="_aLzAcV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHrF2-EeiwQNQmo1Li3A" keySequence="CTRL+I" command="_aLxLUl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdusl2-EeiwQNQmo1Li3A" keySequence="CTRL+O" command="_aLxyb12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVy12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+\" command="_aLvWD12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe80V2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+O" command="_aLxLMl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe81V2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+P" command="_aL0OgF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe84F2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+B" command="_aL2Dp12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj6l2-EeiwQNQmo1Li3A" keySequence="CTRL+2 R" command="_aL0Ovl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK812-EeiwQNQmo1Li3A" keySequence="CTRL+7" command="_aLzAcV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyAF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+M" command="_aLwkKl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZFF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+C" command="_aLzAcV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAIl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+U" command="_aL0OqV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAKF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F" command="_aL1cuV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcaV2-EeiwQNQmo1Li3A" keySequence="CTRL+T" command="_aLzAfF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRnV2-EeiwQNQmo1Li3A" keySequence="CTRL+F3" command="_aL1c812-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4r12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_UP" command="_aLyZSV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnftF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_DOWN" command="_aLv9B12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfuV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_LEFT" command="_aLxLW12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfvl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_aLvWCV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMoGyF2-EeiwQNQmo1Li3A" keySequence="CTRL+2 M" command="_aLxLYF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMoGy12-EeiwQNQmo1Li3A" keySequence="CTRL+2 L" command="_aLvWAF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot2F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+ARROW_UP" command="_aLyZcl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot212-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_aLxycV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU512-EeiwQNQmo1Li3A" keySequence="CTRL+2 F" command="_aL1c3V2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDEuWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_3WDFTWNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDEumNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+/" command="_3WEUFGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEu2NQEeidIdhNuvomDQ" keySequence="CTRL+/" command="_3WEUpGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEvGNQEeidIdhNuvomDQ" keySequence="CTRL+I" command="_3WET3mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEvWNQEeidIdhNuvomDQ" keySequence="CTRL+O" command="_3WESZmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEvmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+\" command="_3WES3mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEv2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+O" command="_3WETtWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEwGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+P" command="_3WEU0mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEwWNQEeidIdhNuvomDQ" keySequence="CTRL+2 R" command="_3WETR2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEwmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+T" command="_3WEUF2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEw2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+E" command="_3WEUUmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDExGNQEeidIdhNuvomDQ" keySequence="CTRL+7" command="_3WEUpGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDExWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+M" command="_3WESn2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDExmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+C" command="_3WEUpGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEx2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+U" command="_3WETimNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEyGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F" command="_3WESuWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEyWNQEeidIdhNuvomDQ" keySequence="CTRL+T" command="_3WEUvWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEymNQEeidIdhNuvomDQ" keySequence="CTRL+F3" command="_3WEUa2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEy2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_UP" command="_3WESjmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEzGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_DOWN" command="_3WEVP2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEzWNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_LEFT" command="_3WEV8mNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEzmNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_3WEU82NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDEz2NQEeidIdhNuvomDQ" keySequence="CTRL+2 L" command="_3WEWLGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE0GNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+ARROW_UP" command="_3WEWc2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE0WNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_3WETAGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE0mNQEeidIdhNuvomDQ" keySequence="CTRL+2 F" command="_3WETv2NQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMb5j12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_aL5uA12-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMb5kF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+/" command="_aLyZT12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMcgml2-EeiwQNQmo1Li3A" keySequence="CTRL+/" command="_aLzAmF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMdHrV2-EeiwQNQmo1Li3A" keySequence="CTRL+I" command="_aLxyVF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduuV2-EeiwQNQmo1Li3A" keySequence="CTRL+O" command="_aLuu5l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVzF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+\" command="_aLvWKV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe80l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+O" command="_aLxLZ12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMe82F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+P" command="_aLznfl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj612-EeiwQNQmo1Li3A" keySequence="CTRL+2 R" command="_aLwkLV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj7V2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+T" command="_aLyZUl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj7l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+E" command="_aLyZjV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK9V2-EeiwQNQmo1Li3A" keySequence="CTRL+7" command="_aLzAmF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyBF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+M" command="_aLuvH12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZF12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+C" command="_aLzAmF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAJV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+U" command="_aLxLPF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAKl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F" command="_aLvWBF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcal2-EeiwQNQmo1Li3A" keySequence="CTRL+T" command="_aLznaV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMmRnl2-EeiwQNQmo1Li3A" keySequence="CTRL+F3" command="_aLzAX12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMm4sV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_UP" command="_aLuvDl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnftl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_DOWN" command="_aL0Opl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnful2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_LEFT" command="_aL1cu12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfv12-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_aLznn12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMoGzF2-EeiwQNQmo1Li3A" keySequence="CTRL+2 L" command="_aL1c9V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot2V2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+ARROW_UP" command="_aL2Dwl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMot3F2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_aLv9G12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMpU6F2-EeiwQNQmo1Li3A" keySequence="CTRL+2 F" command="_aLxyNV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE02NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_3WDFb2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE1GNQEeidIdhNuvomDQ" keySequence="CTRL+/" command="_3WEUfWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE1WNQEeidIdhNuvomDQ" keySequence="CTRL+7" command="_3WEUfWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE1mNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+C" command="_3WEUfWNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMcgmF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_aL6VPl2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMcgmV2-EeiwQNQmo1Li3A" keySequence="CTRL+/" command="_aLzAcV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgK9F2-EeiwQNQmo1Li3A" keySequence="CTRL+7" command="_aLzAcV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZFV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+C" command="_aLzAcV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE12NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_3WDFcmNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE2GNQEeidIdhNuvomDQ" keySequence="CTRL+N" command="_3WEU4WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE2WNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+M" command="_3WET8WNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE2mNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+N" command="_3WEWGWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE22NQEeidIdhNuvomDQ" keySequence="CTRL+T" command="_3WETSGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE3GNQEeidIdhNuvomDQ" keySequence="CTRL+W" command="_3WEUsmNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMdHtV2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_aL5uB12-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMdusF2-EeiwQNQmo1Li3A" keySequence="CTRL+N" command="_aLznjV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMinOF2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+M" command="_aLxyZ12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMjOQF2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+N" command="_aL1c4l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcaF2-EeiwQNQmo1Li3A" keySequence="CTRL+T" command="_aLwkLl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDc12-EeiwQNQmo1Li3A" keySequence="CTRL+W" command="_aLzApl2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE3WNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.editors.task" bindingContext="_3WDFa2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE3mNQEeidIdhNuvomDQ" keySequence="CTRL+O" command="_3WEWImNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE32NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+I" command="_3WETzWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE4GNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+C" command="_3WEUSWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE4WNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+M" command="_3WESZWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE4mNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+R" command="_3WET22NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE42NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+S" command="_3WETkmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE5GNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+U" command="_3WEVJWNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMdus12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.editors.task" bindingContext="_aL6VN12-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMdutF2-EeiwQNQmo1Li3A" keySequence="CTRL+O" command="_aL1c612-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMeVxl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+I" command="_aLxyQ12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMfj5l2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+C" command="_aLyZhF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMgyA12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+M" command="_aLuu5V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZEl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+R" command="_aLxyUV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZGl2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+S" command="_aLxLRF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAJF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+U" command="_aL0OjF2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE5WNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" bindingContext="_3WDFbWNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE5mNQEeidIdhNuvomDQ" keySequence="CTRL+O" command="_3WESdmNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMdutV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" bindingContext="_aL6VOV2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMdutl2-EeiwQNQmo1Li3A" keySequence="CTRL+O" command="_aLuu9l2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE52NQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_3WDFaGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE6GNQEeidIdhNuvomDQ" keySequence="CTRL+O" command="_3WES1GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE6WNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F" command="_3WESvGNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMdut12-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_aL6VJ12-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMduuF2-EeiwQNQmo1Li3A" keySequence="CTRL+O" command="_aLvWH12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiAKV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F" command="_aLvWB12-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE6mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.serverViewScope" bindingContext="_3WDFd2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE62NQEeidIdhNuvomDQ" keySequence="ALT+CTRL+P" command="_3WEVIGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE7GNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+R" command="_3WEWMmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE7WNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+S" command="_3WETK2NQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE7mNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+D" command="_3WEVBmNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMduvV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.serverViewScope" bindingContext="_aL6VKV2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMduvl2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+P" command="_aL0Oh12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduw12-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+R" command="_aL1c-12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMduyV2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+S" command="_aLwkEV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcbF2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+D" command="_aLznsl2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE72NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_3WDFgGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE8GNQEeidIdhNuvomDQ" keySequence="CTRL+C" command="_3WETUWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE8WNQEeidIdhNuvomDQ" keySequence="CTRL+V" command="_3WEUbWNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMduxF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_aL6VP12-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMduxV2-EeiwQNQmo1Li3A" keySequence="CTRL+C" command="_aLwkN12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMlDcV2-EeiwQNQmo1Li3A" keySequence="CTRL+V" command="_aLzAYV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE8mNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_3WDFfGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE82NQEeidIdhNuvomDQ" keySequence="CTRL+C" command="_3WES2mNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMduxl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_aL6VMV2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMdux12-EeiwQNQmo1Li3A" keySequence="CTRL+C" command="_aLvWJV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE9GNQEeidIdhNuvomDQ" elementId="org.eclipse.core.runtime.xml" bindingContext="_3WDFWGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE9WNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+P" command="_3WEVbWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE9mNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+D" command="_3WEUH2NQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMe81l2-EeiwQNQmo1Li3A" elementId="org.eclipse.core.runtime.xml" bindingContext="_aL6VFV2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMe8112-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+P" command="_aL01k12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZHV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+D" command="_aLyZWl2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE92NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.classFileEditorScope" bindingContext="_3WDFUWNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE-GNQEeidIdhNuvomDQ" keySequence="CTRL+1" command="_3WEWPWNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMe8212-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.classFileEditorScope" bindingContext="_aL5uCV2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMe83F2-EeiwQNQmo1Li3A" keySequence="CTRL+1" command="_aL1dBl2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE-WNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_3WDFhGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE-mNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+B" command="_3WEWWGNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMfj4F2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_aL5uCl2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMfj4V2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+B" command="_aL2Dp12-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE-2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" bindingContext="_3WDFgmNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE_GNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+I" command="_3WEWIWNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMgK_F2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" bindingContext="_aL6VI12-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMgK_V2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+I" command="_aL1c6l2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDE_WNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" bindingContext="_3WDFX2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDE_mNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+M" command="_3WETVWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDE_2NQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+R" command="_3WEWHGNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDFAGNQEeidIdhNuvomDQ" keySequence="ALT+SHIFT+V" command="_3WET-mNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMgyAV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" bindingContext="_aL6VIF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMgyAl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+M" command="_aLwkO12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMhZEF2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+R" command="_aL1c5V2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMiALV2-EeiwQNQmo1Li3A" keySequence="ALT+SHIFT+V" command="_aLxycF2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDFAWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" bindingContext="_3WDFbmNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDFAmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+O" command="_3WESdmNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMgyCF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" bindingContext="_aL6VPF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMgyCV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+O" command="_aLuu9l2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDFA2NQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.java.editorScope" bindingContext="_3WDFT2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDFBGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+A" command="_3WEUDWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDFBWNQEeidIdhNuvomDQ" keySequence="ALT+CTRL+A" command="_3WEUDWNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMgyDl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.java.editorScope" bindingContext="_aL5uBF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMgyD12-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+A" command="_aLyZSF2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMkcYl2-EeiwQNQmo1Li3A" keySequence="ALT+CTRL+A" command="_aLyZSF2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDFBmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.console" bindingContext="_3WDFdGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDFB2NQEeidIdhNuvomDQ" keySequence="CTRL+Z" command="_3WEWJGNQEeidIdhNuvomDQ"> + <bindingTables xmi:id="_aMinNF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.console" bindingContext="_aL6VJF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMinNV2-EeiwQNQmo1Li3A" keySequence="CTRL+Z" command="_aL1c7V2-EeiwQNQmo1Li3A"> <tags>platform:win32</tags> </bindings> </bindingTables> - <bindingTables xmi:id="_3WDFCGNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.jsf.facesconfig.editorContext" bindingContext="_3WDFcGNQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDFCWNQEeidIdhNuvomDQ" keySequence="CTRL+F5" command="_3WEUkWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDFCmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F5" command="_3WEVGmNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMmRoV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.jsf.facesconfig.editorContext" bindingContext="_aL6VQF2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMm4oF2-EeiwQNQmo1Li3A" keySequence="CTRL+F5" command="_aLzAhV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMoGzV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F5" command="_aL0OgV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDFC2NQEeidIdhNuvomDQ" elementId="org.eclipse.jst.pagedesigner.editorContext" bindingContext="_3WDFZ2NQEeidIdhNuvomDQ"> - <bindings xmi:id="_3WDFDGNQEeidIdhNuvomDQ" keySequence="CTRL+F5" command="_3WEUkWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDFDWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F9" command="_3WET4GNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDFDmNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F10" command="_3WEWJWNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDFD2NQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F11" command="_3WEWAmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDFEGNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F12" command="_3WEWOmNQEeidIdhNuvomDQ"/> - <bindings xmi:id="_3WDFEWNQEeidIdhNuvomDQ" keySequence="CTRL+SHIFT+F5" command="_3WEVGmNQEeidIdhNuvomDQ"/> + <bindingTables xmi:id="_aMm4oV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.pagedesigner.editorContext" bindingContext="_aL6VHl2-EeiwQNQmo1Li3A"> + <bindings xmi:id="_aMm4ol2-EeiwQNQmo1Li3A" keySequence="CTRL+F5" command="_aLzAhV2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfsl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F9" command="_aLxyVl2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfuF2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F10" command="_aL1c7l2-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfvV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F11" command="_aL1cy12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMnfwV2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F12" command="_aL1dA12-EeiwQNQmo1Li3A"/> + <bindings xmi:id="_aMoGzl2-EeiwQNQmo1Li3A" keySequence="CTRL+SHIFT+F5" command="_aL0OgV2-EeiwQNQmo1Li3A"/> </bindingTables> - <bindingTables xmi:id="_3WDFEmNQEeidIdhNuvomDQ" bindingContext="_3WDFimNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFE2NQEeidIdhNuvomDQ" bindingContext="_3WDFi2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFFGNQEeidIdhNuvomDQ" bindingContext="_3WDFjGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFFWNQEeidIdhNuvomDQ" bindingContext="_3WDFjWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFFmNQEeidIdhNuvomDQ" bindingContext="_3WDFjmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFF2NQEeidIdhNuvomDQ" bindingContext="_3WDFj2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFGGNQEeidIdhNuvomDQ" bindingContext="_3WDFkGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFGWNQEeidIdhNuvomDQ" bindingContext="_3WDFkWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFGmNQEeidIdhNuvomDQ" bindingContext="_3WDFkmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFG2NQEeidIdhNuvomDQ" bindingContext="_3WDFk2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFHGNQEeidIdhNuvomDQ" bindingContext="_3WDFlGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFHWNQEeidIdhNuvomDQ" bindingContext="_3WDFlWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFHmNQEeidIdhNuvomDQ" bindingContext="_3WDFlmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFH2NQEeidIdhNuvomDQ" bindingContext="_3WDFl2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFIGNQEeidIdhNuvomDQ" bindingContext="_3WDFmGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFIWNQEeidIdhNuvomDQ" bindingContext="_3WDFmWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFImNQEeidIdhNuvomDQ" bindingContext="_3WDFmmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFI2NQEeidIdhNuvomDQ" bindingContext="_3WDFm2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFJGNQEeidIdhNuvomDQ" bindingContext="_3WDFnGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFJWNQEeidIdhNuvomDQ" bindingContext="_3WDFnWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFJmNQEeidIdhNuvomDQ" bindingContext="_3WDFnmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFJ2NQEeidIdhNuvomDQ" bindingContext="_3WDFn2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFKGNQEeidIdhNuvomDQ" bindingContext="_3WDFoGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFKWNQEeidIdhNuvomDQ" bindingContext="_3WDFoWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFKmNQEeidIdhNuvomDQ" bindingContext="_3WDFomNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFK2NQEeidIdhNuvomDQ" bindingContext="_3WDFo2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFLGNQEeidIdhNuvomDQ" bindingContext="_3WDFpGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFLWNQEeidIdhNuvomDQ" bindingContext="_3WDFpWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFLmNQEeidIdhNuvomDQ" bindingContext="_3WDFpmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFL2NQEeidIdhNuvomDQ" bindingContext="_3WDFp2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFMGNQEeidIdhNuvomDQ" bindingContext="_3WDFqGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFMWNQEeidIdhNuvomDQ" bindingContext="_3WDFqWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFMmNQEeidIdhNuvomDQ" bindingContext="_3WDFqmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFM2NQEeidIdhNuvomDQ" bindingContext="_3WDFq2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFNGNQEeidIdhNuvomDQ" bindingContext="_3WDFrGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFNWNQEeidIdhNuvomDQ" bindingContext="_3WDFrWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFNmNQEeidIdhNuvomDQ" bindingContext="_3WDFrmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFN2NQEeidIdhNuvomDQ" bindingContext="_3WDFr2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFOGNQEeidIdhNuvomDQ" bindingContext="_3WDFsGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFOWNQEeidIdhNuvomDQ" bindingContext="_3WDFsWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFOmNQEeidIdhNuvomDQ" bindingContext="_3WDFsmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFO2NQEeidIdhNuvomDQ" bindingContext="_3WDFs2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFPGNQEeidIdhNuvomDQ" bindingContext="_3WDFtGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFPWNQEeidIdhNuvomDQ" bindingContext="_3WDFtWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFPmNQEeidIdhNuvomDQ" bindingContext="_3WDFtmNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFP2NQEeidIdhNuvomDQ" bindingContext="_3WDFt2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFQGNQEeidIdhNuvomDQ" bindingContext="_3WDFuGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFQWNQEeidIdhNuvomDQ" bindingContext="_3WDFuWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFQmNQEeidIdhNuvomDQ" bindingContext="_3WDFumNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFQ2NQEeidIdhNuvomDQ" bindingContext="_3WDFu2NQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFRGNQEeidIdhNuvomDQ" bindingContext="_3WDFvGNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFRWNQEeidIdhNuvomDQ" bindingContext="_3WDFvWNQEeidIdhNuvomDQ"/> - <bindingTables xmi:id="_3WDFRmNQEeidIdhNuvomDQ" bindingContext="_3WDFvmNQEeidIdhNuvomDQ"/> - <rootContext xmi:id="_3WDFR2NQEeidIdhNuvomDQ" 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="_3WDFSGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open"> - <children xmi:id="_3WDFSWNQEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/> - <children xmi:id="_3WDFSmNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.EditContext" name="Terminal Control in Focus" description="Show modified keyboard shortcuts in context menu"/> - <children xmi:id="_3WDFS2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/> - <children xmi:id="_3WDFTGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context"> - <children xmi:id="_3WDFTWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context"> - <children xmi:id="_3WDFTmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/> + <bindingTables xmi:id="_ayi3QV2-EeiwQNQmo1Li3A" bindingContext="_ayi3QF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayi3Q12-EeiwQNQmo1Li3A" bindingContext="_ayi3Ql2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayjeUV2-EeiwQNQmo1Li3A" bindingContext="_ayjeUF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayjeU12-EeiwQNQmo1Li3A" bindingContext="_ayjeUl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayjeVV2-EeiwQNQmo1Li3A" bindingContext="_ayjeVF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayjeV12-EeiwQNQmo1Li3A" bindingContext="_ayjeVl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayjeWV2-EeiwQNQmo1Li3A" bindingContext="_ayjeWF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayjeW12-EeiwQNQmo1Li3A" bindingContext="_ayjeWl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aykFYV2-EeiwQNQmo1Li3A" bindingContext="_aykFYF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aykFY12-EeiwQNQmo1Li3A" bindingContext="_aykFYl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aykFZV2-EeiwQNQmo1Li3A" bindingContext="_aykFZF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aykFZ12-EeiwQNQmo1Li3A" bindingContext="_aykFZl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aykFaV2-EeiwQNQmo1Li3A" bindingContext="_aykFaF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aykscV2-EeiwQNQmo1Li3A" bindingContext="_aykscF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayksc12-EeiwQNQmo1Li3A" bindingContext="_aykscl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayksdV2-EeiwQNQmo1Li3A" bindingContext="_ayksdF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayksd12-EeiwQNQmo1Li3A" bindingContext="_ayksdl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aykseV2-EeiwQNQmo1Li3A" bindingContext="_aykseF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aykse12-EeiwQNQmo1Li3A" bindingContext="_ayksel2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aylTgV2-EeiwQNQmo1Li3A" bindingContext="_aylTgF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aylTg12-EeiwQNQmo1Li3A" bindingContext="_aylTgl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aylThV2-EeiwQNQmo1Li3A" bindingContext="_aylThF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aylTh12-EeiwQNQmo1Li3A" bindingContext="_aylThl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aylTiV2-EeiwQNQmo1Li3A" bindingContext="_aylTiF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aylTi12-EeiwQNQmo1Li3A" bindingContext="_aylTil2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aylTjV2-EeiwQNQmo1Li3A" bindingContext="_aylTjF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aylTj12-EeiwQNQmo1Li3A" bindingContext="_aylTjl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayl6kV2-EeiwQNQmo1Li3A" bindingContext="_ayl6kF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayl6k12-EeiwQNQmo1Li3A" bindingContext="_ayl6kl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayl6lV2-EeiwQNQmo1Li3A" bindingContext="_ayl6lF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayl6l12-EeiwQNQmo1Li3A" bindingContext="_ayl6ll2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayl6mV2-EeiwQNQmo1Li3A" bindingContext="_ayl6mF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayl6m12-EeiwQNQmo1Li3A" bindingContext="_ayl6ml2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_ayl6nV2-EeiwQNQmo1Li3A" bindingContext="_ayl6nF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aymhoV2-EeiwQNQmo1Li3A" bindingContext="_aymhoF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aymho12-EeiwQNQmo1Li3A" bindingContext="_aymhol2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aymhpV2-EeiwQNQmo1Li3A" bindingContext="_aymhpF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aymhp12-EeiwQNQmo1Li3A" bindingContext="_aymhpl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aymhqV2-EeiwQNQmo1Li3A" bindingContext="_aymhqF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aymhq12-EeiwQNQmo1Li3A" bindingContext="_aymhql2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aymhrV2-EeiwQNQmo1Li3A" bindingContext="_aymhrF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynIsV2-EeiwQNQmo1Li3A" bindingContext="_aynIsF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynIs12-EeiwQNQmo1Li3A" bindingContext="_aynIsl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynItV2-EeiwQNQmo1Li3A" bindingContext="_aynItF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynIt12-EeiwQNQmo1Li3A" bindingContext="_aynItl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynIuV2-EeiwQNQmo1Li3A" bindingContext="_aynIuF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynIu12-EeiwQNQmo1Li3A" bindingContext="_aynIul2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynIvV2-EeiwQNQmo1Li3A" bindingContext="_aynIvF2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynvwF2-EeiwQNQmo1Li3A" bindingContext="_aynIvl2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynvwl2-EeiwQNQmo1Li3A" bindingContext="_aynvwV2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynvxF2-EeiwQNQmo1Li3A" bindingContext="_aynvw12-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_aynvxl2-EeiwQNQmo1Li3A" bindingContext="_aynvxV2-EeiwQNQmo1Li3A"/> + <bindingTables xmi:id="_iJr7kV3MEeiR1ZWVQAxmCg" bindingContext="_iJr7kF3MEeiR1ZWVQAxmCg"/> + <rootContext xmi:id="_aLHq5F2-EeiwQNQmo1Li3A" 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="_aLHq5V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open"> + <children xmi:id="_aLHq5l2-EeiwQNQmo1Li3A" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/> + <children xmi:id="_aL5uAF2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.EditContext" name="Terminal Control in Focus" description="Show modified keyboard shortcuts in context menu"/> + <children xmi:id="_aL5uAV2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/> + <children xmi:id="_aL5uAl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context"> + <children xmi:id="_aL5uA12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context"> + <children xmi:id="_aL6VOl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/> </children> - <children xmi:id="_3WDFT2NQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.java.editorScope" name="WindowBuilder Java scope"/> - <children xmi:id="_3WDFUGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" name="Editing SQL" description="Editing SQL Context"/> - <children xmi:id="_3WDFUWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.classFileEditorScope" name="Browsing attached Java Source" description="Browsing attached Java Source Context"/> - <children xmi:id="_3WDFUmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/> - <children xmi:id="_3WDFU2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"> - <children xmi:id="_3WDFVGNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.xml.editorScope" name="WindowBuilder XML scope"/> - <children xmi:id="_3WDFVWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/> - <children xmi:id="_3WDFVmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/> - <children xmi:id="_3WDFV2NQEeidIdhNuvomDQ" elementId="org.eclipse.jst.jsp.core.jspsource" name="JSP Source" description="JSP Source"/> - <children xmi:id="_3WDFWGNQEeidIdhNuvomDQ" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/> - <children xmi:id="_3WDFWWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/> - <children xmi:id="_3WDFWmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/> - <children xmi:id="_3WDFW2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/> - <children xmi:id="_3WDFXGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/> - <children xmi:id="_3WDFXWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/> - <children xmi:id="_3WDFXmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/> - <children xmi:id="_3WDFX2NQEeidIdhNuvomDQ" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" name="Editing JSP Source" description="Editing JSP Source"/> - <children xmi:id="_3WDFYGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/> - <children xmi:id="_3WDFYWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.json.core.jsonsource" name="%scope.structured.text.editor.json.name" description="%scope.structured.text.editor.json.description"/> - <children xmi:id="_3WDFYmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/> - <children xmi:id="_3WDFY2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/> - <children xmi:id="_3WDFZGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/> - <children xmi:id="_3WDFZWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/> + <children xmi:id="_aL5uBF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.java.editorScope" name="WindowBuilder Java scope"/> + <children xmi:id="_aL5uCF2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" name="Editing SQL" description="Editing SQL Context"/> + <children xmi:id="_aL5uCV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.classFileEditorScope" name="Browsing attached Java Source" description="Browsing attached Java Source Context"/> + <children xmi:id="_aL5uC12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/> + <children xmi:id="_aL6VEF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"> + <children xmi:id="_aL6VEV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.xml.editorScope" name="WindowBuilder XML scope"/> + <children xmi:id="_aL6VEl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/> + <children xmi:id="_aL6VE12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/> + <children xmi:id="_aL6VFF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.jsp.core.jspsource" name="JSP Source" description="JSP Source"/> + <children xmi:id="_aL6VFV2-EeiwQNQmo1Li3A" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/> + <children xmi:id="_aL6VFl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/> + <children xmi:id="_aL6VF12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/> + <children xmi:id="_aL6VGF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/> + <children xmi:id="_aL6VGl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/> + <children xmi:id="_aL6VHF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/> + <children xmi:id="_aL6VH12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/> + <children xmi:id="_aL6VIF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" name="Editing JSP Source" description="Editing JSP Source"/> + <children xmi:id="_aL6VJl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/> + <children xmi:id="_aL6VK12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.json.core.jsonsource" name="%scope.structured.text.editor.json.name" description="%scope.structured.text.editor.json.description"/> + <children xmi:id="_aL6VM12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/> + <children xmi:id="_aL6VNV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/> + <children xmi:id="_aL6VPV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/> + <children xmi:id="_aL6VQV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/> </children> - <children xmi:id="_3WDFZmNQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/> - <children xmi:id="_3WDFZ2NQEeidIdhNuvomDQ" elementId="org.eclipse.jst.pagedesigner.editorContext" name="Using Web Page Editor" description="Key binding context when using the web page editor"/> - <children xmi:id="_3WDFaGNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/> - <children xmi:id="_3WDFaWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.genericeditor.genericEditorContext" name="in Generic Code Editor" description="When editing in the Generic Code Editor"/> - <children xmi:id="_3WDFamNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/> - <children xmi:id="_3WDFa2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.editors.task" name="In Tasks Editor"/> - <children xmi:id="_3WDFbGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"> - <children xmi:id="_3WDFbWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"/> - <children xmi:id="_3WDFbmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" name="Task Markup Editor Source Context"/> + <children xmi:id="_aL6VG12-EeiwQNQmo1Li3A" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/> + <children xmi:id="_aL6VHl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.pagedesigner.editorContext" name="Using Web Page Editor" description="Key binding context when using the web page editor"/> + <children xmi:id="_aL6VJ12-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/> + <children xmi:id="_aL6VKl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.genericeditor.genericEditorContext" name="in Generic Code Editor" description="When editing in the Generic Code Editor"/> + <children xmi:id="_aL6VNF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/> + <children xmi:id="_aL6VN12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.editors.task" name="In Tasks Editor"/> + <children xmi:id="_aL6VOF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"> + <children xmi:id="_aL6VOV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"/> + <children xmi:id="_aL6VPF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" name="Task Markup Editor Source Context"/> </children> - <children xmi:id="_3WDFb2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/> - <children xmi:id="_3WDFcGNQEeidIdhNuvomDQ" 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="_aL6VPl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/> + <children xmi:id="_aL6VQF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.jsf.facesconfig.editorContext" name="In Faces Config Editor" description="Key binding context when using the Faces Config Editor"/> </children> - <children xmi:id="_3WDFcWNQEeidIdhNuvomDQ" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/> - <children xmi:id="_3WDFcmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/> - <children xmi:id="_3WDFc2NQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.schemaobjecteditor.schemaediting" name="Schema Object Editor" description="Schema Object Editor"/> - <children xmi:id="_3WDFdGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/> - <children xmi:id="_3WDFdWNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" name="In Terminal View" description="Show modified keyboard shortcuts in context menu"/> - <children xmi:id="_3WDFdmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/> - <children xmi:id="_3WDFd2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/> - <children xmi:id="_3WDFeGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs"> - <children xmi:id="_3WDFeWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/> - <children xmi:id="_3WDFemNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xsl.debug.ui.context" name="XSLT Debugging" description="Context for debugging XSLT"/> - <children xmi:id="_3WDFe2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/> + <children xmi:id="_aL5uBV2-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/> + <children xmi:id="_aL5uB12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/> + <children xmi:id="_aL5uDF2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.schemaobjecteditor.schemaediting" name="Schema Object Editor" description="Schema Object Editor"/> + <children xmi:id="_aL6VJF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/> + <children xmi:id="_aL6VJV2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" name="In Terminal View" description="Show modified keyboard shortcuts in context menu"/> + <children xmi:id="_aL6VKF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/> + <children xmi:id="_aL6VKV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/> + <children xmi:id="_aL6VLF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs"> + <children xmi:id="_aL6VLV2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/> + <children xmi:id="_aL6VLl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xsl.debug.ui.context" name="XSLT Debugging" description="Context for debugging XSLT"/> + <children xmi:id="_aL6VL12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/> </children> - <children xmi:id="_3WDFfGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/> - <children xmi:id="_3WDFfWNQEeidIdhNuvomDQ" 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="_3WDFfmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" name="In Tasks View"/> - <children xmi:id="_3WDFf2NQEeidIdhNuvomDQ" 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="_3WDFgGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/> + <children xmi:id="_aL6VMV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/> + <children xmi:id="_aL6VMl2-EeiwQNQmo1Li3A" 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="_aL6VNl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" name="In Tasks View"/> + <children xmi:id="_aL6VO12-EeiwQNQmo1Li3A" 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="_aL6VP12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/> </children> - <children xmi:id="_3WDFgWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/> - <children xmi:id="_3WDFgmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" name="Chromium Debug" description="Debug Chromium JavaScript"/> + <children xmi:id="_aLHq512-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/> + <children xmi:id="_aL6VI12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" name="Chromium Debug" description="Debug Chromium JavaScript"/> </rootContext> - <rootContext xmi:id="_3WDFg2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/> - <rootContext xmi:id="_3WDFhGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/> - <rootContext xmi:id="_3WDFhWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/> - <rootContext xmi:id="_3WDFhmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.wsdl.ui.editor.sourceView" name="WSDL Editor Source View" description="WSDL Editor Source View"/> - <rootContext xmi:id="_3WDFh2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/> - <rootContext xmi:id="_3WDFiGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/> - <rootContext xmi:id="_3WDFiWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.wsdl.ui.editor.designView" name="WSDL Editor Design View" description="WSDL Editor Design View"/> - <rootContext xmi:id="_3WDFimNQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/> - <rootContext xmi:id="_3WDFi2NQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.actionSet" name="Auto::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet"/> - <rootContext xmi:id="_3WDFjGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/> - <rootContext xmi:id="_3WDFjWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/> - <rootContext xmi:id="_3WDFjmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/> - <rootContext xmi:id="_3WDFj2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/> - <rootContext xmi:id="_3WDFkGNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.CoverageActionSet" name="Auto::org.eclipse.eclemma.ui.CoverageActionSet"/> - <rootContext xmi:id="_3WDFkWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/> - <rootContext xmi:id="_3WDFkmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/> - <rootContext xmi:id="_3WDFk2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/> - <rootContext xmi:id="_3WDFlGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/> - <rootContext xmi:id="_3WDFlWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/> - <rootContext xmi:id="_3WDFlmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/> - <rootContext xmi:id="_3WDFl2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/> - <rootContext xmi:id="_3WDFmGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/> - <rootContext xmi:id="_3WDFmWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/> - <rootContext xmi:id="_3WDFmmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/> - <rootContext xmi:id="_3WDFm2NQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.actionSet.jpaElementCreation" name="Auto::org.eclipse.jpt.jpa.ui.actionSet.jpaElementCreation"/> - <rootContext xmi:id="_3WDFnGNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" name="Auto::org.eclipse.jst.j2ee.J2eeMainActionSet"/> - <rootContext xmi:id="_3WDFnWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.actionSet" name="Auto::org.eclipse.mylyn.context.ui.actionSet"/> - <rootContext xmi:id="_3WDFnmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.java.actionSet" name="Auto::org.eclipse.mylyn.java.actionSet"/> - <rootContext xmi:id="_3WDFn2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.java.actionSet.browsing" name="Auto::org.eclipse.mylyn.java.actionSet.browsing"/> - <rootContext xmi:id="_3WDFoGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.doc.actionSet" name="Auto::org.eclipse.mylyn.doc.actionSet"/> - <rootContext xmi:id="_3WDFoWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.navigation" name="Auto::org.eclipse.mylyn.tasks.ui.navigation"/> - <rootContext xmi:id="_3WDFomNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.navigation.additions" name="Auto::org.eclipse.mylyn.tasks.ui.navigation.additions"/> - <rootContext xmi:id="_3WDFo2NQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/> - <rootContext xmi:id="_3WDFpGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/> - <rootContext xmi:id="_3WDFpWNQEeidIdhNuvomDQ" elementId="org.eclipse.rse.core.search.searchActionSet" name="Auto::org.eclipse.rse.core.search.searchActionSet"/> - <rootContext xmi:id="_3WDFpmNQEeidIdhNuvomDQ" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/> - <rootContext xmi:id="_3WDFp2NQEeidIdhNuvomDQ" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/> - <rootContext xmi:id="_3WDFqGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/> - <rootContext xmi:id="_3WDFqWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/> - <rootContext xmi:id="_3WDFqmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/> - <rootContext xmi:id="_3WDFq2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/> - <rootContext xmi:id="_3WDFrGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/> - <rootContext xmi:id="_3WDFrWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/> - <rootContext xmi:id="_3WDFrmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/> - <rootContext xmi:id="_3WDFr2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/> - <rootContext xmi:id="_3WDFsGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/> - <rootContext xmi:id="_3WDFsWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/> - <rootContext xmi:id="_3WDFsmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.actionSets" name="Auto::org.eclipse.wst.jsdt.chromium.debug.ui.actionSets"/> - <rootContext xmi:id="_3WDFs2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/> - <rootContext xmi:id="_3WDFtGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/> - <rootContext xmi:id="_3WDFtWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/> - <rootContext xmi:id="_3WDFtmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/> - <rootContext xmi:id="_3WDFt2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/> - <rootContext xmi:id="_3WDFuGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/> - <rootContext xmi:id="_3WDFuWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/> - <rootContext xmi:id="_3WDFumNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/> - <rootContext xmi:id="_3WDFu2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/> - <rootContext xmi:id="_3WDFvGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.ws.explorer.explorer" name="Auto::org.eclipse.wst.ws.explorer.explorer"/> - <rootContext xmi:id="_3WDFvWNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.ui.actionset" name="Auto::org.eclipse.wb.core.ui.actionset"/> - <rootContext xmi:id="_3WDFvmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective" name="Auto::org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective"/> - <descriptors xmi:id="_3WDFv2NQEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.compatibility.editor" allowMultiple="true" category="org.eclipse.e4.primaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor"> + <rootContext xmi:id="_aL5uBl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/> + <rootContext xmi:id="_aL5uCl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/> + <rootContext xmi:id="_aL6VGV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/> + <rootContext xmi:id="_aL6VHV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.wsdl.ui.editor.sourceView" name="WSDL Editor Source View" description="WSDL Editor Source View"/> + <rootContext xmi:id="_aL6VIV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/> + <rootContext xmi:id="_aL6VIl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/> + <rootContext xmi:id="_aL6VMF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.wsdl.ui.editor.designView" name="WSDL Editor Design View" description="WSDL Editor Design View"/> + <rootContext xmi:id="_ayi3QF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/> + <rootContext xmi:id="_ayi3Ql2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.actionSet" name="Auto::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet"/> + <rootContext xmi:id="_ayjeUF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/> + <rootContext xmi:id="_ayjeUl2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/> + <rootContext xmi:id="_ayjeVF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/> + <rootContext xmi:id="_ayjeVl2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/> + <rootContext xmi:id="_ayjeWF2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.CoverageActionSet" name="Auto::org.eclipse.eclemma.ui.CoverageActionSet"/> + <rootContext xmi:id="_ayjeWl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/> + <rootContext xmi:id="_aykFYF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/> + <rootContext xmi:id="_aykFYl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/> + <rootContext xmi:id="_aykFZF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/> + <rootContext xmi:id="_aykFZl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/> + <rootContext xmi:id="_aykFaF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/> + <rootContext xmi:id="_aykscF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/> + <rootContext xmi:id="_aykscl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/> + <rootContext xmi:id="_ayksdF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/> + <rootContext xmi:id="_ayksdl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/> + <rootContext xmi:id="_aykseF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.actionSet.jpaElementCreation" name="Auto::org.eclipse.jpt.jpa.ui.actionSet.jpaElementCreation"/> + <rootContext xmi:id="_ayksel2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" name="Auto::org.eclipse.jst.j2ee.J2eeMainActionSet"/> + <rootContext xmi:id="_aylTgF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.actionSet" name="Auto::org.eclipse.mylyn.context.ui.actionSet"/> + <rootContext xmi:id="_aylTgl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.java.actionSet" name="Auto::org.eclipse.mylyn.java.actionSet"/> + <rootContext xmi:id="_aylThF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.java.actionSet.browsing" name="Auto::org.eclipse.mylyn.java.actionSet.browsing"/> + <rootContext xmi:id="_aylThl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.doc.actionSet" name="Auto::org.eclipse.mylyn.doc.actionSet"/> + <rootContext xmi:id="_aylTiF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.navigation" name="Auto::org.eclipse.mylyn.tasks.ui.navigation"/> + <rootContext xmi:id="_aylTil2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.navigation.additions" name="Auto::org.eclipse.mylyn.tasks.ui.navigation.additions"/> + <rootContext xmi:id="_aylTjF2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/> + <rootContext xmi:id="_aylTjl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/> + <rootContext xmi:id="_ayl6kF2-EeiwQNQmo1Li3A" elementId="org.eclipse.rse.core.search.searchActionSet" name="Auto::org.eclipse.rse.core.search.searchActionSet"/> + <rootContext xmi:id="_ayl6kl2-EeiwQNQmo1Li3A" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/> + <rootContext xmi:id="_ayl6lF2-EeiwQNQmo1Li3A" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/> + <rootContext xmi:id="_ayl6ll2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/> + <rootContext xmi:id="_ayl6mF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/> + <rootContext xmi:id="_ayl6ml2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/> + <rootContext xmi:id="_ayl6nF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/> + <rootContext xmi:id="_aymhoF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/> + <rootContext xmi:id="_aymhol2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/> + <rootContext xmi:id="_aymhpF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/> + <rootContext xmi:id="_aymhpl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/> + <rootContext xmi:id="_aymhqF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/> + <rootContext xmi:id="_aymhql2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/> + <rootContext xmi:id="_aymhrF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.actionSets" name="Auto::org.eclipse.wst.jsdt.chromium.debug.ui.actionSets"/> + <rootContext xmi:id="_aynIsF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/> + <rootContext xmi:id="_aynIsl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/> + <rootContext xmi:id="_aynItF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/> + <rootContext xmi:id="_aynItl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/> + <rootContext xmi:id="_aynIuF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/> + <rootContext xmi:id="_aynIul2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/> + <rootContext xmi:id="_aynIvF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/> + <rootContext xmi:id="_aynIvl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/> + <rootContext xmi:id="_aynvwV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/> + <rootContext xmi:id="_aynvw12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.ws.explorer.explorer" name="Auto::org.eclipse.wst.ws.explorer.explorer"/> + <rootContext xmi:id="_aynvxV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.ui.actionset" name="Auto::org.eclipse.wb.core.ui.actionset"/> + <rootContext xmi:id="_iJr7kF3MEeiR1ZWVQAxmCg" elementId="org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective" name="Auto::org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective"/> + <descriptors xmi:id="_aPEWwF2-EeiwQNQmo1Li3A" elementId="org.eclipse.e4.ui.compatibility.editor" allowMultiple="true" category="org.eclipse.e4.primaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor"> <tags>Editor</tags> </descriptors> - <descriptors xmi:id="_3WDFwGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPJ2UF2-EeiwQNQmo1Li3A" 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="_3WDFwWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPRLEF2-EeiwQNQmo1Li3A" 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.view.task.TaskView"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.buildship.ui"/> <tags>View</tags> <tags>categoryTag:Gradle</tags> </descriptors> - <descriptors xmi:id="_3WDFwmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPSZMF2-EeiwQNQmo1Li3A" 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.view.execution.ExecutionsView"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.buildship.ui"/> <tags>View</tags> <tags>categoryTag:Gradle</tags> </descriptors> - <descriptors xmi:id="_3WDFw2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPTAQF2-EeiwQNQmo1Li3A" 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="_3WDFxGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPUOYF2-EeiwQNQmo1Li3A" 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="_3WDFxWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPWDkF2-EeiwQNQmo1Li3A" 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="_3WDFxmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPXRsF2-EeiwQNQmo1Li3A" 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="_3WDFx2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPZt8F2-EeiwQNQmo1Li3A" 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="_3WDFyGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPa8EF2-EeiwQNQmo1Li3A" 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="_3WDFyWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPcKMF2-EeiwQNQmo1Li3A" 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="_3WDFymNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPcxQF2-EeiwQNQmo1Li3A" 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="_3WDFy2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPdYUF2-EeiwQNQmo1Li3A" 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="_3WDFzGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPd_YF2-EeiwQNQmo1Li3A" 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="_3WDFzWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPemcF2-EeiwQNQmo1Li3A" 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="_3WDFzmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPgboF2-EeiwQNQmo1Li3A" 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="_3WDFz2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPi34F2-EeiwQNQmo1Li3A" 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="_3WDF0GNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPkGAF2-EeiwQNQmo1Li3A" 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="_3WDF0WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPktEF2-EeiwQNQmo1Li3A" 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> </descriptors> - <descriptors xmi:id="_3WDF0mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPlUIF2-EeiwQNQmo1Li3A" 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="_3WDF02NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPl7MF2-EeiwQNQmo1Li3A" 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="_3WDF1GNQEeidIdhNuvomDQ" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aPoXcF2-EeiwQNQmo1Li3A" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" 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="_3WDF1WNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Display" 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"> + <descriptors xmi:id="_aPqMoF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Display" 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="_3WDF1mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPso4F2-EeiwQNQmo1Li3A" 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="_3WDF12NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPvFIF2-EeiwQNQmo1Li3A" 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="_3WDF2GNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPyIcF2-EeiwQNQmo1Li3A" 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="_3WDF2WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPyIcV2-EeiwQNQmo1Li3A" 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="_3WDF2mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPyvgF2-EeiwQNQmo1Li3A" 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="_3WDF22NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPzWkF2-EeiwQNQmo1Li3A" 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="_3WDF3GNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aPz9oF2-EeiwQNQmo1Li3A" 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="_3WDF3WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP0ksF2-EeiwQNQmo1Li3A" 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="_3WDF3mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP1LwF2-EeiwQNQmo1Li3A" 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="_3WDF32NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP1y0F2-EeiwQNQmo1Li3A" 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="_3WDF4GNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP1y0V2-EeiwQNQmo1Li3A" 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="_3WDF4WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP2Z4F2-EeiwQNQmo1Li3A" 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="_3WDF4mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP42IF2-EeiwQNQmo1Li3A" 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="_3WDF42NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP5dMF2-EeiwQNQmo1Li3A" 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="_3WDF5GNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP5dMV2-EeiwQNQmo1Li3A" 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="_3WDF5WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP6rUF2-EeiwQNQmo1Li3A" 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="_3WDF5mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP8ggF2-EeiwQNQmo1Li3A" 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="_3WDF52NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP9uoF2-EeiwQNQmo1Li3A" 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="_3WDF6GNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP-VsF2-EeiwQNQmo1Li3A" 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="_3WDF6WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aP_j0F2-EeiwQNQmo1Li3A" 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="_3WDF6mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQBZAF2-EeiwQNQmo1Li3A" 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="_3WDF62NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQBZAV2-EeiwQNQmo1Li3A" 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="_3WDF7GNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.api.tools.ui.views.apitooling.views.apitoolingview" label="API Tools" iconURI="platform:/plugin/org.eclipse.pde.api.tools.ui/icons/full/obj16/api_tools.gif" tooltip="" category="API Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQDOMF2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.api.tools.ui.views.apitooling.views.apitoolingview" label="API Tools" iconURI="platform:/plugin/org.eclipse.pde.api.tools.ui/icons/full/obj16/api_tools.gif" 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="_3WDF7WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQEcUF2-EeiwQNQmo1Li3A" 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="_3WDF7mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQFqcF2-EeiwQNQmo1Li3A" 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="_3WDF72NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQIGsF2-EeiwQNQmo1Li3A" 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="_3WDF8GNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQItwF2-EeiwQNQmo1Li3A" 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="_3WDF8WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQJU0F2-EeiwQNQmo1Li3A" 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="_3WDF8mNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.apidocs.rcp.views.apidocs" label="Augmented Docs" iconURI="platform:/plugin/org.eclipse.recommenders.apidocs.rcp/icons/view16/apidocs.png" tooltip="" category="Code Recommenders" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQJU0V2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.apidocs.rcp.views.apidocs" label="Augmented Docs" iconURI="platform:/plugin/org.eclipse.recommenders.apidocs.rcp/icons/view16/apidocs.png" tooltip="" category="Code Recommenders" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.recommenders.injection.ExtensionFactory"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.recommenders.apidocs.rcp"/> <tags>View</tags> <tags>categoryTag:Code Recommenders</tags> </descriptors> - <descriptors xmi:id="_3WDF82NQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.models.rcp.views.projectCoordinates" label="Project Coordinates" iconURI="platform:/plugin/org.eclipse.recommenders.coordinates.rcp/icons/view16/depinsp.gif" tooltip="" category="Code Recommenders" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQLKAF2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.models.rcp.views.projectCoordinates" label="Project Coordinates" iconURI="platform:/plugin/org.eclipse.recommenders.coordinates.rcp/icons/view16/depinsp.gif" tooltip="" category="Code Recommenders" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.recommenders.injection.ExtensionFactory"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.recommenders.coordinates.rcp"/> <tags>View</tags> <tags>categoryTag:Code Recommenders</tags> </descriptors> - <descriptors xmi:id="_3WDF9GNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.models.rcp.views.modelRepositories" label="Model Repositories" iconURI="platform:/plugin/org.eclipse.recommenders.models.rcp/icons/view16/depinsp.gif" tooltip="" category="Code Recommenders" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQMYIF2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.models.rcp.views.modelRepositories" label="Model Repositories" iconURI="platform:/plugin/org.eclipse.recommenders.models.rcp/icons/view16/depinsp.gif" tooltip="" category="Code Recommenders" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.recommenders.injection.ExtensionFactory"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.recommenders.models.rcp"/> <tags>View</tags> <tags>categoryTag:Code Recommenders</tags> </descriptors> - <descriptors xmi:id="_3WDF9WNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.models.rcp.views.dependencyOverview" label="Dependency Overview" iconURI="platform:/plugin/org.eclipse.recommenders.models.rcp/icons/view16/depinsp.gif" tooltip="" category="Code Recommenders" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQONUF2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.models.rcp.views.dependencyOverview" label="Dependency Overview" iconURI="platform:/plugin/org.eclipse.recommenders.models.rcp/icons/view16/depinsp.gif" tooltip="" category="Code Recommenders" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.recommenders.injection.ExtensionFactory"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.recommenders.models.rcp"/> <tags>View</tags> <tags>categoryTag:Code Recommenders</tags> </descriptors> - <descriptors xmi:id="_3WDF9mNQEeidIdhNuvomDQ" elementId="org.eclipse.rse.shells.ui.view.commandsView" label="Remote Shell" iconURI="platform:/plugin/org.eclipse.rse.shells.ui/icons/full/cview16/commands_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQONUV2-EeiwQNQmo1Li3A" elementId="org.eclipse.rse.shells.ui.view.commandsView" label="Remote Shell" iconURI="platform:/plugin/org.eclipse.rse.shells.ui/icons/full/cview16/commands_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.shells.ui.view.SystemCommandsViewPart"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.shells.ui"/> <tags>View</tags> <tags>categoryTag:Remote Systems</tags> </descriptors> - <descriptors xmi:id="_3WDF92NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQPbcF2-EeiwQNQmo1Li3A" 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="_3WDF-GNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQRQoF2-EeiwQNQmo1Li3A" 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="_3WDF-WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQRQoV2-EeiwQNQmo1Li3A" 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="_3WDF-mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQRQol2-EeiwQNQmo1Li3A" 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="_3WDF-2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQR3sF2-EeiwQNQmo1Li3A" 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="_3WDF_GNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQR3sV2-EeiwQNQmo1Li3A" 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="_3WDF_WNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQSewF2-EeiwQNQmo1Li3A" 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="_3WDF_mNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQUT8F2-EeiwQNQmo1Li3A" 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="_3WDF_2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQUT8V2-EeiwQNQmo1Li3A" 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="_3WDGAGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQWJIF2-EeiwQNQmo1Li3A" 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="_3WDGAWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQWwMF2-EeiwQNQmo1Li3A" 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="_3WDGAmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQYlYF2-EeiwQNQmo1Li3A" 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="_3WDGA2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQYlYV2-EeiwQNQmo1Li3A" 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="_3WDGBGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQYlYl2-EeiwQNQmo1Li3A" 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="_3WDGBWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQZzgF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" 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="_3WDGBmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQbosF2-EeiwQNQmo1Li3A" 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="_3WDGB2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQc20F2-EeiwQNQmo1Li3A" 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="_3WDGCGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator" 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"> + <descriptors xmi:id="_aQc20V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator" 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="_3WDGCWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQc20l2-EeiwQNQmo1Li3A" 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="_3WDGCmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQdd4F2-EeiwQNQmo1Li3A" 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="_3WDGC2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQdd4V2-EeiwQNQmo1Li3A" 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="_3WDGDGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQdd4l2-EeiwQNQmo1Li3A" 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="_3WDGDWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQeE8F2-EeiwQNQmo1Li3A" 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="_3WDGDmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQfTEF2-EeiwQNQmo1Li3A" 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="_3WDGD2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQhIQF2-EeiwQNQmo1Li3A" 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="_3WDGEGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQhIQV2-EeiwQNQmo1Li3A" 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="_3WDGEWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQiWYF2-EeiwQNQmo1Li3A" 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="_3WDGEmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQkLkF2-EeiwQNQmo1Li3A" 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="_3WDGE2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQlZsF2-EeiwQNQmo1Li3A" 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="_3WDGFGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQn18F2-EeiwQNQmo1Li3A" 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="_3WDGFWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQodAF2-EeiwQNQmo1Li3A" 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="_3WDGFmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQodAV2-EeiwQNQmo1Li3A" 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="_3WDGF2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQpEEF2-EeiwQNQmo1Li3A" 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="_3WDGGGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQpEEV2-EeiwQNQmo1Li3A" 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="_3WDGGWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQqSMF2-EeiwQNQmo1Li3A" 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="_3WDGGmNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQsHYF2-EeiwQNQmo1Li3A" 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="_3WDGG2NQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQsHYV2-EeiwQNQmo1Li3A" 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="_3WDGHGNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQtVgF2-EeiwQNQmo1Li3A" 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="_3WDGHWNQEeidIdhNuvomDQ" 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"> + <descriptors xmi:id="_aQtVgV2-EeiwQNQmo1Li3A" 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="_3WDGHmNQEeidIdhNuvomDQ" elementId="org.eclipse.swt.tools.views.MacGeneratorView" label="Mac Generator" iconURI="platform:/plugin/org.eclipse.swt.tools/icons/mac.gif" tooltip="" category="SWT Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQvKsF2-EeiwQNQmo1Li3A" elementId="org.eclipse.swt.tools.views.MacGeneratorView" label="Mac Generator" iconURI="platform:/plugin/org.eclipse.swt.tools/icons/mac.gif" tooltip="" category="SWT Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.swt.tools.views.MacGeneratorView"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.swt.tools"/> <tags>View</tags> <tags>categoryTag:SWT Tools</tags> </descriptors> - <descriptors xmi:id="_3WDGH2NQEeidIdhNuvomDQ" elementId="org.eclipse.swt.tools.views.SpyView" label="SWT Spy" iconURI="platform:/plugin/org.eclipse.swt.tools.spies/icons/spy.png" tooltip="" category="SWT Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQwY0F2-EeiwQNQmo1Li3A" elementId="org.eclipse.swt.tools.views.SpyView" label="SWT Spy" iconURI="platform:/plugin/org.eclipse.swt.tools.spies/icons/spy.png" tooltip="" category="SWT Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.swt.tools.views.SpyView"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.swt.tools.spies"/> <tags>View</tags> <tags>categoryTag:SWT Tools</tags> </descriptors> - <descriptors xmi:id="_3WDGIGNQEeidIdhNuvomDQ" elementId="org.eclipse.swt.tools.views.SleakView" label="Sleak" iconURI="platform:/plugin/org.eclipse.swt.tools.spies/icons/sleak.png" tooltip="" category="SWT Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQxm8F2-EeiwQNQmo1Li3A" elementId="org.eclipse.swt.tools.views.SleakView" label="Sleak" iconURI="platform:/plugin/org.eclipse.swt.tools.spies/icons/sleak.png" tooltip="" category="SWT Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.swt.tools.views.SleakView"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.swt.tools.spies"/> <tags>View</tags> <tags>categoryTag:SWT Tools</tags> </descriptors> - <descriptors xmi:id="_3WDGIWNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.StructureView" label="Structure" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/properties_view.gif" tooltip="" category="WindowBuilder" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQxm8V2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.StructureView" label="Structure" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/properties_view.gif" tooltip="" category="WindowBuilder" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wb.internal.core.views.StructureView"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wb.core"/> <tags>View</tags> <tags>categoryTag:WindowBuilder</tags> </descriptors> - <descriptors xmi:id="_3WDGImNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.PaletteView" label="Palette" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/palette.png" tooltip="" category="WindowBuilder" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> + <descriptors xmi:id="_aQ0DMF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.PaletteView" label="Palette" iconURI="platform:/plugin/org.eclipse.wb.core/icons/structure/palette.png" tooltip="" category="WindowBuilder" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"> <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wb.internal.core.views.PaletteView"/> <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wb.core"/> <tags>View</tags> <tags>categoryTag:WindowBuilder</tags> </descriptors> - <commands xmi:id="_3WESM2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform"/> - <commands xmi:id="_3WESNGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESNWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESNmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleWordWrap" commandName="Toggle Word Wrap" description="Toggle word wrap in the current text editor" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESN2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WESOGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/> + <menuContributions xmi:id="_aLHq6F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" positionInParent="popup:toolbar"> + <children xsi:type="menu:HandledMenuItem" xmi:id="_aLHq6V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" label="%command.name.customize" command="_aLHq6l2-EeiwQNQmo1Li3A"/> + </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="_aLHq6l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform"/> + <commands xmi:id="_aLtgwF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLtgwV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLtgwl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.toggleWordWrap" commandName="Toggle Word Wrap" description="Toggle word wrap in the current text editor" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH0F2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLuH0V2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/> </commands> - <commands xmi:id="_3WESOWNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.p2.ui.SearchRequirements" commandName="Search Requirements" category="_3WEXMmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESOmNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESO2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESPGNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.junitPluginShortcut.coverage" commandName="Coverage JUnit Plug-in Test" description="Coverage JUnit Plug-in Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESPWNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.maximize" commandName="Maximize Active View or Editor" category="_3WEXTWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESPmNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.editor.openDiscoveredType" commandName="Open Discovered Type" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESP2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESQGNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESQWNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WESQmNQEeidIdhNuvomDQ" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_aLuH0l2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.p2.ui.SearchRequirements" commandName="Search Requirements" category="_aLrroF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH012-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH1F2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH1V2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.junitPluginShortcut.coverage" commandName="Coverage JUnit Plug-in Test" description="Coverage JUnit Plug-in Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH1l2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.maximize" commandName="Maximize Active View or Editor" category="_aLrru12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH112-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.editor.openDiscoveredType" commandName="Open Discovered Type" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH2F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH2V2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH2l2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLuH212-EeiwQNQmo1Li3A" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_3WESQ2NQEeidIdhNuvomDQ" 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="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESRGNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESRWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESRmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.Edit" commandName="Edit Commit" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESR2NQEeidIdhNuvomDQ" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WESSGNQEeidIdhNuvomDQ" elementId="trigger" name="trigger"/> + <commands xmi:id="_aLuH3F2-EeiwQNQmo1Li3A" 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="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH3V2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH3l2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH312-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.Edit" commandName="Edit Commit" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH4F2-EeiwQNQmo1Li3A" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLuH4V2-EeiwQNQmo1Li3A" elementId="trigger" name="trigger"/> </commands> - <commands xmi:id="_3WESSWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.js.grunt.commands.gruntLaunch" commandName="Run as Grunt Task" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESSmNQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESS2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESTGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESTWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.connectivity.commands.export" commandName="Export Profiles Command" description="Command to export connection profiles" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESTmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEST2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.editor.showCheatSheetCommand" commandName="Show Markup Cheat Sheet" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESUGNQEeidIdhNuvomDQ" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_3WEXUWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESUWNQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESUmNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.utils.rcp.commands.openBrowserDialog" commandName="Open a Web browser" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WESU2NQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> + <commands xmi:id="_aLuH4l2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.js.grunt.commands.gruntLaunch" commandName="Run as Grunt Task" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH412-EeiwQNQmo1Li3A" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH5F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH5V2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH5l2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.connectivity.commands.export" commandName="Export Profiles Command" description="Command to export connection profiles" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH512-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH6F2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.editor.showCheatSheetCommand" commandName="Show Markup Cheat Sheet" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH6V2-EeiwQNQmo1Li3A" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_aLrrv12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH6l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH612-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.utils.rcp.commands.openBrowserDialog" commandName="Open a Web browser" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLuH7F2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> </commands> - <commands xmi:id="_3WESVGNQEeidIdhNuvomDQ" elementId="org.eclipse.epp.mpc.ui.command.showInstalled" commandName="Manage installed plug-ins" description="Update or uninstall plug-ins installed from the Marketplace" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESVWNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESVmNQEeidIdhNuvomDQ" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESV2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.views.XPathView.prefixes" commandName="&Edit Namespace Prefixes" category="_3WEXNWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESWGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.toggleCommentAction" commandName="Toggle Comment" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESWWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands.task.clearContext" commandName="Clear Context" category="_3WEXJ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESWmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESW2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESXGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESXWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESXmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.searchForTask" commandName="Search Repository for Task" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESX2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESYGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESYWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESYmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Check Out" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESY2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESZGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESZWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.maximizePart" commandName="Maximize Part" description="Maximize Part" category="_3WEXP2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESZmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESZ2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WESaGNQEeidIdhNuvomDQ" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_aLuH7V2-EeiwQNQmo1Li3A" elementId="org.eclipse.epp.mpc.ui.command.showInstalled" commandName="Manage installed plug-ins" description="Update or uninstall plug-ins installed from the Marketplace" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH7l2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH712-EeiwQNQmo1Li3A" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH8F2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.views.XPathView.prefixes" commandName="&Edit Namespace Prefixes" category="_aLrro12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH8V2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.toggleCommentAction" commandName="Toggle Comment" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH8l2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands.task.clearContext" commandName="Clear Context" category="_aLrrlV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH812-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH9F2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH9V2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH9l2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH912-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.searchForTask" commandName="Search Repository for Task" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuH-F2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu4F2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu4V2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu4l2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Check Out" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu412-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu5F2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu5V2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.maximizePart" commandName="Maximize Part" description="Maximize Part" category="_aLrrrV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu5l2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu512-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLuu6F2-EeiwQNQmo1Li3A" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_3WESaWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESamNQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.internal.actions.showconsoleviewercommand" commandName="Show Recent Logs" description="Show Recent Logs" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESa2NQEeidIdhNuvomDQ" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_3WEXRmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESbGNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.editor.importProjects" commandName="Import Projects" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESbWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESbmNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.hideUnusedElements" commandName="Hide Unused Elements" category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESb2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEScGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEScWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEScmNQEeidIdhNuvomDQ" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_aLuu6V2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu6l2-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.internal.actions.showconsoleviewercommand" commandName="Show Recent Logs" description="Show Recent Logs" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu612-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_aLrrtF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu7F2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.editor.importProjects" commandName="Import Projects" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu7V2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu7l2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.hideUnusedElements" commandName="Hide Unused Elements" category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu712-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu8F2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu8V2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLuu8l2-EeiwQNQmo1Li3A" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_3WESc2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to" description="Go to a particular resource in the active view" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESdGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESdWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESdmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.quickOutlineCommand" commandName="Quick Outline" description="Open a popup dialog with a quick outline of the current document" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESd2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESeGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESeWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESemNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESe2NQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.utils.rcp.commands.openBrowser" commandName="Open a Web browser" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WESfGNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> + <commands xmi:id="_aLuu812-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to" description="Go to a particular resource in the active view" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu9F2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu9V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu9l2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.quickOutlineCommand" commandName="Quick Outline" description="Open a popup dialog with a quick outline of the current document" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu912-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu-F2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu-V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu-l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu-12-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.utils.rcp.commands.openBrowser" commandName="Open a Web browser" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLuu_F2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> </commands> - <commands xmi:id="_3WESfWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESfmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESf2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.localJavaShortcut.coverage" commandName="Coverage Java Application" description="Coverage Java Application" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESgGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESgWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESgmNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.editor.refreshCache" commandName="Refresh Remote Cache" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESg2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEShGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEShWNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.exportSession" commandName="Export Session..." category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEShmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESh2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.scalaShortcut.coverage" commandName="Coverage Scala Application" description="Coverage Scala Application" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESiGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESiWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESimNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESi2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESjGNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.dumpExecutionData" commandName="Dump Execution Data" category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESjWNQEeidIdhNuvomDQ" 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="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESjmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESj2NQEeidIdhNuvomDQ" elementId="org.eclipse.buildship.ui.commands.runtasks" commandName="Run Gradle Tasks" description="Runs all the selected Gradle tasks" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESkGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESkWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESkmNQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESk2NQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESlGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_3WEXRGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESlWNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESlmNQEeidIdhNuvomDQ" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_3WEXUmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESl2NQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.actions.LifeCycleGenerateSources.run" commandName="Run Maven Generate Sources" description="Run Maven Generate Sources" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESmGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESmWNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.ws.jaxws.ui.configure.handlers" commandName="Configure Handlers" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESmmNQEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.importer.openDirectory" commandName="Open Projects from File System..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESm2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESnGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESnWNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESnmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESn2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESoGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.ToggleTracepoint" commandName="Toggle Tracepoint" description="Creates or removes a tracepoint " category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESoWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.convertToMarkupCommand" commandName="Generate Markup" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WESomNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.targetLanguage" name="TargetLanguage" optional="false"/> + <commands xmi:id="_aLuu_V2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu_l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuu_12-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.localJavaShortcut.coverage" commandName="Coverage Java Application" description="Coverage Java Application" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvAF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvAV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvAl2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.editor.refreshCache" commandName="Refresh Remote Cache" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvA12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvBF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvBV2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.exportSession" commandName="Export Session..." category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvBl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvB12-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.scalaShortcut.coverage" commandName="Coverage Scala Application" description="Coverage Scala Application" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvCF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvCV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvCl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvC12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvDF2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.dumpExecutionData" commandName="Dump Execution Data" category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvDV2-EeiwQNQmo1Li3A" 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="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvDl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvD12-EeiwQNQmo1Li3A" elementId="org.eclipse.buildship.ui.commands.runtasks" commandName="Run Gradle Tasks" description="Runs all the selected Gradle tasks" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvEF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvEV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvEl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvE12-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvFF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_aLrrsl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvFV2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvFl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_aLsSoF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvF12-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.actions.LifeCycleGenerateSources.run" commandName="Run Maven Generate Sources" description="Run Maven Generate Sources" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvGF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvGV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.ws.jaxws.ui.configure.handlers" commandName="Configure Handlers" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvGl2-EeiwQNQmo1Li3A" elementId="org.eclipse.e4.ui.importer.openDirectory" commandName="Open Projects from File System..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvG12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvHF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvHV2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvHl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvH12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvIF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.ToggleTracepoint" commandName="Toggle Tracepoint" description="Creates or removes a tracepoint " category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvIV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.convertToMarkupCommand" commandName="Generate Markup" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLuvIl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.targetLanguage" name="TargetLanguage" optional="false"/> </commands> - <commands xmi:id="_3WESo2NQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESpGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.showToolTip" commandName="Show Tooltip Description" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESpWNQEeidIdhNuvomDQ" 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="_3WEXRGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESpmNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.junitShortcut.coverage" commandName="Coverage JUnit Test" description="Coverage JUnit Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESp2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands.task.copyContext" commandName="Copy Context" category="_3WEXJ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESqGNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.view.ui.command.launchToolbar" commandName="Open Local Terminal on Selection" category="_3WEXRWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESqWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESqmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESq2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESrGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESrWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESrmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESr2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.workbenchShortcut.coverage" commandName="Coverage Eclipse Application" description="Coverage Eclipse Application" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESsGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESsWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESsmNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESs2NQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEStGNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.newEntity" commandName="JPA Entity" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEStWNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEStmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.ImportChangedProjectsCommandId" commandName="Import Changed Projects" description="Import or create in local Git repository" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESt2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.commands.OpenCoverageConfiguration" commandName="Coverage Configurations..." description="Coverage Configurations..." category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESuGNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESuWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESumNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESu2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESvGNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_3WEXOGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESvWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.result.terminate" commandName="Terminate Result" category="_3WEXL2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESvmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESv2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESwGNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESwWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESwmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESw2NQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESxGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESxWNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESxmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESx2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESyGNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.openSessionExecutionData" commandName="Open Execution Data" category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESyWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WESymNQEeidIdhNuvomDQ" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_aLuvI12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLuvJF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.showToolTip" commandName="Show Tooltip Description" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV8F2-EeiwQNQmo1Li3A" 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="_aLrrsl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV8V2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.junitShortcut.coverage" commandName="Coverage JUnit Test" description="Coverage JUnit Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV8l2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands.task.copyContext" commandName="Copy Context" category="_aLrrlV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV812-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.view.ui.command.launchToolbar" commandName="Open Local Terminal on Selection" category="_aLrrs12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV9F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV9V2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV9l2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV912-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV-F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV-V2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV-l2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.workbenchShortcut.coverage" commandName="Coverage Eclipse Application" description="Coverage Eclipse Application" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV-12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV_F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV_V2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV_l2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvV_12-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.newEntity" commandName="JPA Entity" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWAF2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWAV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.ImportChangedProjectsCommandId" commandName="Import Changed Projects" description="Import or create in local Git repository" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWAl2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.commands.OpenCoverageConfiguration" commandName="Coverage Configurations..." description="Coverage Configurations..." category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWA12-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWBF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWBV2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWBl2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWB12-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_aLrrpl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWCF2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.result.terminate" commandName="Terminate Result" category="_aLrrnV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWCV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWCl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWC12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWDF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWDV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWDl2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWD12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWEF2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWEV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWEl2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWE12-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.openSessionExecutionData" commandName="Open Execution Data" category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWFF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLvWFV2-EeiwQNQmo1Li3A" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_3WESy2NQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.editor.performDropdown" commandName="Perform Dropdown" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESzGNQEeidIdhNuvomDQ" 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="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESzWNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESzmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WESz2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES0GNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.addAllPluginsToJavaSearch" commandName="Add All Plug-ins to Java Search" description="Adds all plug-ins in the target platform to java search" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES0WNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WES0mNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/> + <commands xmi:id="_aLvWFl2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.editor.performDropdown" commandName="Perform Dropdown" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWF12-EeiwQNQmo1Li3A" 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="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWGF2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWGV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWGl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWG12-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.addAllPluginsToJavaSearch" commandName="Add All Plug-ins to Java Search" description="Adds all plug-ins in the target platform to java search" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWHF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLvWHV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/> </commands> - <commands xmi:id="_3WES02NQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES1GNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES1WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.fullscreenmode" commandName="Toggle Full Screen" description="Toggles the window between full screen and normal" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES1mNQEeidIdhNuvomDQ" elementId="org.eclipse.equinox.p2.ui.sdk.installationDetails" commandName="Installation Details" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES12NQEeidIdhNuvomDQ" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_3WEXPGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES2GNQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.profiles.ui.commands.selectMavenProfileCommand" commandName="Select Maven Profiles" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES2WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES2mNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy Commit Id" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES22NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.new.subtask" commandName="New Subtask" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES3GNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_3WEXUWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES3WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES3mNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES32NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES4GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES4WNQEeidIdhNuvomDQ" 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="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES4mNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES42NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES5GNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES5WNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES5mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES52NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES6GNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES6WNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.StashDrop" commandName="Delete Stashed Commit..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES6mNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.openTask" commandName="Open Task" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES62NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES7GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES7WNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.java.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_3WEXQ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES7mNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_3WEXVWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES72NQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES8GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES8WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES8mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES82NQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.ui.ToggleOfflineMode" commandName="Toggle Offline Mode" category="_3WEXOWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES9GNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.editor.openLog" commandName="Open Setup Log" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES9WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES9mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_3WEXLWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WES92NQEeidIdhNuvomDQ" elementId="importWizardId" name="Import Wizard"/> + <commands xmi:id="_aLvWHl2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWH12-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWIF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.fullscreenmode" commandName="Toggle Full Screen" description="Toggles the window between full screen and normal" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWIV2-EeiwQNQmo1Li3A" elementId="org.eclipse.equinox.p2.ui.sdk.installationDetails" commandName="Installation Details" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWIl2-EeiwQNQmo1Li3A" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_aLrrql2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWI12-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.profiles.ui.commands.selectMavenProfileCommand" commandName="Select Maven Profiles" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWJF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWJV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy Commit Id" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWJl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.new.subtask" commandName="New Subtask" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWJ12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_aLrrv12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWKF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWKV2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWKl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWK12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWLF2-EeiwQNQmo1Li3A" 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="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWLV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWLl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLvWL12-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9AF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9AV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Al2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9A12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9BF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.StashDrop" commandName="Delete Stashed Commit..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9BV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.openTask" commandName="Open Task" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Bl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9B12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9CF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.java.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_aLrrsV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9CV2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_aLsSo12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Cl2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9C12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9DF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9DV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Dl2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.ui.ToggleOfflineMode" commandName="Toggle Offline Mode" category="_aLrrp12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9D12-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.editor.openLog" commandName="Open Setup Log" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9EF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9EV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_aLrrm12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLv9El2-EeiwQNQmo1Li3A" elementId="importWizardId" name="Import Wizard"/> </commands> - <commands xmi:id="_3WES-GNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES-WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES-mNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES-2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Show Contextual Help" description="Open the contextual help" category="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES_GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES_WNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.activateTask" commandName="Activate Task" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES_mNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WES_2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETAGNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETAWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETAmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETA2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETBGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETBWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETBmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETB2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETCGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_3WEXUWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETCWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETCmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETC2NQEeidIdhNuvomDQ" 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="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETDGNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.relaunchSession" commandName="Relaunch Coverage Session" category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETDWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETDmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Tree" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETD2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETEGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETEWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETEmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETE2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETFGNQEeidIdhNuvomDQ" elementId="org.eclipse.epp.mpc.ui.command.importFavoritesWizard" commandName="Import Marketplace Favorites" description="Import another user's Marketplace Favorites List" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WETFWNQEeidIdhNuvomDQ" elementId="favoritesUrl" name="favoritesUrl"/> + <commands xmi:id="_aLv9E12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9FF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9FV2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Fl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Show Contextual Help" description="Open the contextual help" category="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9F12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9GF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.activateTask" commandName="Activate Task" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9GV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Gl2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9G12-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9HF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9HV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Hl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9H12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9IF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9IV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Il2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9I12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_aLrrv12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9JF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9JV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Jl2-EeiwQNQmo1Li3A" 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="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9J12-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.relaunchSession" commandName="Relaunch Coverage Session" category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9KF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9KV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Tree" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Kl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9K12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9LF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9LV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Ll2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9L12-EeiwQNQmo1Li3A" elementId="org.eclipse.epp.mpc.ui.command.importFavoritesWizard" commandName="Import Marketplace Favorites" description="Import another user's Marketplace Favorites List" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLv9MF2-EeiwQNQmo1Li3A" elementId="favoritesUrl" name="favoritesUrl"/> </commands> - <commands xmi:id="_3WETFmNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETF2NQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETGGNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETGWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETGmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETG2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETHGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETHWNQEeidIdhNuvomDQ" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETHmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETH2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETIGNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETIWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETImNQEeidIdhNuvomDQ" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETI2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETJGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETJWNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.junitRAPShortcut.coverage" commandName="Coverage RAP JUnit Test" description="Coverage RAP JUnit Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETJmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.SynchronizeAll" commandName="Synchronize Changed" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETJ2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETKGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.Reword" commandName="Reword Commit" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETKWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.context.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_3WEXK2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETKmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETK2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_3WEXKmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETLGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_3WEXS2NQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WETLWNQEeidIdhNuvomDQ" elementId="href" name="Help topic href"/> + <commands xmi:id="_aLv9MV2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Ml2-EeiwQNQmo1Li3A" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9M12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9NF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9NV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Nl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9N12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9OF2-EeiwQNQmo1Li3A" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9OV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Ol2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9O12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9PF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9PV2-EeiwQNQmo1Li3A" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Pl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9P12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9QF2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.junitRAPShortcut.coverage" commandName="Coverage RAP JUnit Test" description="Coverage RAP JUnit Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9QV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.SynchronizeAll" commandName="Synchronize Changed" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Ql2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9Q12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.Reword" commandName="Reword Commit" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLv9RF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.context.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_aLrrmV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkEF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkEV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_aLrrmF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkEl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_aLrruV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLwkE12-EeiwQNQmo1Li3A" elementId="href" name="Help topic href"/> </commands> - <commands xmi:id="_3WETLmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETL2NQEeidIdhNuvomDQ" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETMGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETMWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.saveAsTemplateAction" commandName="Save as Template" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETMmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETM2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETNGNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETNWNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.p2.ui.ExploreRepository" commandName="Explore Repository" category="_3WEXMmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETNmNQEeidIdhNuvomDQ" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETN2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETOGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETOWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.log.jdt.showinconsole" commandName="&Show In Console" description="Show Stack Trace in Console View" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETOmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETO2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETPGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.UpdateRepositoryConfiguration" commandName="Update Repository Configuration" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETPWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.StashApply" commandName="Apply Stashed Changes" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETPmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETP2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WETQGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/> + <commands xmi:id="_aLwkFF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkFV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkFl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkF12-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.saveAsTemplateAction" commandName="Save as Template" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkGF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkGV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkGl2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkG12-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.p2.ui.ExploreRepository" commandName="Explore Repository" category="_aLrroF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkHF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkHV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkHl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkH12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.log.jdt.showinconsole" commandName="&Show In Console" description="Show Stack Trace in Console View" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkIF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkIV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkIl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.UpdateRepositoryConfiguration" commandName="Update Repository Configuration" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkI12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.StashApply" commandName="Apply Stashed Changes" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkJF2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkJV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLwkJl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/> </commands> - <commands xmi:id="_3WETQWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETQmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.quickAccess" commandName="Quick Access" description="Quickly access UI elements" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETQ2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETRGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETRWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.attachment.open" commandName="Open Attachment" category="_3WEXP2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETRmNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETR2NQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETSGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETSWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETSmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETS2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Index" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETTGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.refreshFromDatabaseAction" commandName="Refresh from Database" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETTWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteAsOneStatementAction" commandName="Execute Selected Text As One Statement" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETTmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETT2NQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.internal.actions.pushcommand" commandName="Push" description="Push application" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETUGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.connectivity.commands.addrepository" commandName="New Repository Profile Command" description="Command to create a new repository profile" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETUWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETUmNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.editor.perform.startup" commandName="Perform Setup Tasks (Startup)" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETU2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_3WEXUWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETVGNQEeidIdhNuvomDQ" 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="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETVWNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.jsp.ui.add.imports" commandName="Add Im&port" description="Create import declaration for selection" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETVmNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETV2NQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.eclipselink.ui.upgradeToEclipseLinkMappingFile" commandName="Upgrade to EclipseLink Mapping File" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETWGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_3WEXLmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WETWWNQEeidIdhNuvomDQ" elementId="url" name="URL"/> - <parameters xmi:id="_3WETWmNQEeidIdhNuvomDQ" elementId="browserId" name="Browser Id"/> - <parameters xmi:id="_3WETW2NQEeidIdhNuvomDQ" elementId="name" name="Browser Name"/> - <parameters xmi:id="_3WETXGNQEeidIdhNuvomDQ" elementId="tooltip" name="Browser Tooltip"/> + <commands xmi:id="_aLwkJ12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkKF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.quickAccess" commandName="Quick Access" description="Quickly access UI elements" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkKV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkKl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkK12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.attachment.open" commandName="Open Attachment" category="_aLrrrV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkLF2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkLV2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkLl2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkL12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkMF2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkMV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Index" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkMl2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.refreshFromDatabaseAction" commandName="Refresh from Database" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkM12-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteAsOneStatementAction" commandName="Execute Selected Text As One Statement" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkNF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkNV2-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.internal.actions.pushcommand" commandName="Push" description="Push application" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkNl2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.connectivity.commands.addrepository" commandName="New Repository Profile Command" description="Command to create a new repository profile" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkN12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkOF2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.editor.perform.startup" commandName="Perform Setup Tasks (Startup)" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkOV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_aLrrv12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkOl2-EeiwQNQmo1Li3A" 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="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkO12-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.jsp.ui.add.imports" commandName="Add Im&port" description="Create import declaration for selection" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkPF2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkPV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.eclipselink.ui.upgradeToEclipseLinkMappingFile" commandName="Upgrade to EclipseLink Mapping File" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkPl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_aLrrnF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLwkP12-EeiwQNQmo1Li3A" elementId="url" name="URL"/> + <parameters xmi:id="_aLwkQF2-EeiwQNQmo1Li3A" elementId="browserId" name="Browser Id"/> + <parameters xmi:id="_aLwkQV2-EeiwQNQmo1Li3A" elementId="name" name="Browser Name"/> + <parameters xmi:id="_aLwkQl2-EeiwQNQmo1Li3A" elementId="tooltip" name="Browser Tooltip"/> </commands> - <commands xmi:id="_3WETXWNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETXmNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.result.removeAllInstances" commandName="Remove All Visible Results" category="_3WEXL2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETX2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETYGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETYWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETYmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETY2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETZGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETZWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.splitEditor" commandName="Toggle Split Editor" description="Split or join the currently active editor." category="_3WEXLmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WETZmNQEeidIdhNuvomDQ" elementId="Splitter.isHorizontal" name="Orientation" optional="false"/> + <commands xmi:id="_aLwkQ12-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkRF2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.result.removeAllInstances" commandName="Remove All Visible Results" category="_aLrrnV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkRV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkRl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkR12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkSF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkSV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkSl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkS12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.splitEditor" commandName="Toggle Split Editor" description="Split or join the currently active editor." category="_aLrrnF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLwkTF2-EeiwQNQmo1Li3A" elementId="Splitter.isHorizontal" name="Orientation" optional="false"/> </commands> - <commands xmi:id="_3WETZ2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETaGNQEeidIdhNuvomDQ" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_3WEXRmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETaWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateSelectedTask" commandName="Deactivate Selected Task" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETamNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.lockToolBar" commandName="Toggle Lock Toolbars" description="Toggle the Lock on the Toolbars" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETa2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETbGNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETbWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETbmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETb2NQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETcGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.openSelectedTask" commandName="Open Selected Task" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETcWNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETcmNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.copycolumn" commandName="Copy" category="_3WEXSGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETc2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETdGNQEeidIdhNuvomDQ" 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="_3WEXJ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETdWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETdmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.goToNextUnread" commandName="Go To Next Unread Task" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETd2NQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.debugAction" commandName="Debug" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETeGNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETeWNQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.cloneservercommand" commandName="Clone Server" description="Clone Server" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETemNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="%RebaseInteractiveCurrentHandler.name" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETe2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETfGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETfWNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jaxb.ui.generateJaxbClasses" commandName="JAXB Classes..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETfmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETf2NQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETgGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETgWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETgmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETg2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEThGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEThWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEThmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETh2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETiGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETiWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETimNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETi2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETjGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETjWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETjmNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETj2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETkGNQEeidIdhNuvomDQ" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETkWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETkmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.submitTask" commandName="Submit Task" description="Submits the currently open task" category="_3WEXP2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETk2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.testNgSuiteShortcut.coverage" commandName="Coverage TestNG Suite" description="Coverage TestNG Suite" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETlGNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETlWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETlmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.generate.xml" commandName="&XML File..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETl2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETmGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETmWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETmmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_3WEXLWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WETm2NQEeidIdhNuvomDQ" elementId="exportWizardId" name="Export Wizard"/> + <commands xmi:id="_aLwkTV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkTl2-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_aLrrtF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkT12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateSelectedTask" commandName="Deactivate Selected Task" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkUF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.lockToolBar" commandName="Toggle Lock Toolbars" description="Toggle the Lock on the Toolbars" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkUV2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkUl2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLwkU12-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLIF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLIV2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLIl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.openSelectedTask" commandName="Open Selected Task" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLI12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLJF2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.copycolumn" commandName="Copy" category="_aLrrtl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLJV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLJl2-EeiwQNQmo1Li3A" 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="_aLrrlV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLJ12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLKF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.goToNextUnread" commandName="Go To Next Unread Task" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLKV2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.debugAction" commandName="Debug" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLKl2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLK12-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.cloneservercommand" commandName="Clone Server" description="Clone Server" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLLF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="%RebaseInteractiveCurrentHandler.name" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLLV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLLl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLL12-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jaxb.ui.generateJaxbClasses" commandName="JAXB Classes..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLMF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLMV2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLMl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLM12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLNF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLNV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLNl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLN12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLOF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLOV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLOl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLO12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLPF2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLPV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLPl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLP12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLQF2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLQV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLQl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLQ12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLRF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.submitTask" commandName="Submit Task" description="Submits the currently open task" category="_aLrrrV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLRV2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.testNgSuiteShortcut.coverage" commandName="Coverage TestNG Suite" description="Coverage TestNG Suite" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLRl2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLR12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLSF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.generate.xml" commandName="&XML File..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLSV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLSl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLS12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLTF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_aLrrm12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLxLTV2-EeiwQNQmo1Li3A" elementId="exportWizardId" name="Export Wizard"/> </commands> - <commands xmi:id="_3WETnGNQEeidIdhNuvomDQ" 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="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETnWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETnmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETn2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_3WEXUWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEToGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEToWNQEeidIdhNuvomDQ" 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="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETomNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETo2NQEeidIdhNuvomDQ" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETpGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETpWNQEeidIdhNuvomDQ" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_3WEXU2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETpmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETp2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETqGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETqWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETqmNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETq2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETrGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.connectivity.commands.showcategory" commandName="Show Category" description="Show Category" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETrWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETrmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.extractMethodInplace.assist" commandName="Quick Assist - Extract method" description="Invokes quick assist and selects 'Extract to method'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETr2NQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.p2.ui.SearchRepositories" commandName="Search Repositories" category="_3WEXMmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETsGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETsWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETsmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.disconnected" commandName="Disconnected" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETs2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETtGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.Reword" commandName="Reword Commit" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETtWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETtmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETt2NQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETuGNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeMapAs" commandName="Map As" category="_3WEXNmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WETuWNQEeidIdhNuvomDQ" elementId="specifiedPersistentAttributeMappingKey" name="specified mapping key" optional="false"/> - <parameters xmi:id="_3WETumNQEeidIdhNuvomDQ" elementId="defaultPersistentAttributeMappingKey" name="default mapping key" optional="false"/> + <commands xmi:id="_aLxLTl2-EeiwQNQmo1Li3A" 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="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLT12-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLUF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLUV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_aLrrv12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLUl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLU12-EeiwQNQmo1Li3A" 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="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLVF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLVV2-EeiwQNQmo1Li3A" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLVl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLV12-EeiwQNQmo1Li3A" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_aLsSoV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLWF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLWV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLWl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLW12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLXF2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLXV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLXl2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.connectivity.commands.showcategory" commandName="Show Category" description="Show Category" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLX12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLYF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.extractMethodInplace.assist" commandName="Quick Assist - Extract method" description="Invokes quick assist and selects 'Extract to method'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLYV2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.p2.ui.SearchRepositories" commandName="Search Repositories" category="_aLrroF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLYl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLY12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLZF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.disconnected" commandName="Disconnected" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLZV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLZl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.Reword" commandName="Reword Commit" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLZ12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLaF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLaV2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxLal2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeMapAs" commandName="Map As" category="_aLrrpF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLxLa12-EeiwQNQmo1Li3A" elementId="specifiedPersistentAttributeMappingKey" name="specified mapping key" optional="false"/> + <parameters xmi:id="_aLxyMF2-EeiwQNQmo1Li3A" elementId="defaultPersistentAttributeMappingKey" name="default mapping key" optional="false"/> </commands> - <commands xmi:id="_3WETu2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.index.ui.command.ResetIndex" commandName="Refresh Search Index" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETvGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETvWNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.paste" commandName="Paste" category="_3WEXTWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETvmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETv2NQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETwGNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.convertJavaGenerators" commandName="Move Java Generators to XML..." category="_3WEXNGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETwWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.showInSystemExplorer" commandName="Show In (System Explorer)" description="Show in system's explorer (file manager)" category="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WETwmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.showInSystemExplorer.path" name="Resource System Path Parameter"/> + <commands xmi:id="_aLxyMV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.index.ui.command.ResetIndex" commandName="Refresh Search Index" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyMl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyM12-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.paste" commandName="Paste" category="_aLrru12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyNF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyNV2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyNl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.convertJavaGenerators" commandName="Move Java Generators to XML..." category="_aLrrol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyN12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.showInSystemExplorer" commandName="Show In (System Explorer)" description="Show in system's explorer (file manager)" category="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLxyOF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.showInSystemExplorer.path" name="Resource System Path Parameter"/> </commands> - <commands xmi:id="_3WETw2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.new.local.task" commandName="New Local Task" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETxGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETxWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETxmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETx2NQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.connectivity.commands.addprofile" commandName="New Connection Profile Command" description="Command to create a new connection profile" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WETyGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.connectivity.ui.ignoreCategory" name="ignoreCategory"/> - <parameters xmi:id="_3WETyWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.connectivity.ui.useSelection" name="useSelection"/> + <commands xmi:id="_aLxyOV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.new.local.task" commandName="New Local Task" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyOl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyO12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyPF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyPV2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.connectivity.commands.addprofile" commandName="New Connection Profile Command" description="Command to create a new connection profile" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLxyPl2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.connectivity.ui.ignoreCategory" name="ignoreCategory"/> + <parameters xmi:id="_aLxyP12-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.connectivity.ui.useSelection" name="useSelection"/> </commands> - <commands xmi:id="_3WETymNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Index" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETy2NQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.discovery.ui" commandName="m2e Marketplace" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETzGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.zoomOut" commandName="Zoom Out" description="Zoom out text, decrease default font size for text editors" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETzWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskIncomplete" commandName="Mark Task Incomplete" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETzmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WETz2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET0GNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET0WNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET0mNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET02NQEeidIdhNuvomDQ" 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="_3WEXImNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WET1GNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_aLxyQF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Index" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyQV2-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.discovery.ui" commandName="m2e Marketplace" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyQl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.zoomOut" commandName="Zoom Out" description="Zoom out text, decrease default font size for text editors" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyQ12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskIncomplete" commandName="Mark Task Incomplete" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyRF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyRV2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyRl2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyR12-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxySF2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxySV2-EeiwQNQmo1Li3A" 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="_aLrrkF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLxySl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_3WET1WNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToNextUnread" commandName="Mark Task Read and Go To Next Unread Task" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET1mNQEeidIdhNuvomDQ" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_3WEXPGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET12NQEeidIdhNuvomDQ" elementId="org.eclipse.buildship.ui.commands.rundefaulttasks" commandName="Run Gradle Default Tasks" description="Runs the default tasks of the selected Gradle project" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET2GNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.generateEntities" commandName="Generate Entities from Tables..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET2WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET2mNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.removeActiveSession" commandName="Remove Active Session" category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET22NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskRead" commandName="Mark Task Read" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET3GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET3WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET3mNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET32NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET4GNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.pagedesigner.vertical" commandName="Vertical Layout" category="_3WEXPmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET4WNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET4mNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.addToPersistenceUnit" commandName="Add to Persistence Unit" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET42NQEeidIdhNuvomDQ" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_3WEXRmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET5GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_3WEXLWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WET5WNQEeidIdhNuvomDQ" elementId="mayPrompt" name="may prompt"/> + <commands xmi:id="_aLxyS12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToNextUnread" commandName="Mark Task Read and Go To Next Unread Task" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyTF2-EeiwQNQmo1Li3A" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_aLrrql2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyTV2-EeiwQNQmo1Li3A" elementId="org.eclipse.buildship.ui.commands.rundefaulttasks" commandName="Run Gradle Default Tasks" description="Runs the default tasks of the selected Gradle project" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyTl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.generateEntities" commandName="Generate Entities from Tables..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyT12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyUF2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.removeActiveSession" commandName="Remove Active Session" category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyUV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskRead" commandName="Mark Task Read" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyUl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyU12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyVF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyVV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyVl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.pagedesigner.vertical" commandName="Vertical Layout" category="_aLrrrF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyV12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyWF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.addToPersistenceUnit" commandName="Add to Persistence Unit" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyWV2-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_aLrrtF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyWl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_aLrrm12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLxyW12-EeiwQNQmo1Li3A" elementId="mayPrompt" name="may prompt"/> </commands> - <commands xmi:id="_3WET5mNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.xml.commands.empty" commandName="Empty command" description="Command which does nothing" category="_3WEXI2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET52NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET6GNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.CompareWithCommit" commandName="Compare with Commit..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET6WNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET6mNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateAllTasks" commandName="Deactivate Task" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET62NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET7GNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET7WNQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.core.ui.command.updateProject" commandName="Update Project" description="Update Maven Project configuration and dependencies" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET7mNQEeidIdhNuvomDQ" elementId="org.eclipse.tools.layout.spy.commands.layoutSpyCommand" commandName="Layout Spy" description="Show the Layout Spy" category="_3WEXVWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET72NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET8GNQEeidIdhNuvomDQ" elementId="refresh.schema.editor.action.id" commandName="Refresh from Server" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET8WNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET8mNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET82NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET9GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET9WNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.convertJavaQueries" commandName="Move Java Queries to XML..." category="_3WEXNGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET9mNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET92NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET-GNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.swtBotJunitShortcut.coverage" commandName="Coverage SWTBot Test" description="Coverage SWTBot Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET-WNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET-mNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.jsp.ui.refactor.move" commandName="Move" description="Move a Java Element to another package" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET-2NQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET_GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET_WNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.pastecolumn" commandName="Paste" category="_3WEXSGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET_mNQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.core.pomFileAction.run" commandName="Run Maven Build" description="Run Maven Build" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WET_2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.linkWithSelection" commandName="Link with Current Selection" category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUAGNQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.actions.LifeCycleInstall.run" commandName="Run Maven Install" description="Run Maven Install" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUAWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteCurrentAction" commandName="Execute Current Text" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUAmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUA2NQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.editor.perform" commandName="Perform Setup Tasks" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUBGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUBWNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUBmNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUB2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUCGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUCWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUCmNQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.updatepasswordcommand" commandName="Update Password..." description="Update Password" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUC2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUDGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.commons.ui.command.AddRepository" commandName="Add Repository" category="_3WEXN2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUDWNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.commands.empty" commandName="Empty command" description="Command which does nothing" category="_3WEXI2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUDmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUD2NQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUEGNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUEWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUEmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_3WEXLmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEUE2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/> + <commands xmi:id="_aLxyXF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.xml.commands.empty" commandName="Empty command" description="Command which does nothing" category="_aLrrkV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyXV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyXl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.CompareWithCommit" commandName="Compare with Commit..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyX12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyYF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateAllTasks" commandName="Deactivate Task" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyYV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyYl2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyY12-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.core.ui.command.updateProject" commandName="Update Project" description="Update Maven Project configuration and dependencies" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyZF2-EeiwQNQmo1Li3A" elementId="org.eclipse.tools.layout.spy.commands.layoutSpyCommand" commandName="Layout Spy" description="Show the Layout Spy" category="_aLsSo12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyZV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyZl2-EeiwQNQmo1Li3A" elementId="refresh.schema.editor.action.id" commandName="Refresh from Server" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyZ12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyaF2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyaV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyal2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxya12-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.convertJavaQueries" commandName="Move Java Queries to XML..." category="_aLrrol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxybF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxybV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxybl2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.swtBotJunitShortcut.coverage" commandName="Coverage SWTBot Test" description="Coverage SWTBot Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyb12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxycF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.jsp.ui.refactor.move" commandName="Move" description="Move a Java Element to another package" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxycV2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxycl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyc12-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.pastecolumn" commandName="Paste" category="_aLrrtl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxydF2-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.core.pomFileAction.run" commandName="Run Maven Build" description="Run Maven Build" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxydV2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.linkWithSelection" commandName="Link with Current Selection" category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxydl2-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.actions.LifeCycleInstall.run" commandName="Run Maven Install" description="Run Maven Install" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyd12-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteCurrentAction" commandName="Execute Current Text" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyeF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyeV2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.editor.perform" commandName="Perform Setup Tasks" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLxyel2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZQF2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZQV2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZQl2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZQ12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZRF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZRV2-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.updatepasswordcommand" commandName="Update Password..." description="Update Password" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZRl2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZR12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.commons.ui.command.AddRepository" commandName="Add Repository" category="_aLrrpV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZSF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.commands.empty" commandName="Empty command" description="Command which does nothing" category="_aLrrkV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZSV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZSl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZS12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZTF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZTV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_aLrrnF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLyZTl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/> </commands> - <commands xmi:id="_3WEUFGNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUFWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUFmNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUF2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUGGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_3WEXS2NQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEUGWNQEeidIdhNuvomDQ" elementId="cheatSheetId" name="Identifier" optional="false"/> - <parameters xmi:id="_3WEUGmNQEeidIdhNuvomDQ" elementId="name" name="Name" optional="false"/> - <parameters xmi:id="_3WEUG2NQEeidIdhNuvomDQ" elementId="url" name="URL" optional="false"/> + <commands xmi:id="_aLyZT12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZUF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZUV2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZUl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZU12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_aLrruV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLyZVF2-EeiwQNQmo1Li3A" elementId="cheatSheetId" name="Identifier" optional="false"/> + <parameters xmi:id="_aLyZVV2-EeiwQNQmo1Li3A" elementId="name" name="Name" optional="false"/> + <parameters xmi:id="_aLyZVl2-EeiwQNQmo1Li3A" elementId="url" name="URL" optional="false"/> </commands> - <commands xmi:id="_3WEUHGNQEeidIdhNuvomDQ" elementId="revert.schema.editor.action.id" commandName="Revert Object" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUHWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.debug" commandName="Debug XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUHmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUH2NQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.core.ui.command.addDependency" commandName="Add Maven Dependency" description="Add Maven Dependency" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUIGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUIWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUImNQEeidIdhNuvomDQ" elementId="org.eclipse.rse.shells.ui.actions.LaunchShellCommand" commandName="Launch Shell" category="_3WEXR2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUI2NQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.core.synchronizeClasses" commandName="Synchronize Class List" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUJGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.breakpoint.properties" commandName="Breakpoint Properties..." description="Modify breakpoint properties" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUJWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUJmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUJ2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUKGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUKWNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUKmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUK2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEULGNQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.editor.RenameArtifactAction" commandName="Rename Maven Artifact..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEULWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEULmNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSQLAction" commandName="Execute All" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUL2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUMGNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.api.tools.ui.remove.filters" commandName="Remove &API Problem Filters..." description="Remove API problem filters for this project" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUMWNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.view.ui.command.newview" commandName="New Terminal View" category="_3WEXRWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUMmNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUM2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUNGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUNWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUNmNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUN2NQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUOGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEUOWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/> + <commands xmi:id="_aLyZV12-EeiwQNQmo1Li3A" elementId="revert.schema.editor.action.id" commandName="Revert Object" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZWF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.debug" commandName="Debug XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZWV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZWl2-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.core.ui.command.addDependency" commandName="Add Maven Dependency" description="Add Maven Dependency" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZW12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZXF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZXV2-EeiwQNQmo1Li3A" elementId="org.eclipse.rse.shells.ui.actions.LaunchShellCommand" commandName="Launch Shell" category="_aLrrtV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZXl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.core.synchronizeClasses" commandName="Synchronize Class List" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZX12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.breakpoint.properties" commandName="Breakpoint Properties..." description="Modify breakpoint properties" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZYF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZYV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZYl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZY12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZZF2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZZV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZZl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZZ12-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.editor.RenameArtifactAction" commandName="Rename Maven Artifact..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZaF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZaV2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSQLAction" commandName="Execute All" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZal2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZa12-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.api.tools.ui.remove.filters" commandName="Remove &API Problem Filters..." description="Remove API problem filters for this project" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZbF2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.view.ui.command.newview" commandName="New Terminal View" category="_aLrrs12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZbV2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZbl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZb12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZcF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZcV2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZcl2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZc12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLyZdF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/> </commands> - <commands xmi:id="_3WEUOmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUO2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUPGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.js.gulp.commands.gulpLaunch" commandName="Run as Gulp Task" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUPWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEUPmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/> + <commands xmi:id="_aLyZdV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZdl2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZd12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.js.gulp.commands.gulpLaunch" commandName="Run as Gulp Task" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZeF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLyZeV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/> </commands> - <commands xmi:id="_3WEUP2NQEeidIdhNuvomDQ" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUQGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUQWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_3WEXMWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEUQmNQEeidIdhNuvomDQ" elementId="title" name="Title"/> - <parameters xmi:id="_3WEUQ2NQEeidIdhNuvomDQ" elementId="message" name="Message"/> - <parameters xmi:id="_3WEURGNQEeidIdhNuvomDQ" elementId="initialValue" name="Initial Value"/> - <parameters xmi:id="_3WEURWNQEeidIdhNuvomDQ" elementId="cancelReturns" name="Return Value on Cancel"/> + <commands xmi:id="_aLyZel2-EeiwQNQmo1Li3A" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZe12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZfF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_aLrrn12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLyZfV2-EeiwQNQmo1Li3A" elementId="title" name="Title"/> + <parameters xmi:id="_aLyZfl2-EeiwQNQmo1Li3A" elementId="message" name="Message"/> + <parameters xmi:id="_aLyZf12-EeiwQNQmo1Li3A" elementId="initialValue" name="Initial Value"/> + <parameters xmi:id="_aLyZgF2-EeiwQNQmo1Li3A" elementId="cancelReturns" name="Return Value on Cancel"/> </commands> - <commands xmi:id="_3WEURmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUR2NQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_3WEXI2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUSGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUSWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskComplete" commandName="Mark Task Complete" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUSmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUS2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUTGNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUTWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUTmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUT2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.commands.CoverageLast" commandName="Coverage" description="Coverage" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUUGNQEeidIdhNuvomDQ" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_3WEXRmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUUWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.cutcolumn" commandName="Cut" category="_3WEXSGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUUmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_3WEXRGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUU2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUVGNQEeidIdhNuvomDQ" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUVWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUVmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUV2NQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.commands.switch" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_3WEXI2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUWGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUWWNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUWmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearActiveTime" commandName="Clear Active Time" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUW2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id Information To Clipboard" description="Copies the build identification information to the clipboard." category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUXGNQEeidIdhNuvomDQ" elementId="org.eclipse.buildship.ui.commands.refreshproject" commandName="Refresh Gradle Project" description="Synchronizes the Gradle builds of the selected projects with the workspace" category="_3WEXJWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUXWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUXmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands.task.attachContext" commandName="Attach Context" category="_3WEXJ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUX2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor" commandName="XPath Processor" category="_3WEXNWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEUYGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.commands.radioStateParameter" name="State" optional="false"/> + <commands xmi:id="_aLyZgV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZgl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchAction" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_aLrrkV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZg12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZhF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskComplete" commandName="Mark Task Complete" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZhV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZhl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZh12-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZiF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZiV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZil2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.commands.CoverageLast" commandName="Coverage" description="Coverage" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZi12-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_aLrrtF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZjF2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.cutcolumn" commandName="Cut" category="_aLrrtl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZjV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_aLrrsl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZjl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZj12-EeiwQNQmo1Li3A" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZkF2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZkV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZkl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.commands.switch" commandName="Switch Source/Design Views" description="Switch between the Source and Design views." category="_aLrrkV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZk12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZlF2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZlV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearActiveTime" commandName="Clear Active Time" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLyZll2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id Information To Clipboard" description="Copies the build identification information to the clipboard." category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAUF2-EeiwQNQmo1Li3A" elementId="org.eclipse.buildship.ui.commands.refreshproject" commandName="Refresh Gradle Project" description="Synchronizes the Gradle builds of the selected projects with the workspace" category="_aLrrk12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAUV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAUl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands.task.attachContext" commandName="Attach Context" category="_aLrrlV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAU12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor" commandName="XPath Processor" category="_aLrro12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLzAVF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.commands.radioStateParameter" name="State" optional="false"/> </commands> - <commands xmi:id="_3WEUYWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUYmNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.connector.local.command.launch" commandName="Open Local Terminal on Selection" category="_3WEXRWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUY2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_3WEXLmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEUZGNQEeidIdhNuvomDQ" elementId="preferencePageId" name="Preference Page"/> + <commands xmi:id="_aLzAVV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAVl2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.connector.local.command.launch" commandName="Open Local Terminal on Selection" category="_aLrrs12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAV12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_aLrrnF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLzAWF2-EeiwQNQmo1Li3A" elementId="preferencePageId" name="Preference Page"/> </commands> - <commands xmi:id="_3WEUZWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUZmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUZ2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUaGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUaWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUamNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUa2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUbGNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUbWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUbmNQEeidIdhNuvomDQ" 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="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUb2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUcGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUcWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUcmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUc2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUdGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUdWNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.resetOnDump" commandName="Reset on Dump" category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUdmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUd2NQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_3WEXTWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUeGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUeWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUemNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUe2NQEeidIdhNuvomDQ" 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="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUfGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUfWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUfmNQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.actions.LifeCycleTest.run" commandName="Run Maven Test" description="Run Maven Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUf2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.run" commandName="Run XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUgGNQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.internal.actions.remaptoprojectcommand" commandName="Link with Project" description="Link the cloud application with the project." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUgWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUgmNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUg2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUhGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUhWNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUhmNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUh2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUiGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUiWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUimNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUi2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUjGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Index with HEAD Revision" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUjWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUjmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUj2NQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jaxb.eclipselink.ui.command.addEclipseLinkJaxbProperty" commandName="Add EclipseLink JAXB property" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUkGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.convertToDocbookCommand" commandName="Generate Docbook" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUkWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUkmNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUk2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUlGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUlWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUlmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUl2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUmGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUmWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUmmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUm2NQEeidIdhNuvomDQ" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUnGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Repository" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUnWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUnmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUn2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUoGNQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.disconnectcommand" commandName="Disconnect" description="Disconnect Server" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUoWNQEeidIdhNuvomDQ" 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="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUomNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUo2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUpGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUpWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands.open.context.dialog" commandName="Show Context Quick View" description="Show Context Quick View" category="_3WEXJ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUpmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUp2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUqGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.CompareWithRef" commandName="Compare with Branch, Tag or Reference..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUqWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands.attachment.retrieveContext" commandName="Retrieve Context Attachment" category="_3WEXJ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUqmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUq2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUrGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUrWNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUrmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.RefreshRepositoryTasks" commandName="Synchronize Changed" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUr2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUsGNQEeidIdhNuvomDQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEUsWNQEeidIdhNuvomDQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/> + <commands xmi:id="_aLzAWV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAWl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAW12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAXF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAXV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAXl2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAX12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAYF2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAYV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAYl2-EeiwQNQmo1Li3A" 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="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAY12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAZF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAZV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAZl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAZ12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAaF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAaV2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.resetOnDump" commandName="Reset on Dump" category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAal2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAa12-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_aLrru12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAbF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAbV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAbl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAb12-EeiwQNQmo1Li3A" 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="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAcF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAcV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAcl2-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.actions.LifeCycleTest.run" commandName="Run Maven Test" description="Run Maven Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAc12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.run" commandName="Run XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAdF2-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.internal.actions.remaptoprojectcommand" commandName="Link with Project" description="Link the cloud application with the project." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAdV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAdl2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAd12-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAeF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAeV2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAel2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAe12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAfF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAfV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAfl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAf12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAgF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Index with HEAD Revision" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAgV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAgl2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAg12-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jaxb.eclipselink.ui.command.addEclipseLinkJaxbProperty" commandName="Add EclipseLink JAXB property" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAhF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.convertToDocbookCommand" commandName="Generate Docbook" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAhV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAhl2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAh12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAiF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAiV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAil2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAi12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAjF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAjV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAjl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAj12-EeiwQNQmo1Li3A" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAkF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Repository" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAkV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAkl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAk12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAlF2-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.disconnectcommand" commandName="Disconnect" description="Disconnect Server" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAlV2-EeiwQNQmo1Li3A" 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="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAll2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAl12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAmF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAmV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands.open.context.dialog" commandName="Show Context Quick View" description="Show Context Quick View" category="_aLrrlV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAml2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAm12-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAnF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.CompareWithRef" commandName="Compare with Branch, Tag or Reference..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAnV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands.attachment.retrieveContext" commandName="Retrieve Context Attachment" category="_aLrrlV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAnl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAn12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAoF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAoV2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAol2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.RefreshRepositoryTasks" commandName="Synchronize Changed" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAo12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzApF2-EeiwQNQmo1Li3A" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLzApV2-EeiwQNQmo1Li3A" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/> </commands> - <commands xmi:id="_3WEUsmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUs2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUtGNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUtWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUtmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUt2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUuGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUuWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUumNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUu2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands.interest.increment" commandName="Make Landmark" description="Make Landmark" category="_3WEXJ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUvGNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUvWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUvmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUv2NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUwGNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUwWNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUwmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUw2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUxGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Push" commandName="Push..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUxWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUxmNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.convertJavaProjectToJpa" commandName="Convert to JPA Project..." category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUx2NQEeidIdhNuvomDQ" elementId="org.eclipse.emf.codegen.ecore.ui.Generate" commandName="Generate Code" description="Generate code for the EMF models in the workspace" category="_3WEXSmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUyGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUyWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUymNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_3WEXUWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUy2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUzGNQEeidIdhNuvomDQ" 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="_3WEXImNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEUzWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/> + <commands xmi:id="_aLzApl2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzAp12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznYF2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznYV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznYl2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznY12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznZF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznZV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznZl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznZ12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands.interest.increment" commandName="Make Landmark" description="Make Landmark" category="_aLrrlV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznaF2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznaV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznal2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzna12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznbF2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznbV2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznbl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznb12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzncF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Push" commandName="Push..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzncV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzncl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.convertJavaProjectToJpa" commandName="Convert to JPA Project..." category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznc12-EeiwQNQmo1Li3A" elementId="org.eclipse.emf.codegen.ecore.ui.Generate" commandName="Generate Code" description="Generate code for the EMF models in the workspace" category="_aLrruF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzndF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzndV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzndl2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_aLrrv12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznd12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzneF2-EeiwQNQmo1Li3A" 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="_aLrrkF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLzneV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/> </commands> - <commands xmi:id="_3WEUzmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEUz2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU0GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU0WNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU0mNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU02NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU1GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU1WNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU1mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU12NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU2GNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.eclipselink.ui.generateDynamicEntities" commandName="Generate Dynamic Entities from Tables..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU2WNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU2mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU22NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU3GNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU3WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.zoomIn" commandName="Zoom In" description="Zoom in text, increase default font size for text editors" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU3mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU32NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU4GNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU4WNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU4mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU42NQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU5GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.markers.copyMarkerResourceQualifiedName" commandName="Copy Resource Qualified Name To Clipboard" description="Copies markers resource qualified name to the clipboard" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU5WNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU5mNQEeidIdhNuvomDQ" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU52NQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU6GNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU6WNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_3WEXVWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU6mNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.entityMappingsAddPersistentClass" commandName="Add Class..." category="_3WEXNmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU62NQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU7GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU7WNQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.core.ui.command.openPom" commandName="Open Maven POM" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU7mNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.index.rebuild" commandName="Rebuild Java Index" description="Rebuilds the Java index database" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU72NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU8GNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU8WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU8mNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.goToPreviousUnread" commandName="Go To Previous Unread Task" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU82NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU9GNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU9WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_3WEXPWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEU9mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.viewId" name="View"/> - <parameters xmi:id="_3WEU92NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/> - <parameters xmi:id="_3WEU-GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/> + <commands xmi:id="_aLznel2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzne12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznfF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznfV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznfl2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznf12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzngF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzngV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzngl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzng12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznhF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.eclipselink.ui.generateDynamicEntities" commandName="Generate Dynamic Entities from Tables..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznhV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznhl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznh12-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzniF2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzniV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.zoomIn" commandName="Zoom In" description="Zoom in text, increase default font size for text editors" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznil2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzni12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznjF2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznjV2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznjl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznj12-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznkF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.markers.copyMarkerResourceQualifiedName" commandName="Copy Resource Qualified Name To Clipboard" description="Copies markers resource qualified name to the clipboard" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznkV2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznkl2-EeiwQNQmo1Li3A" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznk12-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznlF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznlV2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_aLsSo12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznll2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.entityMappingsAddPersistentClass" commandName="Add Class..." category="_aLrrpF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznl12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznmF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznmV2-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.core.ui.command.openPom" commandName="Open Maven POM" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznml2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.index.rebuild" commandName="Rebuild Java Index" description="Rebuilds the Java index database" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznm12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznnF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznnV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznnl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.goToPreviousUnread" commandName="Go To Previous Unread Task" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznn12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznoF2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznoV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_aLrrq12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLznol2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.viewId" name="View"/> + <parameters xmi:id="_aLzno12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/> + <parameters xmi:id="_aLznpF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/> </commands> - <commands xmi:id="_3WEU-WNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU-mNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.Edit" commandName="Edit Commit" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU-2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEU_GNQEeidIdhNuvomDQ" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/> + <commands xmi:id="_aLznpV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznpl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.Edit" commandName="Edit Commit" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznp12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLznqF2-EeiwQNQmo1Li3A" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/> </commands> - <commands xmi:id="_3WEU_WNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEU_mNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.selectRootElements" commandName="Select Root Elements" category="_3WEXLGNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEU_2NQEeidIdhNuvomDQ" elementId="type" name="type" optional="false"/> + <commands xmi:id="_aLznqV2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznql2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.selectRootElements" commandName="Select Root Elements" category="_aLrrml2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aLznq12-EeiwQNQmo1Li3A" elementId="type" name="type" optional="false"/> </commands> - <commands xmi:id="_3WEVAGNQEeidIdhNuvomDQ" 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="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVAWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVAmNQEeidIdhNuvomDQ" 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="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVA2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVBGNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVBWNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVBmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_3WEXKmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVB2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVCGNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVCWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.addTaskRepository" commandName="Add Task Repository..." category="_3WEXKWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEVCmNQEeidIdhNuvomDQ" elementId="connectorKind" name="Repository Type"/> + <commands xmi:id="_aLznrF2-EeiwQNQmo1Li3A" 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="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznrV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznrl2-EeiwQNQmo1Li3A" 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="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznr12-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznsF2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznsV2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLznsl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_aLrrmF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzns12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aLzntF2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OcF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.addTaskRepository" commandName="Add Task Repository..." category="_aLrrl12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL0OcV2-EeiwQNQmo1Li3A" elementId="connectorKind" name="Repository Type"/> </commands> - <commands xmi:id="_3WEVC2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.removeAllSessions" commandName="Remove All Sessions" category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVDGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVDWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVDmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVD2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.wsdl.ui.refactor.rename.element" commandName="Rename WSDL component" description="Renames WSDL component" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVEGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_3WEXS2NQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEVEWNQEeidIdhNuvomDQ" elementId="cheatSheetId" name="Identifier"/> + <commands xmi:id="_aL0Ocl2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.removeAllSessions" commandName="Remove All Sessions" category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oc12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OdF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OdV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Odl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.wsdl.ui.refactor.rename.element" commandName="Rename WSDL component" description="Renames WSDL component" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Od12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_aLrruV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL0OeF2-EeiwQNQmo1Li3A" elementId="cheatSheetId" name="Identifier"/> </commands> - <commands xmi:id="_3WEVEmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.viewSource.command" commandName="View Unformatted Text" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVE2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVFGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVFWNQEeidIdhNuvomDQ" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVFmNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEVF2NQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/> + <commands xmi:id="_aL0OeV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.viewSource.command" commandName="View Unformatted Text" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oel2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oe12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OfF2-EeiwQNQmo1Li3A" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OfV2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL0Ofl2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/> </commands> - <commands xmi:id="_3WEVGGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVGWNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVGmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVG2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVHGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVHWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.PullWithOptions" commandName="Pull..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVHmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVH2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVIGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_3WEXKmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVIWNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVImNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVI2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVJGNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVJWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskUnread" commandName="Mark Task Unread" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVJmNQEeidIdhNuvomDQ" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVJ2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVKGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVKWNQEeidIdhNuvomDQ" 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="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVKmNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.view.ui.command.launch" commandName="Open Terminal on Selection" category="_3WEXRWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVK2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVLGNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEVLWNQEeidIdhNuvomDQ" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_aL0Of12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OgF2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OgV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ogl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Og12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OhF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.PullWithOptions" commandName="Pull..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OhV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ohl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oh12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_aLrrmF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OiF2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OiV2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oil2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oi12-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OjF2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskUnread" commandName="Mark Task Unread" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OjV2-EeiwQNQmo1Li3A" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ojl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oj12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OkF2-EeiwQNQmo1Li3A" 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="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OkV2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.view.ui.command.launch" commandName="Open Terminal on Selection" category="_aLrrs12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Okl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ok12-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL0OlF2-EeiwQNQmo1Li3A" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_3WEVLmNQEeidIdhNuvomDQ" 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="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVL2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVMGNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.editor.openEditorDropdown" commandName="Open Setup Editor" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVMWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVMmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ReplaceWithPrevious" commandName="Replace with Previous Revision" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVM2NQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.ui.questionnaire" commandName="Configuration Questionnaire" description="Review the IDE's most fiercely contested preferences" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVNGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Shared Area Visibility" description="Toggles the visibility of the shared area" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVNWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVNmNQEeidIdhNuvomDQ" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVN2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVOGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.GotoMatchingTokenAction" commandName="Goto Matching Token" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVOWNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.api.tools.ui.setup.projects" commandName="API &Tools Setup..." description="Configure projects for API usage and compatibility checks" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVOmNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVO2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVPGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVPWNQEeidIdhNuvomDQ" elementId="org.eclipse.buildship.ui.commands.openbuildscript" commandName="Open Gradle Build Script" description="Opens the Gradle build script for the selected Gradle project" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVPmNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.eclipselink.ui.convertJavaConverters" commandName="Move Java Converters to XML..." category="_3WEXNGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVP2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVQGNQEeidIdhNuvomDQ" elementId="org.eclipse.buildship.ui.commands.openrunconfiguration" commandName="Open Gradle Run Configuration" description="Opens the Run Configuration for the selected Gradle tasks" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVQWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.DeleteTag" commandName="&Delete Tag" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVQmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVQ2NQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.internal.actions.unmapprojectcommand" commandName="Unlink Project" description="Unlink the cloud application and the project." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVRGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVRWNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVRmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVR2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVSGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVSWNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.copy" commandName="Copy" category="_3WEXTWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVSmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVS2NQEeidIdhNuvomDQ" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_3WEXRmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVTGNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVTWNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVTmNQEeidIdhNuvomDQ" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_3WEXUmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVT2NQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVUGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase on" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVUWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.ShowInHistory" commandName="Show in History" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVUmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.previousTask" commandName="Previous Task Command" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVU2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVVGNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVVWNQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.internal.actions.updaterestartmodulecommand" commandName="Update and Restart" description="=Update and Restart" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVVmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVV2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVWGNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.utils.rcp.commands.openPreferences" commandName="Open the preferences dialog" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEVWWNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> + <commands xmi:id="_aL0OlV2-EeiwQNQmo1Li3A" 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="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oll2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ol12-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.editor.openEditorDropdown" commandName="Open Setup Editor" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OmF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OmV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ReplaceWithPrevious" commandName="Replace with Previous Revision" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oml2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.ui.questionnaire" commandName="Configuration Questionnaire" description="Review the IDE's most fiercely contested preferences" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Om12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Shared Area Visibility" description="Toggles the visibility of the shared area" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OnF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OnV2-EeiwQNQmo1Li3A" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Onl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0On12-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.GotoMatchingTokenAction" commandName="Goto Matching Token" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OoF2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.api.tools.ui.setup.projects" commandName="API &Tools Setup..." description="Configure projects for API usage and compatibility checks" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OoV2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ool2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oo12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OpF2-EeiwQNQmo1Li3A" elementId="org.eclipse.buildship.ui.commands.openbuildscript" commandName="Open Gradle Build Script" description="Opens the Gradle build script for the selected Gradle project" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OpV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.eclipselink.ui.convertJavaConverters" commandName="Move Java Converters to XML..." category="_aLrrol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Opl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Op12-EeiwQNQmo1Li3A" elementId="org.eclipse.buildship.ui.commands.openrunconfiguration" commandName="Open Gradle Run Configuration" description="Opens the Run Configuration for the selected Gradle tasks" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OqF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.DeleteTag" commandName="&Delete Tag" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OqV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oql2-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.internal.actions.unmapprojectcommand" commandName="Unlink Project" description="Unlink the cloud application and the project." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oq12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OrF2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OrV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Orl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Or12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OsF2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.copy" commandName="Copy" category="_aLrru12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OsV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Osl2-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_aLrrtF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Os12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OtF2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OtV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_aLsSoF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Otl2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ot12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase on" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OuF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.ShowInHistory" commandName="Show in History" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OuV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.previousTask" commandName="Previous Task Command" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Oul2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ou12-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OvF2-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.internal.actions.updaterestartmodulecommand" commandName="Update and Restart" description="=Update and Restart" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0OvV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ovl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL0Ov12-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.utils.rcp.commands.openPreferences" commandName="Open the preferences dialog" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL0OwF2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> </commands> - <commands xmi:id="_3WEVWmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVW2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVXGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToPreviousUnread" commandName="Mark Task Read and Go To Previous Unread Task" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVXWNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVXmNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVX2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVYGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVYWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVYmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVY2NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVZGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVZWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVZmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVZ2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVaGNQEeidIdhNuvomDQ" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVaWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVamNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVa2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVbGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVbWNQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.core.ui.command.addPlugin" commandName="Add Maven Plugin" description="Add Maven Plugin" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVbmNQEeidIdhNuvomDQ" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVb2NQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVcGNQEeidIdhNuvomDQ" 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="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVcWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVcmNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.mergeSessions" commandName="Merge Sessions" category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVc2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVdGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVdWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVdmNQEeidIdhNuvomDQ" 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="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVd2NQEeidIdhNuvomDQ" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_3WEXRmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVeGNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVeWNQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.connectcommand" commandName="Connect" description="Connect to Server" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVemNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVe2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVfGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVfWNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.eclipselink.ui.persistentTypeAddVirtualAttribute" commandName="Add Virtual Attribute..." category="_3WEXNmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVfmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_3WEXUWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEVf2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/> - <parameters xmi:id="_3WEVgGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/> + <commands xmi:id="_aL01gF2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01gV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01gl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToPreviousUnread" commandName="Mark Task Read and Go To Previous Unread Task" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01g12-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01hF2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01hV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01hl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01h12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01iF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01iV2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01il2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01i12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01jF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01jV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01jl2-EeiwQNQmo1Li3A" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01j12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01kF2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01kV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01kl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01k12-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.core.ui.command.addPlugin" commandName="Add Maven Plugin" description="Add Maven Plugin" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01lF2-EeiwQNQmo1Li3A" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01lV2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01ll2-EeiwQNQmo1Li3A" 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="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01l12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01mF2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.mergeSessions" commandName="Merge Sessions" category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01mV2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01ml2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01m12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01nF2-EeiwQNQmo1Li3A" 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="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01nV2-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_aLrrtF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01nl2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01n12-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.connectcommand" commandName="Connect" description="Connect to Server" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01oF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01oV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01ol2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01o12-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.eclipselink.ui.persistentTypeAddVirtualAttribute" commandName="Add Virtual Attribute..." category="_aLrrpF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01pF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_aLrrv12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL01pV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/> + <parameters xmi:id="_aL01pl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/> </commands> - <commands xmi:id="_3WEVgWNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.eclipselink.ui.newDynamicEntity" commandName="EclipseLink Dynamic Entity" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVgmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVg2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVhGNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVhWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVhmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVh2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEViGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.saveToDatabaseAction" commandName="Save to Database" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEViWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVimNQEeidIdhNuvomDQ" 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="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVi2NQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVjGNQEeidIdhNuvomDQ" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_3WEXRmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVjWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVjmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Revision Information" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVj2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVkGNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXml" commandName="Add Attribute to XML" category="_3WEXNmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVkWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVkmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVk2NQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.selectCounters" commandName="Select Counters" category="_3WEXLGNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEVlGNQEeidIdhNuvomDQ" elementId="type" name="type" optional="false"/> + <commands xmi:id="_aL01p12-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.eclipselink.ui.newDynamicEntity" commandName="EclipseLink Dynamic Entity" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01qF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01qV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01ql2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01q12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01rF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01rV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01rl2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.saveToDatabaseAction" commandName="Save to Database" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01r12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01sF2-EeiwQNQmo1Li3A" 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="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01sV2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01sl2-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_aLrrtF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01s12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01tF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Revision Information" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01tV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01tl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXml" commandName="Add Attribute to XML" category="_aLrrpF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01t12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01uF2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01uV2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.selectCounters" commandName="Select Counters" category="_aLrrml2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL01ul2-EeiwQNQmo1Li3A" elementId="type" name="type" optional="false"/> </commands> - <commands xmi:id="_3WEVlWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVlmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVl2NQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.persistentTypeMapAs" commandName="Map As" category="_3WEXNmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEVmGNQEeidIdhNuvomDQ" elementId="persistentTypeMappingKey" name="mapping key" optional="false"/> + <commands xmi:id="_aL01u12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01vF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01vV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.persistentTypeMapAs" commandName="Map As" category="_aLrrpF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL01vl2-EeiwQNQmo1Li3A" elementId="persistentTypeMappingKey" name="mapping key" optional="false"/> </commands> - <commands xmi:id="_3WEVmWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.DMLDialogSelectionAction" commandName="Edit in SQL Query Builder..." category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVmmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVm2NQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.dbws.ui.generateDbws" commandName="Generate Database Web Services" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVnGNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVnWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVnmNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.attachProfileAction" commandName="Set Connection Information" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVn2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVoGNQEeidIdhNuvomDQ" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_3WEXUmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVoWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVomNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVo2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVpGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVpWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.connectivity.commands.import" commandName="Import Profiles Command" description="Command to import connection profiles" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVpmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVp2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVqGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearOutgoing" commandName="Clear Outgoing Changes" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVqWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVqmNQEeidIdhNuvomDQ" elementId="org.eclipse.epp.mpc.ui.command.showFavorites" commandName="Eclipse Marketplace Favorites" description="Open Marketplace Favorites" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVq2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVrGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVrWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVrmNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVr2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVsGNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Check Out" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVsWNQEeidIdhNuvomDQ" elementId="org.eclipse.m2e.actions.LifeCycleClean.run" commandName="Run Maven Clean" description="Run Maven Clean" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVsmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVs2NQEeidIdhNuvomDQ" 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="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVtGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.convertToEclipseHelpCommand" commandName="Generate Eclipse Help (*.html and *-toc.xml)" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVtWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVtmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVt2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVuGNQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" commandName="Switch Source/Design Editors" description="Switch between the Source and Design editors." category="_3WEXI2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVuWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.configureFilters" commandName="Filters..." description="Configure the filters to apply to the markers view" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVumNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.importSession" commandName="Import Session..." category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVu2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVvGNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVvWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_3WEXMWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEVvmNQEeidIdhNuvomDQ" elementId="title" name="Title"/> - <parameters xmi:id="_3WEVv2NQEeidIdhNuvomDQ" elementId="message" name="Message"/> - <parameters xmi:id="_3WEVwGNQEeidIdhNuvomDQ" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/> - <parameters xmi:id="_3WEVwWNQEeidIdhNuvomDQ" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/> - <parameters xmi:id="_3WEVwmNQEeidIdhNuvomDQ" elementId="buttonLabel0" name="First Button Label"/> - <parameters xmi:id="_3WEVw2NQEeidIdhNuvomDQ" elementId="buttonLabel1" name="Second Button Label"/> - <parameters xmi:id="_3WEVxGNQEeidIdhNuvomDQ" elementId="buttonLabel2" name="Third Button Label"/> - <parameters xmi:id="_3WEVxWNQEeidIdhNuvomDQ" elementId="buttonLabel3" name="Fourth Button Label"/> - <parameters xmi:id="_3WEVxmNQEeidIdhNuvomDQ" elementId="cancelReturns" name="Return Value on Cancel"/> + <commands xmi:id="_aL01v12-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.DMLDialogSelectionAction" commandName="Edit in SQL Query Builder..." category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01wF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01wV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.dbws.ui.generateDbws" commandName="Generate Database Web Services" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01wl2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01w12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01xF2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.attachProfileAction" commandName="Set Connection Information" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01xV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01xl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_aLsSoF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01x12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01yF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01yV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01yl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01y12-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.connectivity.commands.import" commandName="Import Profiles Command" description="Command to import connection profiles" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01zF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01zV2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01zl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearOutgoing" commandName="Clear Outgoing Changes" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01z12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL010F2-EeiwQNQmo1Li3A" elementId="org.eclipse.epp.mpc.ui.command.showFavorites" commandName="Eclipse Marketplace Favorites" description="Open Marketplace Favorites" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL010V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL010l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01012-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL011F2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL011V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL011l2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Check Out" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01112-EeiwQNQmo1Li3A" elementId="org.eclipse.m2e.actions.LifeCycleClean.run" commandName="Run Maven Clean" description="Run Maven Clean" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL012F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL012V2-EeiwQNQmo1Li3A" 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="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL012l2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.convertToEclipseHelpCommand" commandName="Generate Eclipse Help (*.html and *-toc.xml)" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01212-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL013F2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL013V2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL013l2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.xml.editor.actions.SwitchPairEditorAction" commandName="Switch Source/Design Editors" description="Switch between the Source and Design editors." category="_aLrrkV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01312-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.configureFilters" commandName="Filters..." description="Configure the filters to apply to the markers view" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL014F2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.importSession" commandName="Import Session..." category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL014V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL014l2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL01412-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_aLrrn12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL015F2-EeiwQNQmo1Li3A" elementId="title" name="Title"/> + <parameters xmi:id="_aL015V2-EeiwQNQmo1Li3A" elementId="message" name="Message"/> + <parameters xmi:id="_aL015l2-EeiwQNQmo1Li3A" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/> + <parameters xmi:id="_aL01512-EeiwQNQmo1Li3A" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/> + <parameters xmi:id="_aL016F2-EeiwQNQmo1Li3A" elementId="buttonLabel0" name="First Button Label"/> + <parameters xmi:id="_aL016V2-EeiwQNQmo1Li3A" elementId="buttonLabel1" name="Second Button Label"/> + <parameters xmi:id="_aL016l2-EeiwQNQmo1Li3A" elementId="buttonLabel2" name="Third Button Label"/> + <parameters xmi:id="_aL01612-EeiwQNQmo1Li3A" elementId="buttonLabel3" name="Fourth Button Label"/> + <parameters xmi:id="_aL017F2-EeiwQNQmo1Li3A" elementId="cancelReturns" name="Return Value on Cancel"/> </commands> - <commands xmi:id="_3WEVx2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.genericeditor.findReferences" commandName="Find References" description="Find other code items referencing the current selected item." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVyGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVyWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVymNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVy2NQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.generateDDL" commandName="Generate Tables from Entities..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVzGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVzWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.runAction" commandName="Run" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVzmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEVz2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV0GNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV0WNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV0mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV02NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV1GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV1WNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV1mNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV12NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV2GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_3WEXUWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV2WNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV2mNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV22NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV3GNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV3WNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV3mNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV32NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigator.resources.nested.changeProjectPresentation" commandName="P&rojects Presentation" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEV4GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigator.resources.nested.enabled" name="&Hierarchical"/> - <parameters xmi:id="_3WEV4WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.commands.radioStateParameter" name="Nested Project view - Radio State" optional="false"/> + <commands xmi:id="_aL1ckF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.genericeditor.findReferences" commandName="Find References" description="Find other code items referencing the current selected item." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1ckV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1ckl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1ck12-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1clF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.generateDDL" commandName="Generate Tables from Entities..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1clV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cll2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.runAction" commandName="Run" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cl12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cmF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cmV2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cml2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cm12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cnF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cnV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cnl2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cn12-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1coF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1coV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_aLrrv12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1col2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1co12-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cpF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cpV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cpl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cp12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cqF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigator.resources.nested.changeProjectPresentation" commandName="P&rojects Presentation" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL1cqV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigator.resources.nested.enabled" name="&Hierarchical"/> + <parameters xmi:id="_aL1cql2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.commands.radioStateParameter" name="Nested Project view - Radio State" optional="false"/> </commands> - <commands xmi:id="_3WEV4mNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV42NQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV5GNQEeidIdhNuvomDQ" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_3WEXU2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV5WNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEV5mNQEeidIdhNuvomDQ" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> + <commands xmi:id="_aL1cq12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1crF2-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1crV2-EeiwQNQmo1Li3A" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_aLsSoV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1crl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL1cr12-EeiwQNQmo1Li3A" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/> </commands> - <commands xmi:id="_3WEV52NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV6GNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.result.removeInstance" commandName="Remove Result" category="_3WEXL2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV6WNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Index" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV6mNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.discovery.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV62NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV7GNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXmlAndMap" commandName="Add Attribute to XML and Map..." category="_3WEXNmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV7WNQEeidIdhNuvomDQ" elementId="org.eclipse.buildship.ui.commands.refreshtaskview" commandName="Refresh View (Gradle Tasks)" description="Refreshes the Gradle Tasks view" category="_3WEXPWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV7mNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV72NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV8GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV8WNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV8mNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV82NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV9GNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.editor.synchronizePreferences" commandName="Synchronize Preferences" category="_3WEXQWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV9WNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV9mNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV92NQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV-GNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV-WNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV-mNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV-2NQEeidIdhNuvomDQ" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_3WEXPGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV_GNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_3WEXTGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV_WNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV_mNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEV_2NQEeidIdhNuvomDQ" elementId="org.eclipse.buildship.ui.shortcut.test.run" commandName="Run Gradle Test" description="Run Gradle test based on the current selection" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWAGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWAWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWAmNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.pagedesigner.design" commandName="Graphical Designer" category="_3WEXPmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWA2NQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.quickaccess" commandName="Quick Access" category="_3WEXTWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWBGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWBWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.convertToHtmlCommand" commandName="Generate HTML" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWBmNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWB2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWCGNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWCWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWCmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWC2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.markers.copyDescription" commandName="Copy Description To Clipboard" description="Copies markers description field to the clipboard" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWDGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWDWNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWDmNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWD2NQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWEGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWEWNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWEmNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.view.ui.command.disconnect" commandName="Disconnect Terminal" category="_3WEXRWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWE2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Revision Information" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWFGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWFWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWFmNQEeidIdhNuvomDQ" 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="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWF2NQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.eclipselink.ui.newEclipseLinkMappingFile" commandName="EclipseLink ORM Mapping File" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWGGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.openRemoteTask" commandName="Open Remote Task" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWGWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWGmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWG2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands.task.retrieveContext" commandName="Retrieve Context" category="_3WEXJ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWHGNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.jsp.ui.refactor.rename" commandName="Rename" description="Rename a Java Element" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWHWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWHmNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWH2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWIGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.togglestatusbar" commandName="Toggle Statusbar" description="Toggle the visibility of the bottom status bar" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWIWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWImNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.task.ui.editor.QuickOutline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_3WEXKWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWI2NQEeidIdhNuvomDQ" 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="_3WEXJWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWJGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWJWNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.pagedesigner.horizotal" commandName="Horizontal Layout" category="_3WEXPmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWJmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWJ2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWKGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWKWNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWKmNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWK2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.chromium.debug.js.command" commandName="Chrome / Chromium Debugger" category="_3WEXM2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWLGNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWLWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWLmNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.utils.rcp.commands.openHelp" commandName="Open a help page resource" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEWL2NQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> + <commands xmi:id="_aL1csF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1csV2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.result.removeInstance" commandName="Remove Result" category="_aLrrnV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1csl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Index" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cs12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.discovery.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1ctF2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1ctV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXmlAndMap" commandName="Add Attribute to XML and Map..." category="_aLrrpF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1ctl2-EeiwQNQmo1Li3A" elementId="org.eclipse.buildship.ui.commands.refreshtaskview" commandName="Refresh View (Gradle Tasks)" description="Refreshes the Gradle Tasks view" category="_aLrrq12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1ct12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cuF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cuV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cul2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cu12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cvF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cvV2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.editor.synchronizePreferences" commandName="Synchronize Preferences" category="_aLrrr12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cvl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cv12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cwF2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cwV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cwl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cw12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cxF2-EeiwQNQmo1Li3A" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_aLrrql2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cxV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_aLrrul2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cxl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cx12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cyF2-EeiwQNQmo1Li3A" elementId="org.eclipse.buildship.ui.shortcut.test.run" commandName="Run Gradle Test" description="Run Gradle test based on the current selection" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cyV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cyl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cy12-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.pagedesigner.design" commandName="Graphical Designer" category="_aLrrrF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1czF2-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.quickaccess" commandName="Quick Access" category="_aLrru12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1czV2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1czl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.convertToHtmlCommand" commandName="Generate HTML" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1cz12-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c0F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c0V2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c0l2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c012-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c1F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.markers.copyDescription" commandName="Copy Description To Clipboard" description="Copies markers description field to the clipboard" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c1V2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c1l2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c112-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c2F2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c2V2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c2l2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c212-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.view.ui.command.disconnect" commandName="Disconnect Terminal" category="_aLrrs12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c3F2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Revision Information" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c3V2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c3l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c312-EeiwQNQmo1Li3A" 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="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c4F2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.eclipselink.ui.newEclipseLinkMappingFile" commandName="EclipseLink ORM Mapping File" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c4V2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.openRemoteTask" commandName="Open Remote Task" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c4l2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c412-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c5F2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands.task.retrieveContext" commandName="Retrieve Context" category="_aLrrlV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c5V2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.jsp.ui.refactor.rename" commandName="Rename" description="Rename a Java Element" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c5l2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c512-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c6F2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c6V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.togglestatusbar" commandName="Toggle Statusbar" description="Toggle the visibility of the bottom status bar" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c6l2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c612-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.task.ui.editor.QuickOutline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_aLrrl12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c7F2-EeiwQNQmo1Li3A" 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="_aLrrk12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c7V2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c7l2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.pagedesigner.horizotal" commandName="Horizontal Layout" category="_aLrrrF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c712-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c8F2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c8V2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c8l2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c812-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c9F2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.chromium.debug.js.command" commandName="Chrome / Chromium Debugger" category="_aLrroV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c9V2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c9l2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c912-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.utils.rcp.commands.openHelp" commandName="Open a help page resource" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL1c-F2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> </commands> - <commands xmi:id="_3WEWMGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.bugs.commands.newTaskFromMarker" commandName="New Task from Marker..." description="Report as Bug from Marker" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWMWNQEeidIdhNuvomDQ" 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="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWMmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_3WEXKmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWM2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands.focus.view" commandName="Focus View" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEWNGNQEeidIdhNuvomDQ" elementId="viewId" name="View ID to Focus" optional="false"/> + <commands xmi:id="_aL1c-V2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.bugs.commands.newTaskFromMarker" commandName="New Task from Marker..." description="Report as Bug from Marker" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c-l2-EeiwQNQmo1Li3A" 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="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c-12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_aLrrmF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c_F2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands.focus.view" commandName="Focus View" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL1c_V2-EeiwQNQmo1Li3A" elementId="viewId" name="View ID to Focus" optional="false"/> </commands> - <commands xmi:id="_3WEWNWNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.testNgShortcut.coverage" commandName="Coverage TestNG Test" description="Coverage TestNG Test" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWNmNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWN2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_3WEXLmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEWOGNQEeidIdhNuvomDQ" elementId="plugin" name="Plugin"/> - <parameters xmi:id="_3WEWOWNQEeidIdhNuvomDQ" elementId="path" name="Path"/> + <commands xmi:id="_aL1c_l2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.testNgShortcut.coverage" commandName="Coverage TestNG Test" description="Coverage TestNG Test" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1c_12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dAF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_aLrrnF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL1dAV2-EeiwQNQmo1Li3A" elementId="plugin" name="Plugin"/> + <parameters xmi:id="_aL1dAl2-EeiwQNQmo1Li3A" elementId="path" name="Path"/> </commands> - <commands xmi:id="_3WEWOmNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.pagedesigner.source" commandName="Source Code" category="_3WEXPmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWO2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_3WEXS2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWPGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_3WEXLWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWPWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.annotate.classFile" commandName="Annotate Class File" description="Externally add Annotations to a Class File." category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWPmNQEeidIdhNuvomDQ" elementId="org.eclipse.cft.server.ui.internal.actions.openhomepagecommand" commandName="Open Home Page" description="Open Home Page" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWP2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes..." category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWQGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_3WEXO2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWQWNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Check Out" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWQmNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.command.activateSelectedTask" commandName="Activate Selected Task" category="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWQ2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWRGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWRWNQEeidIdhNuvomDQ" 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="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWRmNQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWR2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Index" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWSGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_3WEXLWNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEWSWNQEeidIdhNuvomDQ" elementId="newWizardId" name="New Wizard"/> + <commands xmi:id="_aL1dA12-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.pagedesigner.source" commandName="Source Code" category="_aLrrrF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dBF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_aLrruV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dBV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_aLrrm12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dBl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.annotate.classFile" commandName="Annotate Class File" description="Externally add Annotations to a Class File." category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dB12-EeiwQNQmo1Li3A" elementId="org.eclipse.cft.server.ui.internal.actions.openhomepagecommand" commandName="Open Home Page" description="Open Home Page" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dCF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes..." category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dCV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_aLrrqV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dCl2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Check Out" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dC12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.command.activateSelectedTask" commandName="Activate Selected Task" category="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dDF2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dDV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dDl2-EeiwQNQmo1Li3A" 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="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dD12-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dEF2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Index" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dEV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_aLrrm12-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL1dEl2-EeiwQNQmo1Li3A" elementId="newWizardId" name="New Wizard"/> </commands> - <commands xmi:id="_3WEWSmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWS2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWTGNQEeidIdhNuvomDQ" elementId="org.eclipse.e4.ui.importer.configureProject" commandName="Configure and Detect Nested Projects..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWTWNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui.selectActiveSession" commandName="Select Active Session..." category="_3WEXLGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWTmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWT2NQEeidIdhNuvomDQ" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWUGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands.interest.decrement" commandName="Make Less Interesting" description="Make Less Interesting" category="_3WEXJ2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWUWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWUmNQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Check Out" category="_3WEXT2NQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWU2NQEeidIdhNuvomDQ" 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="_3WEXTmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWVGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWVWNQEeidIdhNuvomDQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEWVmNQEeidIdhNuvomDQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/> - <parameters xmi:id="_3WEWV2NQEeidIdhNuvomDQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/> + <commands xmi:id="_aL1dE12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dFF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dFV2-EeiwQNQmo1Li3A" elementId="org.eclipse.e4.ui.importer.configureProject" commandName="Configure and Detect Nested Projects..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dFl2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui.selectActiveSession" commandName="Select Active Session..." category="_aLrrml2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dF12-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dGF2-EeiwQNQmo1Li3A" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL1dGV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands.interest.decrement" commandName="Make Less Interesting" description="Make Less Interesting" category="_aLrrlV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DoF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DoV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Check Out" category="_aLrrvV2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Dol2-EeiwQNQmo1Li3A" 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="_aLrrvF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Do12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DpF2-EeiwQNQmo1Li3A" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL2DpV2-EeiwQNQmo1Li3A" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/> + <parameters xmi:id="_aL2Dpl2-EeiwQNQmo1Li3A" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/> </commands> - <commands xmi:id="_3WEWWGNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWWWNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWWmNQEeidIdhNuvomDQ" elementId="org.eclipse.userstorage.ui.showPullDown" commandName="Show Pull Down Menu" category="_3WEXS2NQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEWW2NQEeidIdhNuvomDQ" elementId="intoolbar" name="In Tool Bar" optional="false"/> + <commands xmi:id="_aL2Dp12-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DqF2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DqV2-EeiwQNQmo1Li3A" elementId="org.eclipse.userstorage.ui.showPullDown" commandName="Show Pull Down Menu" category="_aLrruV2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL2Dql2-EeiwQNQmo1Li3A" elementId="intoolbar" name="In Tool Bar" optional="false"/> </commands> - <commands xmi:id="_3WEWXGNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.makePersistent" commandName="Make Persistent..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWXWNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSelectionAction" commandName="Execute Selected Text" category="_3WEXUGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWXmNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jaxb.ui.command.createPackageInfo" commandName="Create package-info.java" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWX2NQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_3WEXSWNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWYGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_3WEXVGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWYWNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.rcp.commands.extensionDiscovery" commandName="Discover New Extensions" category="_3WEXOmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEWYmNQEeidIdhNuvomDQ" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> + <commands xmi:id="_aL2Dq12-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.makePersistent" commandName="Make Persistent..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DrF2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSelectionAction" commandName="Execute Selected Text" category="_aLrrvl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DrV2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jaxb.ui.command.createPackageInfo" commandName="Create package-info.java" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Drl2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_aLrrt12-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Dr12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_aLsSol2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DsF2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.rcp.commands.extensionDiscovery" commandName="Discover New Extensions" category="_aLrrqF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL2DsV2-EeiwQNQmo1Li3A" elementId="org.eclipse.recommenders.utils.rcp.linkContribution.href" name="URI" optional="false"/> </commands> - <commands xmi:id="_3WEWY2NQEeidIdhNuvomDQ" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_3WEXRmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWZGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_3WEXMGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWZWNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.newMappingFile" commandName="JPA ORM Mapping File" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWZmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWZ2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWaGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Scroll cursor line to center, top and bottom" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWaWNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.xmlFileUpgradeToLatestVersion" commandName="Upgrade JPA Document Version" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWamNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_3WEXJmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWa2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_3WEXImNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWbGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Main Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_3WEXLmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWbWNQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWbmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWb2NQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.commands.openscrapbook" commandName="Open SQL Scrapboo&k" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWcGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_3WEXQmNQEeidIdhNuvomDQ"> - <parameters xmi:id="_3WEWcWNQEeidIdhNuvomDQ" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/> + <commands xmi:id="_aL2Dsl2-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_aLrrtF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Ds12-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_aLrrnl2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DtF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.newMappingFile" commandName="JPA ORM Mapping File" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DtV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Dtl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Dt12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Scroll cursor line to center, top and bottom" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DuF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.xmlFileUpgradeToLatestVersion" commandName="Upgrade JPA Document Version" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DuV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_aLrrlF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Dul2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_aLrrkF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Du12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Main Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_aLrrnF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DvF2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2DvV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Dvl2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.commands.openscrapbook" commandName="Open SQL Scrapboo&k" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Dv12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_aLrrsF2-EeiwQNQmo1Li3A"> + <parameters xmi:id="_aL2DwF2-EeiwQNQmo1Li3A" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/> </commands> - <commands xmi:id="_3WEWcmNQEeidIdhNuvomDQ" 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="_3WEXKGNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWc2NQEeidIdhNuvomDQ" 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="_3WEXQmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWdGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWdWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWdmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWd2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWeGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWeWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWemNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWe2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWfGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWfWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWfmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWf2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageDropDownAction" commandName="Coverage" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWgGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageAsAction" commandName="Coverage As" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWgWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageHistoryAction" commandName="Coverage History" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWgmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWg2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWhGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWhWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWhmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jst.j2ee.J2eeMainActionSet/org.eclipse.jst.j2ee.internal.actions.NewJavaEEArtifact" commandName="Servlet" description="Create a new Servlet" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWh2NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWiGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWiWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWimNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWi2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWjGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWjWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWjmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWj2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWkGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWkWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWkmNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWk2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenFileWizard" commandName="JavaScript Source File" description="New JavaScript file" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWlGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenProjectWizard" commandName="JavaScript Project..." description="New JavaScript Project" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWlWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.refactor.show.refactoring.history" commandName="History..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWlmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.SearchActionSet/org.eclipse.wst.jsdt.ui.actions.OpenJavaSearchPage" commandName="JavaScript..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWl2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.server.ui.new.actionSet/org.eclipse.wst.server.ui.action.new.server" commandName="Create Server" description="Create Server" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWmGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWmWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWmmNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWm2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newJSFile" commandName="JavaScript" description="Create a new JavaScript file" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWnGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newHTMLFile" commandName="HTML" description="Create a new HTML page" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWnWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWnmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wb.core.ui.actionset/org.eclipse.wb.core.wizards.actions.NewDesignerTypeDropDownAction" commandName="New Visual Class" description="Create new visual classes" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWn2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWoGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.datatools.sqltools.rullerDoubleClick/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Add Breakpoint" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWoWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.emf.exporter.genModelEditorContribution/org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" commandName="Export Model..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWomNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.emf.importer.genModelEditorContribution/org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" commandName="Reload..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWo2NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWpGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWpWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWpmNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWp2NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWqGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWqWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWqmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWq2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWrGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="Execute" description="Execute the Selected Text" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWrWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Display" description="Display Result of Evaluating Selected Text" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWrmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWr2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWsGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWsWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWsmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWs2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWtGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jst.jsp.core.jspsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWtWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jst.jsp.core.jspsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWtmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution/org.eclipse.m2e.jdt.ui.downloadSourcesAction" commandName="label" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWt2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution_38/org.eclipse.m2e.jdt.ui.downloadSourcesAction_38" commandName="label" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWuGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWuWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWumNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWu2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWvGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWvWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWvmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWv2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWwGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWwWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.debug.ui.togglebreakpoint/org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" commandName="Toggle Breakpoint" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWwmNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWw2NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWxGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWxWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWxmNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWx2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="%AddBookmark.label" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWyGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="%SelectRuler.label" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWyWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.editor/org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" commandName="Reload Dependencies" description="Reload Dependencies" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWymNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.wsdl.wsdlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWy2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.wsdl.wsdlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWzGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWzWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWzmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEWz2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW0GNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="label" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW0WNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW0mNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW02NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW1GNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW1WNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW1mNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW12NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW2GNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.sortByAction" commandName="Sort By" description="Sort By" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW2WNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW2mNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW22NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW3GNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW3WNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW3mNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW32NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW4GNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW4WNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW4mNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW42NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW5GNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW5WNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW5mNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW52NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW6GNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW6WNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW6mNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW62NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &References" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW7GNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW7WNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW7mNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW72NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW8GNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW8WNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW8mNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW82NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW9GNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW9WNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW9mNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW92NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW-GNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW-WNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW-mNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW-2NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW_GNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW_WNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW_mNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEW_2NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXAGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXAWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXAmNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXA2NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXBGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXBWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.search.open" commandName="Search Repository..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXBmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.synchronize.changed" commandName="Synchronize Changed" description="Synchronize Changed" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXB2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.tasks.restore" commandName="Restore Tasks from History..." category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXCGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXCWNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXCmNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXC2NQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXDGNQEeidIdhNuvomDQ" elementId="AUTOGEN:::org.eclipse.rse.ui.view.systemView.toolbar/org.eclipse.rse.ui.view.systemView.toolbar.linkWithSystemView" commandName="Link with Editor" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXDWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.add.scriptload.breakpoint" commandName="Add Script Load Breakpoint" description="Add Script Load Breakpoint" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXDmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Suspend For All Script Loads" description="Suspends when any script is loaded" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXD2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.suspend.on.exceptions" commandName="Suspend On JavaScript Exceptions" description="Suspend on all JavaScript exceptions" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXEGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXEWNQEeidIdhNuvomDQ" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.functions" commandName="Show function variables" description="Show or hide function variables" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXEmNQEeidIdhNuvomDQ" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.this" commandName="Show 'this' variable" description="Show or hide the this variable" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXE2NQEeidIdhNuvomDQ" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.prototypes" commandName="Show proto variables" description="Show or hide proto variables" category="_3WEXOmNQEeidIdhNuvomDQ"/> - <commands xmi:id="_3WEXFGNQEeidIdhNuvomDQ" 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="_3WEXOmNQEeidIdhNuvomDQ"/> - <addons xmi:id="_3WEXFWNQEeidIdhNuvomDQ" 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="_3WEXFmNQEeidIdhNuvomDQ" 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="_3WEXF2NQEeidIdhNuvomDQ" 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="_3WEXGGNQEeidIdhNuvomDQ" 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="_3WEXGWNQEeidIdhNuvomDQ" 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="_3WEXGmNQEeidIdhNuvomDQ" 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="_3WEXG2NQEeidIdhNuvomDQ" 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="_3WEXHGNQEeidIdhNuvomDQ" 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="_3WEXHWNQEeidIdhNuvomDQ" 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="_3WEXHmNQEeidIdhNuvomDQ" 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="_3WEXH2NQEeidIdhNuvomDQ" elementId="SplitterAddon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.splitteraddon.SplitterAddon"/> - <addons xmi:id="_3WEXIGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.addon.0" contributionURI="bundleclass://org.eclipse.ui.ide/org.eclipse.ui.internal.ide.addons.SaveAllDirtyPartsAddon"/> - <addons xmi:id="_3WEXIWNQEeidIdhNuvomDQ" 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="_3WEXImNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.edit" name="Edit"/> - <categories xmi:id="_3WEXI2NQEeidIdhNuvomDQ" elementId="org.eclipse.wb.core.actions.category" name="WindowBuilder Pro" description="WindowBuilder Pro actions"/> - <categories xmi:id="_3WEXJGNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.ui.editor.category" name="WikiText Markup Editing Commands" description="commands for editing lightweight markup"/> - <categories xmi:id="_3WEXJWNQEeidIdhNuvomDQ" elementId="org.eclipse.buildship.ui.project" name="Buildship" description="Contains the Buildship specific commands"/> - <categories xmi:id="_3WEXJmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/> - <categories xmi:id="_3WEXJ2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.context.ui.commands" name="Focused UI" description="Task-Focused Interface"/> - <categories xmi:id="_3WEXKGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/> - <categories xmi:id="_3WEXKWNQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.commands" name="Task Repositories"/> - <categories xmi:id="_3WEXKmNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/> - <categories xmi:id="_3WEXK2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.wikitext.context.ui.commands" name="Mylyn WikiText" description="Commands used for Mylyn WikiText"/> - <categories xmi:id="_3WEXLGNQEeidIdhNuvomDQ" elementId="org.eclipse.eclemma.ui" name="EclEmma Code Coverage"/> - <categories xmi:id="_3WEXLWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.file" name="File"/> - <categories xmi:id="_3WEXLmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.window" name="Window"/> - <categories xmi:id="_3WEXL2NQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.result.category" name="SQL Results View"/> - <categories xmi:id="_3WEXMGNQEeidIdhNuvomDQ" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/> - <categories xmi:id="_3WEXMWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/> - <categories xmi:id="_3WEXMmNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph" name="Oomph"/> - <categories xmi:id="_3WEXM2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.chromium.debug.js.category" name="Chrome / Chromium"/> - <categories xmi:id="_3WEXNGNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.jpaMetadataConversionCommands" name="JPA Metadata Conversion"/> - <categories xmi:id="_3WEXNWNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.xml.views.XPathView" name="XPath"/> - <categories xmi:id="_3WEXNmNQEeidIdhNuvomDQ" elementId="org.eclipse.jpt.jpa.ui.jpaStructureViewCommands" name="JPA Structure View"/> - <categories xmi:id="_3WEXN2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.commons.repositories.ui.category.Team" name="Team"/> - <categories xmi:id="_3WEXOGNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/> - <categories xmi:id="_3WEXOWNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.commands" name="Oomph"/> - <categories xmi:id="_3WEXOmNQEeidIdhNuvomDQ" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/> - <categories xmi:id="_3WEXO2NQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/> - <categories xmi:id="_3WEXPGNQEeidIdhNuvomDQ" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/> - <categories xmi:id="_3WEXPWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/> - <categories xmi:id="_3WEXPmNQEeidIdhNuvomDQ" elementId="org.eclipse.jst.pagedesigner.pagelayout" name="Web Page Editor Layout"/> - <categories xmi:id="_3WEXP2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.tasks.ui.category.editor" name="Task Editor"/> - <categories xmi:id="_3WEXQGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/> - <categories xmi:id="_3WEXQWNQEeidIdhNuvomDQ" elementId="org.eclipse.oomph.setup.category" name="Oomph Setup"/> - <categories xmi:id="_3WEXQmNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.navigate" name="Navigate"/> - <categories xmi:id="_3WEXQ2NQEeidIdhNuvomDQ" elementId="org.eclipse.mylyn.java.ui.commands" name="Java Context" description="Java Task-Focused Interface Commands"/> - <categories xmi:id="_3WEXRGNQEeidIdhNuvomDQ" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/> - <categories xmi:id="_3WEXRWNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.view.ui.commands.category" name="Terminal Commands"/> - <categories xmi:id="_3WEXRmNQEeidIdhNuvomDQ" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/> - <categories xmi:id="_3WEXR2NQEeidIdhNuvomDQ" elementId="org.eclipse.rse.ui.commands.category" name="Remote Systems"/> - <categories xmi:id="_3WEXSGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaedtor.10x" name="ASA 9.x table schema editor"/> - <categories xmi:id="_3WEXSWNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/> - <categories xmi:id="_3WEXSmNQEeidIdhNuvomDQ" elementId="org.eclipse.emf.codegen.ecore.ui.Commands" name="EMF Code Generation" description="Commands for the EMF code generation tools"/> - <categories xmi:id="_3WEXS2NQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.help" name="Help"/> - <categories xmi:id="_3WEXTGNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.project" name="Project"/> - <categories xmi:id="_3WEXTWNQEeidIdhNuvomDQ" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="Terminal view commands"/> - <categories xmi:id="_3WEXTmNQEeidIdhNuvomDQ" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/> - <categories xmi:id="_3WEXT2NQEeidIdhNuvomDQ" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/> - <categories xmi:id="_3WEXUGNQEeidIdhNuvomDQ" elementId="org.eclipse.datatools.sqltools.sqleditor.category" name="Database Tools" description="Database Development tools"/> - <categories xmi:id="_3WEXUWNQEeidIdhNuvomDQ" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/> - <categories xmi:id="_3WEXUmNQEeidIdhNuvomDQ" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/> - <categories xmi:id="_3WEXU2NQEeidIdhNuvomDQ" elementId="org.eclipse.gef.category.view" name="View" description="View"/> - <categories xmi:id="_3WEXVGNQEeidIdhNuvomDQ" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/> - <categories xmi:id="_3WEXVWNQEeidIdhNuvomDQ" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/> + <commands xmi:id="_aL2DwV2-EeiwQNQmo1Li3A" 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="_aLrrll2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_aL2Dwl2-EeiwQNQmo1Li3A" 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="_aLrrsF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai1AQF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai1nUF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai3cgF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai3cgV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai3cgl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai4DkF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai4DkV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai4Dkl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai4Dk12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai4DlF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai4qoF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai4qoV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageDropDownAction" commandName="Coverage" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai4qol2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageAsAction" commandName="Coverage As" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai4qo12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageHistoryAction" commandName="Coverage History" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai8VAF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai88EF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai9jIF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai-KMF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai-KMV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jst.j2ee.J2eeMainActionSet/org.eclipse.jst.j2ee.internal.actions.NewJavaEEArtifact" commandName="Servlet" description="Create a new Servlet" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai-KMl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai-xQF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai_YUF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai_YUV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai_YUl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai__YF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai__YV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai__Yl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ai__Y12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajAmcF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajAmcV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajBNgF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajBNgV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenFileWizard" commandName="JavaScript Source File" description="New JavaScript file" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajBNgl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenProjectWizard" commandName="JavaScript Project..." description="New JavaScript Project" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajBNg12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.refactor.show.refactoring.history" commandName="History..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajB0kF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.SearchActionSet/org.eclipse.wst.jsdt.ui.actions.OpenJavaSearchPage" commandName="JavaScript..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajB0kV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.server.ui.new.actionSet/org.eclipse.wst.server.ui.action.new.server" commandName="Create Server" description="Create Server" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajB0kl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajB0k12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajCboF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajCboV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newJSFile" commandName="JavaScript" description="Create a new JavaScript file" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajCbol2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newHTMLFile" commandName="HTML" description="Create a new HTML page" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajCbo12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajCbpF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wb.core.ui.actionset/org.eclipse.wb.core.wizards.actions.NewDesignerTypeDropDownAction" commandName="New Visual Class" description="Create new visual classes" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDCsF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDCsV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.datatools.sqltools.rullerDoubleClick/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Add Breakpoint" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDCsl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.emf.exporter.genModelEditorContribution/org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" commandName="Export Model..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDCs12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.emf.importer.genModelEditorContribution/org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" commandName="Reload..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDCtF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDCtV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDpwF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDpwV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDpwl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDpw12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDpxF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajDpxV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajEQ0F2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajEQ0V2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="Execute" description="Execute the Selected Text" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajE34F2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Display" description="Display Result of Evaluating Selected Text" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajE34V2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajFe8F2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajFe8V2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajFe8l2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajFe812-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajFe9F2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGGAF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jst.jsp.core.jspsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGGAV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jst.jsp.core.jspsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGGAl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution/org.eclipse.m2e.jdt.ui.downloadSourcesAction" commandName="label" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGGA12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution_38/org.eclipse.m2e.jdt.ui.downloadSourcesAction_38" commandName="label" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGGBF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGGBV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGGBl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGGB12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGtEF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGtEV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGtEl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGtE12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGtFF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGtFV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.jsdt.debug.ui.togglebreakpoint/org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" commandName="Toggle Breakpoint" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajGtFl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajHUIF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajHUIV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajHUIl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajHUI12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajHUJF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="%AddBookmark.label" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajHUJV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="%SelectRuler.label" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajHUJl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.editor/org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" commandName="Reload Dependencies" description="Reload Dependencies" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajHUJ12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.wsdl.wsdlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajH7MF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.wsdl.wsdlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajH7MV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajH7Ml2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajH7M12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajH7NF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajH7NV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="label" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajIiQF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajIiQV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajIiQl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJJUF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJJUV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJJUl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJJU12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJwYF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.sortByAction" commandName="Sort By" description="Sort By" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJwYV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJwYl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJwY12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJwZF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajJwZV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajKXcF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajKXcV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajKXcl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajKXc12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajKXdF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajKXdV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajKXdl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajKXd12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajKXeF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajK-gF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajK-gV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajK-gl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajK-g12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajK-hF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &References" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajK-hV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajK-hl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajK-h12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajLlkF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajLlkV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajLlkl2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajLlk12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajLllF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajLllV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajLlll2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMMoF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMMoV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMMol2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMMo12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMzsF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMzsV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMzsl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMzs12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMztF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMztV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMztl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajMzt12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajNawF2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajNawV2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajNawl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajNaw12-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.search.open" commandName="Search Repository..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajNaxF2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.synchronize.changed" commandName="Synchronize Changed" description="Synchronize Changed" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajNaxV2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.tasks.restore" commandName="Restore Tasks from History..." category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajNaxl2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajNax12-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOB0F2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOB0V2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOB0l2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::org.eclipse.rse.ui.view.systemView.toolbar/org.eclipse.rse.ui.view.systemView.toolbar.linkWithSystemView" commandName="Link with Editor" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOB012-EeiwQNQmo1Li3A" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.add.scriptload.breakpoint" commandName="Add Script Load Breakpoint" description="Add Script Load Breakpoint" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOB1F2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Suspend For All Script Loads" description="Suspends when any script is loaded" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOB1V2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.suspend.on.exceptions" commandName="Suspend On JavaScript Exceptions" description="Suspend on all JavaScript exceptions" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOB1l2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOB112-EeiwQNQmo1Li3A" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.functions" commandName="Show function variables" description="Show or hide function variables" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOo4F2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.this" commandName="Show 'this' variable" description="Show or hide the this variable" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOo4V2-EeiwQNQmo1Li3A" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.prototypes" commandName="Show proto variables" description="Show or hide proto variables" category="_aLrrqF2-EeiwQNQmo1Li3A"/> + <commands xmi:id="_ajOo4l2-EeiwQNQmo1Li3A" 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="_aLrrqF2-EeiwQNQmo1Li3A"/> + <addons xmi:id="_aLHq612-EeiwQNQmo1Li3A" 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="_aLHq7F2-EeiwQNQmo1Li3A" 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="_aLHq7V2-EeiwQNQmo1Li3A" 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="_aLHq7l2-EeiwQNQmo1Li3A" 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="_aLIR8F2-EeiwQNQmo1Li3A" 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="_aLIR8V2-EeiwQNQmo1Li3A" 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="_aLIR8l2-EeiwQNQmo1Li3A" 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="_aLIR812-EeiwQNQmo1Li3A" 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="_aLIR9F2-EeiwQNQmo1Li3A" 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="_aLIR9V2-EeiwQNQmo1Li3A" 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="_aLO_oF2-EeiwQNQmo1Li3A" elementId="SplitterAddon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.splitteraddon.SplitterAddon"/> + <addons xmi:id="_sje-gWM-EeidIdhNuvomDQ" elementId="org.eclipse.ui.ide.addon.0" 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="_aLrrkF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.edit" name="Edit"/> + <categories xmi:id="_aLrrkV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wb.core.actions.category" name="WindowBuilder Pro" description="WindowBuilder Pro actions"/> + <categories xmi:id="_aLrrkl2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.ui.editor.category" name="WikiText Markup Editing Commands" description="commands for editing lightweight markup"/> + <categories xmi:id="_aLrrk12-EeiwQNQmo1Li3A" elementId="org.eclipse.buildship.ui.project" name="Buildship" description="Contains the Buildship specific commands"/> + <categories xmi:id="_aLrrlF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/> + <categories xmi:id="_aLrrlV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.context.ui.commands" name="Focused UI" description="Task-Focused Interface"/> + <categories xmi:id="_aLrrll2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/> + <categories xmi:id="_aLrrl12-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.commands" name="Task Repositories"/> + <categories xmi:id="_aLrrmF2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/> + <categories xmi:id="_aLrrmV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.wikitext.context.ui.commands" name="Mylyn WikiText" description="Commands used for Mylyn WikiText"/> + <categories xmi:id="_aLrrml2-EeiwQNQmo1Li3A" elementId="org.eclipse.eclemma.ui" name="EclEmma Code Coverage"/> + <categories xmi:id="_aLrrm12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.file" name="File"/> + <categories xmi:id="_aLrrnF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.window" name="Window"/> + <categories xmi:id="_aLrrnV2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.result.category" name="SQL Results View"/> + <categories xmi:id="_aLrrnl2-EeiwQNQmo1Li3A" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/> + <categories xmi:id="_aLrrn12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/> + <categories xmi:id="_aLrroF2-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph" name="Oomph"/> + <categories xmi:id="_aLrroV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.chromium.debug.js.category" name="Chrome / Chromium"/> + <categories xmi:id="_aLrrol2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.jpaMetadataConversionCommands" name="JPA Metadata Conversion"/> + <categories xmi:id="_aLrro12-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.xml.views.XPathView" name="XPath"/> + <categories xmi:id="_aLrrpF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jpt.jpa.ui.jpaStructureViewCommands" name="JPA Structure View"/> + <categories xmi:id="_aLrrpV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.commons.repositories.ui.category.Team" name="Team"/> + <categories xmi:id="_aLrrpl2-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/> + <categories xmi:id="_aLrrp12-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.commands" name="Oomph"/> + <categories xmi:id="_aLrrqF2-EeiwQNQmo1Li3A" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/> + <categories xmi:id="_aLrrqV2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/> + <categories xmi:id="_aLrrql2-EeiwQNQmo1Li3A" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/> + <categories xmi:id="_aLrrq12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/> + <categories xmi:id="_aLrrrF2-EeiwQNQmo1Li3A" elementId="org.eclipse.jst.pagedesigner.pagelayout" name="Web Page Editor Layout"/> + <categories xmi:id="_aLrrrV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.tasks.ui.category.editor" name="Task Editor"/> + <categories xmi:id="_aLrrrl2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/> + <categories xmi:id="_aLrrr12-EeiwQNQmo1Li3A" elementId="org.eclipse.oomph.setup.category" name="Oomph Setup"/> + <categories xmi:id="_aLrrsF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.navigate" name="Navigate"/> + <categories xmi:id="_aLrrsV2-EeiwQNQmo1Li3A" elementId="org.eclipse.mylyn.java.ui.commands" name="Java Context" description="Java Task-Focused Interface Commands"/> + <categories xmi:id="_aLrrsl2-EeiwQNQmo1Li3A" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/> + <categories xmi:id="_aLrrs12-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.view.ui.commands.category" name="Terminal Commands"/> + <categories xmi:id="_aLrrtF2-EeiwQNQmo1Li3A" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/> + <categories xmi:id="_aLrrtV2-EeiwQNQmo1Li3A" elementId="org.eclipse.rse.ui.commands.category" name="Remote Systems"/> + <categories xmi:id="_aLrrtl2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaedtor.10x" name="ASA 9.x table schema editor"/> + <categories xmi:id="_aLrrt12-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/> + <categories xmi:id="_aLrruF2-EeiwQNQmo1Li3A" elementId="org.eclipse.emf.codegen.ecore.ui.Commands" name="EMF Code Generation" description="Commands for the EMF code generation tools"/> + <categories xmi:id="_aLrruV2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.help" name="Help"/> + <categories xmi:id="_aLrrul2-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.project" name="Project"/> + <categories xmi:id="_aLrru12-EeiwQNQmo1Li3A" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="Terminal view commands"/> + <categories xmi:id="_aLrrvF2-EeiwQNQmo1Li3A" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/> + <categories xmi:id="_aLrrvV2-EeiwQNQmo1Li3A" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/> + <categories xmi:id="_aLrrvl2-EeiwQNQmo1Li3A" elementId="org.eclipse.datatools.sqltools.sqleditor.category" name="Database Tools" description="Database Development tools"/> + <categories xmi:id="_aLrrv12-EeiwQNQmo1Li3A" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/> + <categories xmi:id="_aLsSoF2-EeiwQNQmo1Li3A" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/> + <categories xmi:id="_aLsSoV2-EeiwQNQmo1Li3A" elementId="org.eclipse.gef.category.view" name="View" description="View"/> + <categories xmi:id="_aLsSol2-EeiwQNQmo1Li3A" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/> + <categories xmi:id="_aLsSo12-EeiwQNQmo1Li3A" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/> </application:Application> diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.core/2013377319.index b/PC/.metadata/.plugins/org.eclipse.jdt.core/2013377319.index index 6caaada730fc57d77f0d3cbc48ab8514e70f00a3..d9baa06deade24d58f04f5c6e62db3e246ce4d11 100644 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.core/2013377319.index and b/PC/.metadata/.plugins/org.eclipse.jdt.core/2013377319.index differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml b/PC/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml index 9afb3ed35b7617920e59fd4ebb956b79d613655e..39ca95bef5a3062c3f777fd5d7566dd02030c769 100644 --- a/PC/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml +++ b/PC/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml @@ -2,15 +2,23 @@ <qualifiedTypeNameHistroy> <fullyQualifiedTypeName name="java.awt.MouseInfo"/> <fullyQualifiedTypeName name="java.util.concurrent.TimeUnit"/> -<fullyQualifiedTypeName name="java.lang.Exception"/> <fullyQualifiedTypeName name="java.awt.Robot"/> <fullyQualifiedTypeName name="Eszkozok.SajatRobot"/> <fullyQualifiedTypeName name="java.awt.Point"/> <fullyQualifiedTypeName name="javax.management.monitor.Monitor"/> <fullyQualifiedTypeName name="java.awt.Toolkit"/> <fullyQualifiedTypeName name="java.awt.Dimension"/> -<fullyQualifiedTypeName name="java.lang.System"/> <fullyQualifiedTypeName name="java.awt.geom.Point2D"/> <fullyQualifiedTypeName name="java.util.UUID"/> <fullyQualifiedTypeName name="eszkozok.BTSPPServer"/> +<fullyQualifiedTypeName name="javax.microedition.io.StreamConnection"/> +<fullyQualifiedTypeName name="java.util.Base64"/> +<fullyQualifiedTypeName name="java.util.Base64.Decoder"/> +<fullyQualifiedTypeName name="eszkozok.SCommandType"/> +<fullyQualifiedTypeName name="java.nio.ByteBuffer"/> +<fullyQualifiedTypeName name="java.nio.ByteOrder"/> +<fullyQualifiedTypeName name="eszkozok.MouseCorrectRobot"/> +<fullyQualifiedTypeName name="fo.Main"/> +<fullyQualifiedTypeName name="java.lang.Exception"/> +<fullyQualifiedTypeName name="java.lang.System"/> </qualifiedTypeNameHistroy> diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/0.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/0.png deleted file mode 100644 index a839ceb0e95c38b180ed346a05106e06eac5e1e7..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/0.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png deleted file mode 100644 index 7b019ba3141a122d127bba926065fd5f29443496..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/10.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/10.png deleted file mode 100644 index be086d7a548e6926e48bd63c76f6ba3ada5f3209..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/10.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/11.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/11.png deleted file mode 100644 index 0e98817d9e98bab0f43096caa1166e734cbb3fb5..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/11.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/12.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/12.png deleted file mode 100644 index 4ac9b389a27050af85dc2af477f69ee87578d255..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/12.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/13.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/13.png deleted file mode 100644 index e77796b2500eee44dfa3d3e2a9552c7d7c717c7b..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/13.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png deleted file mode 100644 index 269f575e1b0d50dbfb351b86b323742ce47cdddb..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/3.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/3.png deleted file mode 100644 index 588e908a5a29c61c35c9ff6069293e9e51a7c061..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/3.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/4.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/4.png deleted file mode 100644 index 5a8a6f0ab948980349812606d6d4d0d177900b79..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/4.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/5.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/5.png deleted file mode 100644 index 8bb97ce216964d5f51c8363bb473cd5b47016ff8..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/5.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/6.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/6.png deleted file mode 100644 index 45a2f384b4b9f426862de0372e7cb25aff803a47..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/6.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/7.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/7.png deleted file mode 100644 index eaac660153c88915365d0c215cc56a48bdfbbd3b..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/7.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/8.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/8.png deleted file mode 100644 index ba2d4d6937f1665c771d4ee5b48e52939d7fb438..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/8.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/9.png b/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/9.png deleted file mode 100644 index 8a960d3e83d1895219a9e8bd6678d27208934b9f..0000000000000000000000000000000000000000 Binary files a/PC/.metadata/.plugins/org.eclipse.jdt.ui/jdt-images/9.png and /dev/null differ diff --git a/PC/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties b/PC/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties index 1307ada2f97c9910c3858358a4a65da1a43db810..75274217f91db4d3d226a957743f1b8e659eb6b1 100644 --- a/PC/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties +++ b/PC/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties @@ -1,2 +1,2 @@ #Cached timestamps -#Tue May 29 02:09:16 CEST 2018 +#Wed May 30 03:13:58 CEST 2018 diff --git a/PC/.recommenders/caches/identified-project-coordinates.json b/PC/.recommenders/caches/identified-project-coordinates.json index c8c4ca9d619931778b9edabea82369995063b14e..9e26dfeeb6e641a33dae4961196235bdb965b21b 100644 --- a/PC/.recommenders/caches/identified-project-coordinates.json +++ b/PC/.recommenders/caches/identified-project-coordinates.json @@ -1 +1 @@ -[[{"location":"D:\\Users\\gatsj\\Documents\\git\\AirCursor\\PC\\AirCursorPCServer\\3rdparty\\bluecove-2.1.1-SNAPSHOT.jar","type":"JAR","hints":{}},"ABSENT"],[{"location":"C:\\Program Files\\Java\\jre1.8.0_172","type":"JRE","hints":{"EXECUTION_ENVIRONMENT":"JavaSE-1.8"}},"jre:jre:1.8.0"]] \ No newline at end of file +{} \ No newline at end of file diff --git a/PC/.recommenders/index/http___download_eclipse_org_recommenders_models_oxygen_/write.lock b/PC/.recommenders/index/http___download_eclipse_org_recommenders_models_oxygen_/write.lock deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000