• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision3a40cbd3bb17d5bb8636070a132269dc10cb2d2d (tree)
Time2014-04-06 16:17:28
AuthorKana Koda <kodakana@user...>
CommiterKana Koda

Log Message

AozoraEmDa:IMが自動表示されないように修正。

Change Summary

Incremental Difference

--- /dev/null
+++ b/.metadata/.plugins/org.eclipse.core.resources/.history/29/b04e0f305bbd00131be286271333ffae
@@ -0,0 +1,26 @@
1+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+ package="org.pulpdust.da.aozora.em"
3+ android:versionCode="1"
4+ android:versionName="0.1"
5+ android:installLocation="auto">
6+
7+ <uses-sdk
8+ android:minSdkVersion="4"
9+ android:targetSdkVersion="19" />
10+
11+ <application
12+ android:allowBackup="true"
13+ android:icon="@drawable/ic_launcher"
14+ android:label="@string/app_name"
15+ android:theme="@style/AppTheme" >
16+ <activity
17+ android:name=".AozoraEmDaActivity"
18+ android:label="@string/app_name" >
19+ <intent-filter>
20+ <action android:name="org.pulpdust.da.action.LAUNCH" />
21+ <category android:name="android.intent.category.DEFAULT" />
22+ </intent-filter>
23+ </activity>
24+ </application>
25+
26+</manifest>
--- a/.metadata/.plugins/org.eclipse.core.resources/.history/37/80196a3ef8b700131dbf93eae4120514
+++ /dev/null
@@ -1,218 +0,0 @@
1-package org.pulpdust.da.braces;
2-
3-import android.annotation.SuppressLint;
4-import android.content.Intent;
5-import android.content.SharedPreferences;
6-import android.os.Bundle;
7-import android.support.v4.app.FragmentActivity;
8-import android.widget.Button;
9-import android.widget.RadioButton;
10-import android.widget.RadioGroup;
11-import android.view.View;
12-import android.view.View.OnClickListener;
13-
14-public class BracesDaActivity extends FragmentActivity {
15- final static String TAG = "BracesDA Main";
16- final static String DA_EX_TEXT = "org.pulpdust.da.extra.TEXT";
17- final static String DA_EX_THEME = "org.pulpdust.da.extra.THEME";
18- final static String DA_EX_RETURN = "org.pulpdust.da.extra.RETURN";
19- String sbj;
20- Button brackets;
21- Button asterisks;
22- Button braces;
23- Button quotations;
24- Button parentheses;
25- Button angles;
26- Button hyphens;
27- Button apostrophes;
28- RadioGroup convert;
29- RadioButton upper;
30- RadioButton lower;
31- RadioButton caps;
32- RadioButton none;
33-
34- @Override
35- public void onCreate(Bundle savedInstanceState) {
36- int cs = getIntent().getIntExtra(DA_EX_THEME, 0);
37- if (cs >= 1){
38- setTheme(R.style.AppTheme_Dark);
39- } else {
40- setTheme(R.style.AppTheme);
41- }
42- super.onCreate(savedInstanceState);
43- setContentView(R.layout.activity_bracesda);
44- brackets = (Button) findViewById(R.id.button1);
45- asterisks = (Button) findViewById(R.id.button2);
46- braces = (Button) findViewById(R.id.button3);
47- quotations = (Button) findViewById(R.id.button4);
48- parentheses = (Button) findViewById(R.id.button5);
49- angles = (Button) findViewById(R.id.button6);
50- hyphens = (Button) findViewById(R.id.button7);
51- apostrophes = (Button) findViewById(R.id.button8);
52- upper = (RadioButton) findViewById(R.id.radio0);
53- lower = (RadioButton) findViewById(R.id.radio1);
54- caps = (RadioButton) findViewById(R.id.radio2);
55- none = (RadioButton) findViewById(R.id.radio3);
56- convert = (RadioGroup) findViewById(R.id.radioGroup1);
57- readPrefs();
58- sbj = getIntent().getStringExtra(DA_EX_TEXT);
59- if (sbj == null) sbj = "";
60-
61- brackets.setOnClickListener(new OnClickListener(){
62-
63- @Override
64- public void onClick(View v) {
65- Intent ret = new Intent();
66- String retstr = getString(R.string.bracket_left) +
67- doConvert(sbj, convert.getCheckedRadioButtonId()) +
68- getString(R.string.bracket_right);
69- ret.putExtra(DA_EX_RETURN, retstr);
70- setResult(RESULT_OK, ret);
71- finish();
72- }
73-
74- });
75- asterisks.setOnClickListener(new OnClickListener(){
76-
77- @Override
78- public void onClick(View v) {
79- Intent ret = new Intent();
80- String retstr = getString(R.string.asterisk) +
81- doConvert(sbj, convert.getCheckedRadioButtonId()) +
82- getString(R.string.asterisk);
83- ret.putExtra(DA_EX_RETURN, retstr);
84- setResult(RESULT_OK, ret);
85- finish();
86- }
87-
88- });
89- braces.setOnClickListener(new OnClickListener(){
90-
91- @Override
92- public void onClick(View v) {
93- Intent ret = new Intent();
94- String retstr = getString(R.string.brace_left) +
95- doConvert(sbj, convert.getCheckedRadioButtonId()) +
96- getString(R.string.brace_right);
97- ret.putExtra(DA_EX_RETURN, retstr);
98- setResult(RESULT_OK, ret);
99- finish();
100- }
101-
102- });
103- quotations.setOnClickListener(new OnClickListener(){
104-
105- @Override
106- public void onClick(View v) {
107- Intent ret = new Intent();
108- String retstr = getString(R.string.quotation) +
109- doConvert(sbj, convert.getCheckedRadioButtonId()) +
110- getString(R.string.quotation);
111- ret.putExtra(DA_EX_RETURN, retstr);
112- setResult(RESULT_OK, ret);
113- finish();
114- }
115-
116- });
117- parentheses.setOnClickListener(new OnClickListener(){
118-
119- @Override
120- public void onClick(View v) {
121- Intent ret = new Intent();
122- String retstr = getString(R.string.parenthesis_left) +
123- doConvert(sbj, convert.getCheckedRadioButtonId()) +
124- getString(R.string.parenthesis_right);
125- ret.putExtra(DA_EX_RETURN, retstr);
126- setResult(RESULT_OK, ret);
127- finish();
128- }
129-
130- });
131- angles.setOnClickListener(new OnClickListener(){
132-
133- @Override
134- public void onClick(View v) {
135- Intent ret = new Intent();
136- String retstr = getString(R.string.angle_left) +
137- doConvert(sbj, convert.getCheckedRadioButtonId()) +
138- getString(R.string.angle_right);
139- ret.putExtra(DA_EX_RETURN, retstr);
140- setResult(RESULT_OK, ret);
141- finish();
142- }
143-
144- });
145- hyphens.setOnClickListener(new OnClickListener(){
146-
147- @Override
148- public void onClick(View v) {
149- Intent ret = new Intent();
150- String retstr = getString(R.string.hyphen) +
151- doConvert(sbj, convert.getCheckedRadioButtonId()) +
152- getString(R.string.hyphen);
153- ret.putExtra(DA_EX_RETURN, retstr);
154- setResult(RESULT_OK, ret);
155- finish();
156- }
157-
158- });
159- apostrophes.setOnClickListener(new OnClickListener(){
160-
161- @Override
162- public void onClick(View v) {
163- Intent ret = new Intent();
164- String retstr = getString(R.string.apostrophe) +
165- doConvert(sbj, convert.getCheckedRadioButtonId()) +
166- getString(R.string.apostrophe);
167- ret.putExtra(DA_EX_RETURN, retstr);
168- setResult(RESULT_OK, ret);
169- finish();
170- }
171-
172- });
173- }
174- @Override
175- protected void onStop(){
176- super.onStop();
177- writePrefs();
178- }
179-
180- @SuppressLint("DefaultLocale")
181- public String doConvert(String obj, int mode){
182- String result = "";
183- switch (mode){
184- case R.id.radio0:
185- result = obj.toUpperCase();
186- break;
187- case R.id.radio1:
188- result = obj.toLowerCase();
189- break;
190- case R.id.radio2:
191- if (obj.length() == 0){
192- result = "";
193- } else if (obj.length() == 1){
194- result = obj.toUpperCase();
195- } else {
196- result = obj.substring(0,1).toUpperCase() + obj.substring(1).toLowerCase();
197- }
198- break;
199- case R.id.radio3:
200- result = obj;
201- break;
202- }
203- return result;
204- }
205-
206- public void readPrefs(){
207- SharedPreferences sp = getPreferences(MODE_PRIVATE);
208- convert.check(sp.getInt("checked", R.id.radio3));
209- }
210-
211- public void writePrefs(){
212- SharedPreferences sp = getPreferences(MODE_PRIVATE);
213- SharedPreferences.Editor pe = sp.edit();
214- pe.putInt("checked", convert.getCheckedRadioButtonId());
215- pe.commit();
216- }
217-
218-}
--- /dev/null
+++ b/.metadata/.plugins/org.eclipse.core.resources/.history/a2/607fab2b5bbd00131be286271333ffae
@@ -0,0 +1,27 @@
1+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+ package="org.pulpdust.da.aozora.em"
3+ android:versionCode="1"
4+ android:versionName="0.1"
5+ android:installLocation="auto">
6+
7+ <uses-sdk
8+ android:minSdkVersion="4"
9+ android:targetSdkVersion="19" />
10+
11+ <application
12+ android:allowBackup="true"
13+ android:icon="@drawable/ic_launcher"
14+ android:label="@string/app_name"
15+ android:theme="@style/AppTheme" >
16+ <activity
17+ android:name=".AozoraEmDaActivity"
18+ android:label="@string/app_name"
19+ android:windowSoftInputMode="stateVisible|adjustResize" >
20+ <intent-filter>
21+ <action android:name="org.pulpdust.da.action.LAUNCH" />
22+ <category android:name="android.intent.category.DEFAULT" />
23+ </intent-filter>
24+ </activity>
25+ </application>
26+
27+</manifest>
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/AozoraEmDA/.indexes/properties.index and b/.metadata/.plugins/org.eclipse.core.resources/.projects/AozoraEmDA/.indexes/properties.index differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/AozoraEmDA/org.eclipse.jdt.core/state.dat and /dev/null differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/AozoraRubyDA/.indexes/properties.index and b/.metadata/.plugins/org.eclipse.core.resources/.projects/AozoraRubyDA/.indexes/properties.index differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/AozoraRubyDA/org.eclipse.jdt.core/state.dat and /dev/null differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/BracesDA/.indexes/e4/e4/7b/7d/60/history.index and b/.metadata/.plugins/org.eclipse.core.resources/.projects/BracesDA/.indexes/e4/e4/7b/7d/60/history.index differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/BracesDA/.indexes/properties.index and b/.metadata/.plugins/org.eclipse.core.resources/.projects/BracesDA/.indexes/properties.index differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/BracesDA/org.eclipse.jdt.core/state.dat and /dev/null differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/KakomunDA/.indexes/properties.index and b/.metadata/.plugins/org.eclipse.core.resources/.projects/KakomunDA/.indexes/properties.index differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/KakomunDA/org.eclipse.jdt.core/state.dat and /dev/null differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/SampleDA/.indexes/properties.index and b/.metadata/.plugins/org.eclipse.core.resources/.projects/SampleDA/.indexes/properties.index differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/SampleDA/org.eclipse.jdt.core/state.dat and /dev/null differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.root/13.tree and b/.metadata/.plugins/org.eclipse.core.resources/.root/14.tree differ
Binary files a/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and b/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources differ
--- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.ddms.prefs
+++ b/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.ddms.prefs
@@ -1,6 +1,10 @@
11 ddms.logcat.auotmonitor.level=error
22 ddms.logcat.automonitor.userprompt=true
3+devicePanel.Col0=126
4+devicePanel.Col1=53
5+devicePanel.Col4=81
36 eclipse.preferences.version=1
7+lastImageSaveDir=/home/kodakana/Documents/2014
48 logcat.view.colsize.Application=173
59 logcat.view.colsize.Level=28
610 logcat.view.colsize.PID=64
@@ -8,3 +12,10 @@ logcat.view.colsize.TID=64
812 logcat.view.colsize.Tag=129
913 logcat.view.colsize.Text=670
1014 logcat.view.colsize.Time=179
15+threadPanel.Col0=36
16+threadPanel.Col1=52
17+threadPanel.Col2=78
18+threadPanel.Col3=47
19+threadPanel.Col4=47
20+threadPanel.Col5=427
21+threadPanel.stack.col0=677
--- a/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml
+++ b/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml
@@ -10,20 +10,20 @@
1010 </launchGroup>
1111 <launchGroup id="org.eclipse.debug.ui.launchGroup.debug">
1212 <mruHistory>
13-<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;BracesDA&quot;/&gt;&#10;"/>
14-<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;KakomunDA&quot;/&gt;&#10;"/>
1513 <launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;AozoraEmDA&quot;/&gt;&#10;"/>
1614 <launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;AozoraRubyDA&quot;/&gt;&#10;"/>
15+<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;BracesDA&quot;/&gt;&#10;"/>
16+<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;KakomunDA&quot;/&gt;&#10;"/>
1717 <launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;SampleDA&quot;/&gt;&#10;"/>
1818 </mruHistory>
1919 <favorites/>
2020 </launchGroup>
2121 <launchGroup id="org.eclipse.debug.ui.launchGroup.run">
2222 <mruHistory>
23-<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;BracesDA&quot;/&gt;&#10;"/>
24-<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;KakomunDA&quot;/&gt;&#10;"/>
2523 <launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;AozoraEmDA&quot;/&gt;&#10;"/>
2624 <launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;AozoraRubyDA&quot;/&gt;&#10;"/>
25+<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;BracesDA&quot;/&gt;&#10;"/>
26+<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;KakomunDA&quot;/&gt;&#10;"/>
2727 <launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;SampleDA&quot;/&gt;&#10;"/>
2828 </mruHistory>
2929 <favorites/>
--- a/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi
+++ b/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi
@@ -1,6 +1,6 @@
11 <?xml version="1.0" encoding="ASCII"?>
22 <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="_1dE5oLsLEeOj1duRcKPRhA" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_1dE5obsLEeOj1duRcKPRhA" bindingContexts="_1dFhxLsLEeOj1duRcKPRhA">
3- <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;workbench>&#xA;&lt;mruList>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;KakomunDaActivity.java&quot; tooltip=&quot;KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;BracesDaActivity.java&quot; tooltip=&quot;BracesDA/src/org/pulpdust/da/braces/BracesDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/BracesDA/src/org/pulpdust/da/braces/BracesDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;AozoraRubyDaActivity.java&quot; tooltip=&quot;AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;AozoraEmDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraEmDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;AozoraRubyDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraRubyDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;SampleDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/SampleDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;AozoraEmDaActivity.java&quot; tooltip=&quot;AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;SampleDaActivity.java&quot; tooltip=&quot;SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;BracesDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/BracesDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;KakomunDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/KakomunDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_kakomunda.xml&quot; tooltip=&quot;KakomunDA/res/layout/activity_kakomunda.xml&quot;>&#xA;&lt;persistable path=&quot;/KakomunDA/res/layout/activity_kakomunda.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_aozoraem.xml&quot; tooltip=&quot;AozoraEmDA/res/layout-v8/activity_aozoraem.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraEmDA/res/layout-v8/activity_aozoraem.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_aozoraruby.xml&quot; tooltip=&quot;AozoraRubyDA/res/layout-v8/activity_aozoraruby.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraRubyDA/res/layout-v8/activity_aozoraruby.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_aozoraem.xml&quot; tooltip=&quot;AozoraEmDA/res/layout/activity_aozoraem.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraEmDA/res/layout/activity_aozoraem.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_aozoraruby.xml&quot; tooltip=&quot;AozoraRubyDA/res/layout/activity_aozoraruby.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraRubyDA/res/layout/activity_aozoraruby.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;/mruList>&#xA;&lt;/workbench>"/>
3+ <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;workbench>&#xA;&lt;mruList>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;AozoraEmDaActivity.java&quot; tooltip=&quot;AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;SampleDaActivity.java&quot; tooltip=&quot;SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;KakomunDaActivity.java&quot; tooltip=&quot;KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;BracesDaActivity.java&quot; tooltip=&quot;BracesDA/src/org/pulpdust/da/braces/BracesDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/BracesDA/src/org/pulpdust/da/braces/BracesDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot; name=&quot;AozoraRubyDaActivity.java&quot; tooltip=&quot;AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java&quot;>&#xA;&lt;persistable path=&quot;/AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;AozoraEmDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraEmDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;AozoraRubyDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraRubyDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;SampleDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/SampleDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;BracesDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/BracesDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot; name=&quot;AndroidManifest.xml&quot; tooltip=&quot;KakomunDA/AndroidManifest.xml&quot;>&#xA;&lt;persistable path=&quot;/KakomunDA/AndroidManifest.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_kakomunda.xml&quot; tooltip=&quot;KakomunDA/res/layout/activity_kakomunda.xml&quot;>&#xA;&lt;persistable path=&quot;/KakomunDA/res/layout/activity_kakomunda.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_aozoraem.xml&quot; tooltip=&quot;AozoraEmDA/res/layout-v8/activity_aozoraem.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraEmDA/res/layout-v8/activity_aozoraem.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_aozoraruby.xml&quot; tooltip=&quot;AozoraRubyDA/res/layout-v8/activity_aozoraruby.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraRubyDA/res/layout-v8/activity_aozoraruby.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_aozoraem.xml&quot; tooltip=&quot;AozoraEmDA/res/layout/activity_aozoraem.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraEmDA/res/layout/activity_aozoraem.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;file factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot; name=&quot;activity_aozoraruby.xml&quot; tooltip=&quot;AozoraRubyDA/res/layout/activity_aozoraruby.xml&quot;>&#xA;&lt;persistable path=&quot;/AozoraRubyDA/res/layout/activity_aozoraruby.xml&quot;/>&#xA;&lt;/file>&#xA;&lt;/mruList>&#xA;&lt;/workbench>"/>
44 <tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
55 <tags>ModelMigrationProcessor.001</tags>
66 <children xsi:type="basic:TrimmedWindow" xmi:id="_1dE5obsLEeOj1duRcKPRhA" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_1dE5orsLEeOj1duRcKPRhA" label="%trimmedwindow.label.eclipseSDK" x="-4" y="25" width="1022" height="740">
@@ -72,11 +72,12 @@
7272 <tags>persp.showIn:org.eclipse.team.ui.GenericHistoryView</tags>
7373 <tags>persp.showIn:org.eclipse.ui.views.ResourceNavigator</tags>
7474 <tags>persp.showIn:org.eclipse.ui.navigator.ProjectExplorer</tags>
75- <children xsi:type="basic:PartSashContainer" xmi:id="_1dE5pbsLEeOj1duRcKPRhA" selectedElement="_1dE5rLsLEeOj1duRcKPRhA" horizontal="true">
75+ <children xsi:type="basic:PartSashContainer" xmi:id="_1dE5pbsLEeOj1duRcKPRhA" selectedElement="_1dE5prsLEeOj1duRcKPRhA" horizontal="true">
7676 <children xsi:type="basic:PartStack" xmi:id="_1dE5prsLEeOj1duRcKPRhA" elementId="left" visible="false" containerData="2500" selectedElement="_1dE5p7sLEeOj1duRcKPRhA">
7777 <tags>newtablook</tags>
7878 <tags>org.eclipse.e4.primaryNavigationStack</tags>
7979 <tags>Minimized</tags>
80+ <tags>active</tags>
8081 <children xsi:type="advanced:Placeholder" xmi:id="_1dE5p7sLEeOj1duRcKPRhA" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_1dE657sLEeOj1duRcKPRhA"/>
8182 <children xsi:type="advanced:Placeholder" xmi:id="_1dE5qLsLEeOj1duRcKPRhA" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_1dE7A7sLEeOj1duRcKPRhA"/>
8283 <children xsi:type="advanced:Placeholder" xmi:id="_1dE5qbsLEeOj1duRcKPRhA" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_1dE7BLsLEeOj1duRcKPRhA"/>
@@ -111,6 +112,63 @@
111112 </children>
112113 </children>
113114 </children>
115+ <children xsi:type="advanced:Perspective" xmi:id="_3TCCYL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.Perspective" selectedElement="_3TCCYb0_EeOUEal7hoKuyg" label="DDMS" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/ddms-16.png">
116+ <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/>
117+ <tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags>
118+ <tags>persp.actionSet:org.eclipse.search.searchActionSet</tags>
119+ <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation</tags>
120+ <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation</tags>
121+ <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo</tags>
122+ <tags>persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet</tags>
123+ <tags>persp.actionSet:org.eclipse.ui.actionSet.keyBindings</tags>
124+ <tags>persp.actionSet:org.eclipse.ui.actionSet.openFiles</tags>
125+ <tags>persp.perspSC:org.eclipse.ui.resourcePerspective</tags>
126+ <tags>persp.perspSC:org.eclipse.debug.ui.DebugPerspective</tags>
127+ <tags>persp.perspSC:org.eclipse.jdt.ui.JavaPerspective</tags>
128+ <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.DeviceView</tags>
129+ <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.FileExplorerView</tags>
130+ <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.HeapView</tags>
131+ <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.AllocTrackerView</tags>
132+ <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.LogCatView</tags>
133+ <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.ThreadView</tags>
134+ <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.NetworkStatsView</tags>
135+ <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.SysInfoView</tags>
136+ <tags>persp.viewSC:org.eclipse.ui.views.ResourceNavigator</tags>
137+ <tags>persp.viewSC:org.eclipse.ui.views.BookmarkView</tags>
138+ <tags>persp.viewSC:org.eclipse.ui.views.ContentOutline</tags>
139+ <tags>persp.viewSC:org.eclipse.ui.views.PropertySheet</tags>
140+ <tags>persp.viewSC:org.eclipse.ui.views.ProblemView</tags>
141+ <tags>persp.viewSC:org.eclipse.ui.views.ProgressView</tags>
142+ <tags>persp.viewSC:org.eclipse.ui.views.TaskList</tags>
143+ <children xsi:type="basic:PartSashContainer" xmi:id="_3TCCYb0_EeOUEal7hoKuyg" selectedElement="_3TCCYr0_EeOUEal7hoKuyg">
144+ <children xsi:type="basic:PartSashContainer" xmi:id="_3TCCYr0_EeOUEal7hoKuyg" containerData="8000" selectedElement="_3TCCZr0_EeOUEal7hoKuyg" horizontal="true">
145+ <children xsi:type="basic:PartStack" xmi:id="_3TCCY70_EeOUEal7hoKuyg" elementId="devices" containerData="3000" selectedElement="_3TCCZb0_EeOUEal7hoKuyg">
146+ <tags>newtablook</tags>
147+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCZL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView:*" toBeRendered="false" ref="_3S3DQL0_EeOUEal7hoKuyg"/>
148+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCZb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView" ref="_3S44cL0_EeOUEal7hoKuyg"/>
149+ </children>
150+ <children xsi:type="basic:PartSashContainer" xmi:id="_3TCCZr0_EeOUEal7hoKuyg" containerData="7000" selectedElement="_3TCCaL0_EeOUEal7hoKuyg" horizontal="true">
151+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCZ70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.editorss" toBeRendered="false" containerData="5000" ref="_1dE6wrsLEeOj1duRcKPRhA"/>
152+ <children xsi:type="basic:PartStack" xmi:id="_3TCCaL0_EeOUEal7hoKuyg" elementId="ddms-detail" containerData="5000" selectedElement="_3TCCar0_EeOUEal7hoKuyg">
153+ <tags>newtablook</tags>
154+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCab0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView:*" toBeRendered="false" ref="_3S5fgL0_EeOUEal7hoKuyg"/>
155+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCar0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView" ref="_3S5fgb0_EeOUEal7hoKuyg"/>
156+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCa70_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.HeapView" ref="_3S6GkL0_EeOUEal7hoKuyg"/>
157+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCbL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.AllocTrackerView" ref="_3S6Gkb0_EeOUEal7hoKuyg"/>
158+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCbb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.NetworkStatsView" ref="_3S6toL0_EeOUEal7hoKuyg"/>
159+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCbr0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.FileExplorerView" ref="_3S6tob0_EeOUEal7hoKuyg"/>
160+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCb70_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.EmulatorControlView" ref="_3S7UsL0_EeOUEal7hoKuyg"/>
161+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCcL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.SysInfoView" ref="_3S77wL0_EeOUEal7hoKuyg"/>
162+ </children>
163+ </children>
164+ </children>
165+ <children xsi:type="basic:PartStack" xmi:id="_3TCCcb0_EeOUEal7hoKuyg" elementId="logcat" containerData="2000" selectedElement="_3TCCc70_EeOUEal7hoKuyg">
166+ <tags>newtablook</tags>
167+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCcr0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.LogCatView:*" toBeRendered="false" ref="_3S11IL0_EeOUEal7hoKuyg"/>
168+ <children xsi:type="advanced:Placeholder" xmi:id="_3TCCc70_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.LogCatView" ref="_1dE7UbsLEeOj1duRcKPRhA"/>
169+ </children>
170+ </children>
171+ </children>
114172 </children>
115173 <children xsi:type="basic:PartStack" xmi:id="_1dE5vLsLEeOj1duRcKPRhA" elementId="stickyFolderRight" toBeRendered="false" containerData="2500">
116174 <children xsi:type="advanced:Placeholder" xmi:id="_1dE5vbsLEeOj1duRcKPRhA" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_1dE6vbsLEeOj1duRcKPRhA"/>
@@ -136,11 +194,10 @@
136194 <tags>categoryTag:Help</tags>
137195 </sharedElements>
138196 <sharedElements xsi:type="advanced:Area" xmi:id="_1dE6wrsLEeOj1duRcKPRhA" elementId="org.eclipse.ui.editorss" selectedElement="_1dE6w7sLEeOj1duRcKPRhA">
139- <children xsi:type="basic:PartStack" xmi:id="_1dE6w7sLEeOj1duRcKPRhA" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_ZP7SMLzeEeO7Yto4c03a5g">
197+ <children xsi:type="basic:PartStack" xmi:id="_1dE6w7sLEeOj1duRcKPRhA" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_5rQBgL1AEeOUEal7hoKuyg">
140198 <tags>newtablook</tags>
141199 <tags>org.eclipse.e4.primaryDataStack</tags>
142200 <tags>EditorStack</tags>
143- <tags>active</tags>
144201 <children xsi:type="basic:Part" xmi:id="_W_h84LzeEeO7Yto4c03a5g" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="AozoraRubyDaActivity.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java" closeable="true">
145202 <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/AozoraRubyDA/src/org/pulpdust/da/aozora/ruby/AozoraRubyDaActivity.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;137&quot; selectionOffset=&quot;1272&quot; selectionTopPixel=&quot;134&quot;/>&#xA;&lt;/editor>"/>
146203 <tags>Editor</tags>
@@ -152,11 +209,21 @@
152209 <tags>Editor</tags>
153210 <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
154211 <tags>removeOnHide</tags>
155- <tags>active</tags>
156- <tags>activeOnClose</tags>
157212 </children>
158213 <children xsi:type="basic:Part" xmi:id="__d8scLzeEeO7Yto4c03a5g" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="KakomunDaActivity.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java" closeable="true">
159- <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;1768&quot; selectionTopPixel=&quot;471&quot;/>&#xA;&lt;/editor>"/>
214+ <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/KakomunDA/src/org/pulpdust/da/kakomun/KakomunDaActivity.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;1323&quot; selectionTopPixel=&quot;471&quot;/>&#xA;&lt;/editor>"/>
215+ <tags>Editor</tags>
216+ <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
217+ <tags>removeOnHide</tags>
218+ </children>
219+ <children xsi:type="basic:Part" xmi:id="_ufw18L0_EeOUEal7hoKuyg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="SampleDaActivity.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java" closeable="true">
220+ <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/SampleDA/src/org/pulpdust/da/sample/SampleDaActivity.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;519&quot; selectionTopPixel=&quot;0&quot;/>&#xA;&lt;/editor>"/>
221+ <tags>Editor</tags>
222+ <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
223+ <tags>removeOnHide</tags>
224+ </children>
225+ <children xsi:type="basic:Part" xmi:id="_5rQBgL1AEeOUEal7hoKuyg" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="AozoraEmDaActivity.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java" closeable="true">
226+ <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/AozoraEmDA/src/org/pulpdust/da/aozora/em/AozoraEmDaActivity.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;937&quot; selectionTopPixel=&quot;0&quot;/>&#xA;&lt;/editor>"/>
160227 <tags>Editor</tags>
161228 <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
162229 <tags>removeOnHide</tags>
@@ -167,6 +234,8 @@
167234 <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;view group_libraries=&quot;1&quot; layout=&quot;2&quot; linkWithEditor=&quot;0&quot; rootMode=&quot;1&quot; workingSetName=&quot;Aggregate for window 1396166732194&quot;>&#xA;&lt;customFilters userDefinedPatternsEnabled=&quot;false&quot;>&#xA;&lt;xmlDefinedFilters>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.LibraryFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.StaticsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.pde.ui.ExternalPluginLibrariesFilter1&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.FieldsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.pde.ui.BinaryProjectFilter1&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;/xmlDefinedFilters>&#xA;&lt;/customFilters>&#xA;&lt;/view>"/>
168235 <tags>View</tags>
169236 <tags>categoryTag:Java</tags>
237+ <tags>active</tags>
238+ <tags>activeOnClose</tags>
170239 <menus xmi:id="_1dE66LsLEeOj1duRcKPRhA" elementId="org.eclipse.jdt.ui.PackageExplorer">
171240 <tags>ViewMenu</tags>
172241 <tags>menuContribution:menu</tags>
@@ -312,6 +381,62 @@
312381 </menus>
313382 <toolbar xmi:id="_1dE7U7sLEeOj1duRcKPRhA" elementId="com.android.ide.eclipse.ddms.views.LogCatView" visible="false"/>
314383 </sharedElements>
384+ <sharedElements xsi:type="basic:Part" xmi:id="_3S11IL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.LogCatView:*" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="LogCat" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/logcat.png" closeable="true">
385+ <tags>View</tags>
386+ <tags>categoryTag:Android</tags>
387+ </sharedElements>
388+ <sharedElements xsi:type="basic:Part" xmi:id="_3S3DQL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView:*" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Devices" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/device.png" closeable="true">
389+ <tags>View</tags>
390+ <tags>categoryTag:Android</tags>
391+ </sharedElements>
392+ <sharedElements xsi:type="basic:Part" xmi:id="_3S44cL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Devices" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/device.png" tooltip="" closeable="true">
393+ <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;view/>"/>
394+ <tags>View</tags>
395+ <tags>categoryTag:Android</tags>
396+ <menus xmi:id="_3Tv0EL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView">
397+ <tags>ViewMenu</tags>
398+ <tags>menuContribution:menu</tags>
399+ </menus>
400+ <toolbar xmi:id="_3Tv0Eb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.DeviceView" visible="false"/>
401+ </sharedElements>
402+ <sharedElements xsi:type="basic:Part" xmi:id="_3S5fgL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView:*" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Threads" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/thread.png" closeable="true">
403+ <tags>View</tags>
404+ <tags>categoryTag:Android</tags>
405+ </sharedElements>
406+ <sharedElements xsi:type="basic:Part" xmi:id="_3S5fgb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Threads" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/thread.png" tooltip="" closeable="true">
407+ <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;view/>"/>
408+ <tags>View</tags>
409+ <tags>categoryTag:Android</tags>
410+ <menus xmi:id="_3Vs74L0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView">
411+ <tags>ViewMenu</tags>
412+ <tags>menuContribution:menu</tags>
413+ </menus>
414+ <toolbar xmi:id="_3Vs74b0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.ThreadView" visible="false"/>
415+ </sharedElements>
416+ <sharedElements xsi:type="basic:Part" xmi:id="_3S6GkL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.HeapView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Heap" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/heap.png" closeable="true">
417+ <tags>View</tags>
418+ <tags>categoryTag:Android</tags>
419+ </sharedElements>
420+ <sharedElements xsi:type="basic:Part" xmi:id="_3S6Gkb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.AllocTrackerView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Allocation Tracker" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/heap.png" closeable="true">
421+ <tags>View</tags>
422+ <tags>categoryTag:Android</tags>
423+ </sharedElements>
424+ <sharedElements xsi:type="basic:Part" xmi:id="_3S6toL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.NetworkStatsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Network Statistics" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/networkstats.png" closeable="true">
425+ <tags>View</tags>
426+ <tags>categoryTag:Android</tags>
427+ </sharedElements>
428+ <sharedElements xsi:type="basic:Part" xmi:id="_3S6tob0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.FileExplorerView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="File Explorer" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/android.png" closeable="true">
429+ <tags>View</tags>
430+ <tags>categoryTag:Android</tags>
431+ </sharedElements>
432+ <sharedElements xsi:type="basic:Part" xmi:id="_3S7UsL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.EmulatorControlView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Emulator Control" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/emulator-16.png" closeable="true">
433+ <tags>View</tags>
434+ <tags>categoryTag:Android</tags>
435+ </sharedElements>
436+ <sharedElements xsi:type="basic:Part" xmi:id="_3S77wL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.ddms.views.SysInfoView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="System Information" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" closeable="true">
437+ <tags>View</tags>
438+ <tags>categoryTag:Android</tags>
439+ </sharedElements>
315440 <trimBars xmi:id="_1dE7VLsLEeOj1duRcKPRhA" elementId="org.eclipse.ui.main.toolbar">
316441 <children xsi:type="menu:ToolBar" xmi:id="_1dE7VbsLEeOj1duRcKPRhA" elementId="group.file" toBeRendered="false">
317442 <tags>toolbarSeparator</tags>
@@ -319,18 +444,18 @@
319444 </children>
320445 <children xsi:type="menu:ToolBar" xmi:id="_1dE7V7sLEeOj1duRcKPRhA" elementId="org.eclipse.ui.workbench.file">
321446 <tags>Draggable</tags>
322- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SCzrkLzbEeO7Yto4c03a5g" elementId="new.group"/>
323- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SoLzbEeO7Yto4c03a5g" elementId="newWizardDropDown"/>
324- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SobzbEeO7Yto4c03a5g" elementId="new.ext" visible="false"/>
325- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SorzbEeO7Yto4c03a5g" elementId="save.group" visible="false"/>
326- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0So7zbEeO7Yto4c03a5g" elementId="save"/>
327- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SpLzbEeO7Yto4c03a5g" elementId="saveAll"/>
328- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC0SpbzbEeO7Yto4c03a5g" elementId="save.ext" visible="false"/>
329- <children xsi:type="menu:HandledToolItem" xmi:id="_SC0SprzbEeO7Yto4c03a5g" elementId="print" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.gif" tooltip="Print" command="_1dGveLsLEeOj1duRcKPRhA"/>
330- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39ALzbEeO7Yto4c03a5g" elementId="print.ext" visible="false"/>
331- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39AbzbEeO7Yto4c03a5g" elementId="build.group"/>
332- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39ArzbEeO7Yto4c03a5g" elementId="build.ext" visible="false"/>
333- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39A7zbEeO7Yto4c03a5g" elementId="additions"/>
447+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNGIL0_EeOUEal7hoKuyg" elementId="new.group"/>
448+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNGIb0_EeOUEal7hoKuyg" elementId="newWizardDropDown"/>
449+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNGIr0_EeOUEal7hoKuyg" elementId="new.ext" visible="false"/>
450+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNGI70_EeOUEal7hoKuyg" elementId="save.group" visible="false"/>
451+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNtML0_EeOUEal7hoKuyg" elementId="save"/>
452+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNtMb0_EeOUEal7hoKuyg" elementId="saveAll"/>
453+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfNtMr0_EeOUEal7hoKuyg" elementId="save.ext" visible="false"/>
454+ <children xsi:type="menu:HandledToolItem" xmi:id="_pfNtM70_EeOUEal7hoKuyg" elementId="print" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.gif" tooltip="Print" enabled="false" command="_1dGveLsLEeOj1duRcKPRhA"/>
455+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwgL0_EeOUEal7hoKuyg" elementId="print.ext" visible="false"/>
456+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwgb0_EeOUEal7hoKuyg" elementId="build.group"/>
457+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwgr0_EeOUEal7hoKuyg" elementId="build.ext" visible="false"/>
458+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwg70_EeOUEal7hoKuyg" elementId="additions"/>
334459 </children>
335460 <children xsi:type="menu:ToolBar" xmi:id="_1dE7ZLsLEeOj1duRcKPRhA" elementId="additions" toBeRendered="false">
336461 <tags>toolbarSeparator</tags>
@@ -338,59 +463,53 @@
338463 </children>
339464 <children xsi:type="menu:ToolBar" xmi:id="_1dE7gbsLEeOj1duRcKPRhA" elementId="org.eclipse.ui.edit.text.actionSet.presentation">
340465 <tags>Draggable</tags>
341- <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcQLy5EeOHtOgB1g4JqA" elementId="Presentation"/>
342- <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcQby5EeOHtOgB1g4JqA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/>
343- <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcQry5EeOHtOgB1g4JqA" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/>
344- <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcQ7y5EeOHtOgB1g4JqA" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/>
345- <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcRLy5EeOHtOgB1g4JqA" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/>
346- <children xsi:type="menu:OpaqueToolItem" xmi:id="_qrYcRby5EeOHtOgB1g4JqA" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/>
347- <children xsi:type="menu:OpaqueToolItem" xmi:id="_WEDTcLzbEeO7Yto4c03a5g" elementId="Presentation"/>
348- <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6gLzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/>
349- <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6gbzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/>
350- <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6grzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/>
351- <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6g7zbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/>
352- <children xsi:type="menu:OpaqueToolItem" xmi:id="_WED6hLzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/>
466+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsR9QL0_EeOUEal7hoKuyg" elementId="Presentation"/>
467+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsR9Qb0_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/>
468+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsR9Qr0_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/>
469+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsR9Q70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/>
470+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsTLYL0_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/>
471+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_qsTLYb0_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/>
353472 </children>
354473 <children xsi:type="menu:ToolBar" xmi:id="_1dE7jrsLEeOj1duRcKPRhA" elementId="adt.actionSet.avdManager">
355474 <tags>Draggable</tags>
356- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4QLzbEeO7Yto4c03a5g" elementId="android_project"/>
357- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4QbzbEeO7Yto4c03a5g" elementId="com.android.ide.eclipse.adt.ui.sdkmanager"/>
358- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4QrzbEeO7Yto4c03a5g" elementId="com.android.ide.eclipse.adt.ui.avdmanager"/>
475+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kcL0_EeOUEal7hoKuyg" elementId="android_project"/>
476+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kcb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.adt.ui.sdkmanager"/>
477+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kcr0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.adt.ui.avdmanager"/>
359478 </children>
360479 <children xsi:type="menu:ToolBar" xmi:id="_1dE7krsLEeOj1duRcKPRhA" elementId="adt.actionSet.lint">
361480 <tags>Draggable</tags>
362- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4Q7zbEeO7Yto4c03a5g" elementId="android_project"/>
363- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4RLzbEeO7Yto4c03a5g" elementId="com.android.ide.eclipse.adt.ui.lintrunner"/>
481+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kc70_EeOUEal7hoKuyg" elementId="android_project"/>
482+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg7kdL0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.adt.ui.lintrunner"/>
364483 </children>
365484 <children xsi:type="menu:ToolBar" xmi:id="_1dE7lbsLEeOj1duRcKPRhA" elementId="adt.actionSet.wizards">
366485 <tags>Draggable</tags>
367- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFM4RbzbEeO7Yto4c03a5g" elementId="android_project"/>
368- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfULzbEeO7Yto4c03a5g" elementId="com.android.ide.eclipse.adt.wizards.actions.NewXmlFileAction"/>
486+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LgL0_EeOUEal7hoKuyg" elementId="android_project"/>
487+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lgb0_EeOUEal7hoKuyg" elementId="com.android.ide.eclipse.adt.wizards.actions.NewXmlFileAction"/>
369488 </children>
370489 <children xsi:type="menu:ToolBar" xmi:id="_1dE7mLsLEeOj1duRcKPRhA" elementId="org.eclipse.debug.ui.breakpointActionSet">
371490 <tags>Draggable</tags>
372- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfUbzbEeO7Yto4c03a5g" elementId="breakpointGroup"/>
373- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfUrzbEeO7Yto4c03a5g" elementId="org.eclipse.debug.ui.actions.SkipAllBreakpoints"/>
491+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lgr0_EeOUEal7hoKuyg" elementId="breakpointGroup"/>
492+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lg70_EeOUEal7hoKuyg" elementId="org.eclipse.debug.ui.actions.SkipAllBreakpoints"/>
374493 </children>
375494 <children xsi:type="menu:ToolBar" xmi:id="_1dE7m7sLEeOj1duRcKPRhA" elementId="org.eclipse.debug.ui.launchActionSet">
376495 <tags>Draggable</tags>
377- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfU7zbEeO7Yto4c03a5g" elementId="debug"/>
378- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfVLzbEeO7Yto4c03a5g" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"/>
379- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfVbzbEeO7Yto4c03a5g" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"/>
380- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfVrzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"/>
496+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LhL0_EeOUEal7hoKuyg" elementId="debug"/>
497+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lhb0_EeOUEal7hoKuyg" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"/>
498+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lhr0_EeOUEal7hoKuyg" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"/>
499+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lh70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"/>
381500 </children>
382501 <children xsi:type="menu:ToolBar" xmi:id="_1dE7oLsLEeOj1duRcKPRhA" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet">
383502 <tags>Draggable</tags>
384- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfV7zbEeO7Yto4c03a5g" elementId="JavaWizards"/>
385- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfWLzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard"/>
386- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfWbzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"/>
387- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfWrzbEeO7Yto4c03a5g" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"/>
503+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LiL0_EeOUEal7hoKuyg" elementId="JavaWizards"/>
504+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lib0_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard"/>
505+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lir0_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"/>
506+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Li70_EeOUEal7hoKuyg" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"/>
388507 </children>
389508 <children xsi:type="menu:ToolBar" xmi:id="_1dE7pbsLEeOj1duRcKPRhA" elementId="org.eclipse.search.searchActionSet">
390509 <tags>Draggable</tags>
391- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfW7zbEeO7Yto4c03a5g" elementId="Search"/>
392- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfXLzbEeO7Yto4c03a5g" elementId="openType"/>
393- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfXbzbEeO7Yto4c03a5g" elementId="org.eclipse.search.OpenSearchDialogPage"/>
510+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LjL0_EeOUEal7hoKuyg" elementId="Search"/>
511+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Ljb0_EeOUEal7hoKuyg" elementId="openType"/>
512+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Ljr0_EeOUEal7hoKuyg" elementId="org.eclipse.search.OpenSearchDialogPage"/>
394513 </children>
395514 <children xsi:type="menu:ToolBar" xmi:id="_1dE7qbsLEeOj1duRcKPRhA" elementId="group.nav" toBeRendered="false">
396515 <tags>toolbarSeparator</tags>
@@ -398,15 +517,15 @@
398517 </children>
399518 <children xsi:type="menu:ToolBar" xmi:id="_1dE7q7sLEeOj1duRcKPRhA" elementId="org.eclipse.ui.workbench.navigate">
400519 <tags>Draggable</tags>
401- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39BLzbEeO7Yto4c03a5g" elementId="history.group"/>
402- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39BbzbEeO7Yto4c03a5g" elementId="group.application" visible="false"/>
403- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39BrzbEeO7Yto4c03a5g" elementId="backardHistory"/>
404- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39B7zbEeO7Yto4c03a5g" elementId="forwardHistory"/>
405- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC39CLzbEeO7Yto4c03a5g" elementId="pin.group"/>
406- <children xsi:type="menu:HandledToolItem" xmi:id="_SC4kELzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.gif" tooltip="Pin Editor" enabled="false" command="_1dGJO7sLEeOj1duRcKPRhA"/>
407- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfXrzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"/>
408- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfX7zbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"/>
409- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SFNfYLzbEeO7Yto4c03a5g" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"/>
520+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwhL0_EeOUEal7hoKuyg" elementId="history.group"/>
521+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfQwhb0_EeOUEal7hoKuyg" elementId="group.application" visible="false"/>
522+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfRXkL0_EeOUEal7hoKuyg" elementId="backardHistory"/>
523+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfRXkb0_EeOUEal7hoKuyg" elementId="forwardHistory"/>
524+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfRXkr0_EeOUEal7hoKuyg" elementId="pin.group"/>
525+ <children xsi:type="menu:HandledToolItem" xmi:id="_pfRXk70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.gif" tooltip="Pin Editor" enabled="false" command="_1dGJO7sLEeOj1duRcKPRhA"/>
526+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lj70_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"/>
527+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8LkL0_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"/>
528+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pg8Lkb0_EeOUEal7hoKuyg" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"/>
410529 </children>
411530 <children xsi:type="menu:ToolBar" xmi:id="_1dE7t7sLEeOj1duRcKPRhA" elementId="group.editor" toBeRendered="false">
412531 <tags>toolbarSeparator</tags>
@@ -418,8 +537,8 @@
418537 </children>
419538 <children xsi:type="menu:ToolBar" xmi:id="_1dE7u7sLEeOj1duRcKPRhA" elementId="org.eclipse.ui.workbench.help" visible="false">
420539 <tags>Draggable</tags>
421- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC4kEbzbEeO7Yto4c03a5g" elementId="group.help"/>
422- <children xsi:type="menu:OpaqueToolItem" xmi:id="_SC4kErzbEeO7Yto4c03a5g" elementId="group.application" visible="false"/>
540+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfR-oL0_EeOUEal7hoKuyg" elementId="group.help"/>
541+ <children xsi:type="menu:OpaqueToolItem" xmi:id="_pfR-ob0_EeOUEal7hoKuyg" elementId="group.application" visible="false"/>
423542 </children>
424543 <children xsi:type="menu:ToolControl" xmi:id="_1dE7vrsLEeOj1duRcKPRhA" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
425544 <tags>stretch</tags>
Binary files a/.metadata/.plugins/org.eclipse.jdt.core/2041947667.index and b/.metadata/.plugins/org.eclipse.jdt.core/2041947667.index differ
Binary files a/.metadata/.plugins/org.eclipse.jdt.core/2274186811.index and b/.metadata/.plugins/org.eclipse.jdt.core/2274186811.index differ
Binary files a/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps and b/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps differ
--- a/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt
+++ b/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt
@@ -3,7 +3,6 @@ INDEX VERSION 1.126+/home/kodakana/Workspace/DAs/.metadata/.plugins/org.eclipse.
33 2446651349.index
44 139751634.index
55 965234107.index
6-1469882382.index
76 2099288744.index
87 2041947667.index
98 2863901844.index
--- a/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml
+++ b/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml
@@ -14,12 +14,12 @@
1414 </section>
1515 <section name="JavaElementSearchActions">
1616 </section>
17+ <section name="quick_assist_proposal_size">
18+ </section>
1719 <section name="NewClassWizardPage">
1820 <item value="false" key="create_constructor"/>
1921 <item value="true" key="create_unimplemented"/>
2022 </section>
21- <section name="quick_assist_proposal_size">
22- </section>
2323 <section name="NewPackageWizardPage">
2424 <item value="false" key="create_package_info_java"/>
2525 </section>
--- a/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml
+++ b/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml
@@ -1,8 +1,8 @@
11 <?xml version="1.0" encoding="UTF-8"?>
22 <section name="Workbench">
33 <section name="org.eclipse.ui.internal.QuickAccess">
4- <item value="634" key="dialogWidth"/>
5- <item value="474" key="dialogHeight"/>
4+ <item value="640" key="dialogWidth"/>
5+ <item value="480" key="dialogHeight"/>
66 <list key="orderedProviders">
77 </list>
88 <list key="textArray">
@@ -12,6 +12,8 @@
1212 <list key="textEntries">
1313 </list>
1414 </section>
15+ <section name="ZipFileExportWizard">
16+ </section>
1517 <section name="ImportExportAction">
1618 <item value="org.eclipse.ui.wizards.import.ExternalProject" key="ImportExportPage.STORE_SELECTED_IMPORT_WIZARD_ID"/>
1719 <list key="ImportExportPage.STORE_EXPANDED_IMPORT_CATEGORIES">
--- a/AozoraEmDA/AndroidManifest.xml
+++ b/AozoraEmDA/AndroidManifest.xml
@@ -1,7 +1,7 @@
11 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
22 package="org.pulpdust.da.aozora.em"
3- android:versionCode="1"
4- android:versionName="0.1"
3+ android:versionCode="2"
4+ android:versionName="0.11"
55 android:installLocation="auto">
66
77 <uses-sdk
@@ -15,8 +15,7 @@
1515 android:theme="@style/AppTheme" >
1616 <activity
1717 android:name=".AozoraEmDaActivity"
18- android:label="@string/app_name"
19- android:windowSoftInputMode="stateVisible|adjustResize" >
18+ android:label="@string/app_name" >
2019 <intent-filter>
2120 <action android:name="org.pulpdust.da.action.LAUNCH" />
2221 <category android:name="android.intent.category.DEFAULT" />
--- a/AozoraEmDA/bin/AndroidManifest.xml
+++ b/AozoraEmDA/bin/AndroidManifest.xml
@@ -1,7 +1,7 @@
11 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
22 package="org.pulpdust.da.aozora.em"
3- android:versionCode="1"
4- android:versionName="0.1"
3+ android:versionCode="2"
4+ android:versionName="0.11"
55 android:installLocation="auto">
66
77 <uses-sdk
@@ -15,8 +15,7 @@
1515 android:theme="@style/AppTheme" >
1616 <activity
1717 android:name=".AozoraEmDaActivity"
18- android:label="@string/app_name"
19- android:windowSoftInputMode="stateVisible|adjustResize" >
18+ android:label="@string/app_name" >
2019 <intent-filter>
2120 <action android:name="org.pulpdust.da.action.LAUNCH" />
2221 <category android:name="android.intent.category.DEFAULT" />
Binary files a/AozoraEmDA/bin/AozoraEmDA.apk and b/AozoraEmDA/bin/AozoraEmDA.apk differ
Binary files a/AozoraRubyDA/bin/AozoraRubyDA.apk and b/AozoraRubyDA/bin/AozoraRubyDA.apk differ
Binary files a/BracesDA/bin/BracesDA.apk and b/BracesDA/bin/BracesDA.apk differ
Binary files a/KakomunDA/bin/KakomunDA.apk and b/KakomunDA/bin/KakomunDA.apk differ
Binary files a/SampleDA/bin/SampleDA.apk and b/SampleDA/bin/SampleDA.apk differ