Skip to content

Commit e26cce1

Browse files
commit
0 parents  commit e26cce1

File tree

96 files changed

+2123
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+2123
-0
lines changed

.classpath

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="gen"/>
5+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
7+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
8+
<classpathentry kind="output" path="bin/classes"/>
9+
</classpath>

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/bin

.project

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Copy of SwypeDoc</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>

.settings/org.eclipse.jdt.core.prefs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.6
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.source=1.6

AndroidManifest.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="nz.ac.waikato.cms.spaceys"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="8"
9+
android:targetSdkVersion="17" />
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="nz.ac.waikato.cms.spaceys.MainActivity"
18+
android:label="@string/app_name" >
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN" />
21+
22+
<category android:name="android.intent.category.LAUNCHER" />
23+
</intent-filter>
24+
</activity>
25+
<activity
26+
android:name="nz.ac.waikato.cms.spaceys.CanvasFragment"
27+
android:label="@string/title_activity_canvas_fragment" >
28+
</activity>
29+
<activity
30+
android:name="nz.ac.waikato.cms.spaceys.ListViewFragment"
31+
android:label="@string/title_activity_list_view_fragment" >
32+
</activity>
33+
</application>
34+
35+
</manifest>

bin/AndroidManifest.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="nz.ac.waikato.cms.spaceys"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="8"
9+
android:targetSdkVersion="17" />
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="nz.ac.waikato.cms.spaceys.MainActivity"
18+
android:label="@string/app_name" >
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN" />
21+
22+
<category android:name="android.intent.category.LAUNCHER" />
23+
</intent-filter>
24+
</activity>
25+
<activity
26+
android:name="nz.ac.waikato.cms.spaceys.CanvasFragment"
27+
android:label="@string/title_activity_canvas_fragment" >
28+
</activity>
29+
<activity
30+
android:name="nz.ac.waikato.cms.spaceys.ListViewFragment"
31+
android:label="@string/title_activity_list_view_fragment" >
32+
</activity>
33+
</application>
34+
35+
</manifest>

bin/classes/io/FileHandler.class

264 Bytes
Binary file not shown.

bin/classes/io/FileMaker.class

258 Bytes
Binary file not shown.

bin/classes/io/FileReader.class

261 Bytes
Binary file not shown.

bin/classes/modules/Module.class

3.38 KB
Binary file not shown.

bin/classes/modules/ModuleList.class

974 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
361 Bytes
Binary file not shown.
482 Bytes
Binary file not shown.
Binary file not shown.
414 Bytes
Binary file not shown.
472 Bytes
Binary file not shown.
Binary file not shown.
452 Bytes
Binary file not shown.
686 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

bin/classes/user/User.class

1.32 KB
Binary file not shown.
345 Bytes
Binary file not shown.

bin/classes/workspace/ListPanel.class

335 Bytes
Binary file not shown.

bin/classes/workspace/Panel.class

606 Bytes
Binary file not shown.

bin/classes/workspace/WorkSpace.class

889 Bytes
Binary file not shown.

bin/jarlist.cache

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# cache for current jar dependency. DO NOT EDIT.
2+
# format is <lastModified> <length> <SHA-1> <path>
3+
# Encoding is UTF-8
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/** Automatically generated file. DO NOT MODIFY */
2+
package nz.ac.waikato.cms.spaceys;
3+
4+
public final class BuildConfig {
5+
public final static boolean DEBUG = true;
6+
}

gen/nz/ac/waikato/cms/spaceys/R.java

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* aapt tool from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
8+
package nz.ac.waikato.cms.spaceys;
9+
10+
public final class R {
11+
public static final class attr {
12+
}
13+
public static final class dimen {
14+
/** Default screen margins, per the Android Design guidelines.
15+
16+
Customize dimensions originally defined in res/values/dimens.xml (such as
17+
screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.
18+
19+
*/
20+
public static final int activity_horizontal_margin=0x7f030000;
21+
public static final int activity_vertical_margin=0x7f030001;
22+
}
23+
public static final class drawable {
24+
public static final int ic_launcher=0x7f020000;
25+
}
26+
public static final class id {
27+
public static final int action_settings=0x7f070000;
28+
}
29+
public static final class menu {
30+
public static final int canvas=0x7f060000;
31+
public static final int list_view=0x7f060001;
32+
public static final int main=0x7f060002;
33+
}
34+
public static final class string {
35+
public static final int action_settings=0x7f040001;
36+
public static final int app_name=0x7f040000;
37+
public static final int hello_world=0x7f040002;
38+
public static final int title_activity_canvas_fragment=0x7f040003;
39+
public static final int title_activity_list_view_fragment=0x7f040004;
40+
}
41+
public static final class style {
42+
/**
43+
Base application theme, dependent on API level. This theme is replaced
44+
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
45+
46+
47+
Theme customizations available in newer API levels can go in
48+
res/values-vXX/styles.xml, while customizations related to
49+
backward-compatibility can go here.
50+
51+
52+
Base application theme for API 11+. This theme completely replaces
53+
AppBaseTheme from res/values/styles.xml on API 11+ devices.
54+
55+
API 11 theme customizations can go here.
56+
57+
Base application theme for API 14+. This theme completely replaces
58+
AppBaseTheme from BOTH res/values/styles.xml and
59+
res/values-v11/styles.xml on API 14+ devices.
60+
61+
API 14 theme customizations can go here.
62+
*/
63+
public static final int AppBaseTheme=0x7f050000;
64+
/** Application theme.
65+
All customizations that are NOT specific to a particular API-level can go here.
66+
*/
67+
public static final int AppTheme=0x7f050001;
68+
}
69+
}

hs_err_pid168.log

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
#
2+
# A fatal error has been detected by the Java Runtime Environment:
3+
#
4+
# Internal Error (javaClasses.cpp:129), pid=168, tid=540
5+
# fatal error: Invalid layout of preloaded class
6+
#
7+
# JRE version: 7.0_25-b16
8+
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.25-b01 mixed mode windows-amd64 compressed oops)
9+
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
10+
#
11+
# If you would like to submit a bug report, please visit:
12+
# http://bugreport.sun.com/bugreport/crash.jsp
13+
#
14+
15+
--------------- T H R E A D ---------------
16+
17+
Current thread (0x00000000022dc800): JavaThread "Unknown thread" [_thread_in_vm, id=540, stack(0x0000000002480000,0x0000000002580000)]
18+
19+
Stack: [0x0000000002480000,0x0000000002580000]
20+
21+
--------------- P R O C E S S ---------------
22+
23+
Java Threads: ( => current thread )
24+
25+
Other Threads:
26+
27+
=>0x00000000022dc800 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=540, stack(0x0000000002480000,0x0000000002580000)]
28+
29+
VM state:not at safepoint (not fully initialized)
30+
31+
VM Mutex/Monitor currently owned by a thread: None
32+
33+
GC Heap History (0 events):
34+
No events
35+
36+
Deoptimization events (0 events):
37+
No events
38+
39+
Internal exceptions (0 events):
40+
No events
41+
42+
Events (10 events):
43+
Event: 0.008 loading class 0x000000000215fbe0 done
44+
Event: 0.008 loading class 0x00000000021220c0 done
45+
Event: 0.008 loading class 0x0000000002122090
46+
Event: 0.008 loading class 0x00000000021b0660
47+
Event: 0.008 loading class 0x00000000021b0660 done
48+
Event: 0.008 loading class 0x00000000021b06a0
49+
Event: 0.008 loading class 0x00000000021b06a0 done
50+
Event: 0.008 loading class 0x000000000b4be8f0
51+
Event: 0.008 loading class 0x000000000b4be8f0 done
52+
Event: 0.008 loading class 0x0000000002122090 done
53+
54+
55+
Dynamic libraries:
56+
0x000000013fd00000 - 0x000000013fd33000 C:\Program Files\Java\jre7\bin\javaw.exe
57+
0x0000000076e00000 - 0x0000000076fa9000 C:\Windows\SYSTEM32\ntdll.dll
58+
0x0000000076ce0000 - 0x0000000076dff000 C:\Windows\system32\kernel32.dll
59+
0x000007fefd310000 - 0x000007fefd37b000 C:\Windows\system32\KERNELBASE.dll
60+
0x000007fefd750000 - 0x000007fefd82b000 C:\Windows\system32\ADVAPI32.DLL
61+
0x000007fefebb0000 - 0x000007fefec4f000 C:\Windows\system32\msvcrt.dll
62+
0x000007fefeb10000 - 0x000007fefeb2f000 C:\Windows\SYSTEM32\sechost.dll
63+
0x000007fefef40000 - 0x000007feff06d000 C:\Windows\system32\RPCRT4.dll
64+
0x0000000076be0000 - 0x0000000076cda000 C:\Windows\system32\USER32.dll
65+
0x000007fefea50000 - 0x000007fefeab7000 C:\Windows\system32\GDI32.dll
66+
0x000007fefd6a0000 - 0x000007fefd6ae000 C:\Windows\system32\LPK.dll
67+
0x000007fefe6a0000 - 0x000007fefe769000 C:\Windows\system32\USP10.dll
68+
0x000007fefbe40000 - 0x000007fefc034000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\COMCTL32.dll
69+
0x000007fefd6b0000 - 0x000007fefd721000 C:\Windows\system32\SHLWAPI.dll
70+
0x000007fefe770000 - 0x000007fefe79e000 C:\Windows\system32\IMM32.DLL
71+
0x000007fefec50000 - 0x000007fefed59000 C:\Windows\system32\MSCTF.dll
72+
0x0000000071eb0000 - 0x0000000071f81000 C:\Program Files\Java\jre7\bin\msvcr100.dll
73+
0x00000000717a0000 - 0x0000000071eaf000 C:\Program Files\Java\jre7\bin\server\jvm.dll
74+
0x000007fefb640000 - 0x000007fefb649000 C:\Windows\system32\WSOCK32.dll
75+
0x000007fefeac0000 - 0x000007fefeb0d000 C:\Windows\system32\WS2_32.dll
76+
0x000007fefd630000 - 0x000007fefd638000 C:\Windows\system32\NSI.dll
77+
0x000007fef6a30000 - 0x000007fef6a6b000 C:\Windows\system32\WINMM.dll
78+
0x0000000076fc0000 - 0x0000000076fc7000 C:\Windows\system32\PSAPI.DLL
79+
0x00000000731d0000 - 0x00000000731df000 C:\Program Files\Java\jre7\bin\verify.dll
80+
0x0000000071770000 - 0x0000000071798000 C:\Program Files\Java\jre7\bin\java.dll
81+
0x0000000072e90000 - 0x0000000072ea5000 C:\Program Files\Java\jre7\bin\zip.dll
82+
83+
VM Arguments:
84+
jvm_args: -Dfile.encoding=Cp1252 -Xbootclasspath:C:\apps\adt-bundle-windows-x86_64-20130522\sdk\platforms\android-17\android.jar
85+
java_command: io.Test
86+
Launcher Type: SUN_STANDARD
87+
88+
Environment Variables:
89+
PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\apps\commands;C:\Program Files (x86)\QuickTime\QTSystem\;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\
90+
USERNAME=sgb11
91+
OS=Windows_NT
92+
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
93+
94+
95+
96+
--------------- S Y S T E M ---------------
97+
98+
OS: Windows 7 , 64 bit Build 7601 Service Pack 1
99+
100+
CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, tsc, tscinvbit
101+
102+
Memory: 4k page, physical 8344628k(6300740k free), swap 16687400k(14520372k free)
103+
104+
vm_info: Java HotSpot(TM) 64-Bit Server VM (23.25-b01) for windows-amd64 JRE (1.7.0_25-b16), built on Jun 12 2013 16:42:02 by "java_re" with unknown MS VC++:1600
105+
106+
time: Wed Sep 04 12:32:55 2013
107+
elapsed time: 0 seconds
108+

0 commit comments

Comments
 (0)