Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TTTAndroidClient
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Dr. Michael Petter
TTTAndroidClient
Commits
93927858
Commit
93927858
authored
Apr 10, 2014
by
Thomas Krex
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Warnungen entfernt
parent
ed85ce5a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
11 deletions
+4
-11
TTTCLient/src/tttclient/core/IndexEntry.java
TTTCLient/src/tttclient/core/IndexEntry.java
+2
-1
TTTCLient/src/tttclient/core/Recording.java
TTTCLient/src/tttclient/core/Recording.java
+2
-10
No files found.
TTTCLient/src/tttclient/core/IndexEntry.java
View file @
93927858
...
...
@@ -26,11 +26,12 @@ import android.widget.LinearLayout;
* @author Thomas Krex
*
*/
@SuppressLint
(
"DefaultLocale"
)
@SuppressLint
(
{
"DefaultLocale"
,
"ViewConstructor"
}
)
public
class
IndexEntry
extends
ImageButton
{
private
final
int
timestamp
;
private
final
Index
index
;
private
BitmapContainer
bitmapContainer
;
@SuppressWarnings
(
"unused"
)
private
String
title
=
""
;
private
String
searchbase_of_page
;
private
ArrayList
<
SearchBaseEntry
>
words
;
...
...
TTTCLient/src/tttclient/core/Recording.java
View file @
93927858
...
...
@@ -60,10 +60,6 @@ public class Recording extends MessageProducerAdapter implements Runnable {
private
final
Messages
messages
;
private
final
Index
index
;
@SuppressWarnings
(
"unused"
)
private
final
Context
context
;
@SuppressWarnings
(
"unused"
)
private
File
tttFile
;
public
Messages
getMessages
()
{
...
...
@@ -78,25 +74,21 @@ public class Recording extends MessageProducerAdapter implements Runnable {
return
this
.
graphicsContext
;
}
public
void
setfileDesktop
(
File
name
)
{
tttFile
=
name
;
}
public
void
setMessages
(
ArrayList
<
Message
>
list
)
{
messages
.
setmessages
(
list
);
}
public
Recording
(
Context
context
,
File
tttFile
,
MediaPlayer
audioPlayer
,
ImageView
imgV
,
ScrollView
scrollView
)
throws
IOException
{
this
.
tttFile
=
tttFile
;
// read
this
.
context
=
context
;
messages
=
new
Messages
(
this
);
prefs
=
new
ProtocolPreferences
();
this
.
audioPlayer
=
audioPlayer
;
index
=
new
Index
(
this
,
scrollView
,
context
);
// read messages + extensions
read
(
tttFile
);
read
(
t
his
.
t
ttFile
);
graphicsContext
=
new
GraphicsContext
(
imgV
,
this
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment