();
+
+ public TweetList(){
+
+ }
+
+ public Tweet getTweet(int index){
+ return tweets.get(index);
+ }
+
+ public boolean hasTweet(Tweet tweet){
+ return tweets.contains(tweet);
+ }
+
+ public void add(Tweet tweet) {
+ tweets.add(tweet);
+ }
+
+ public void delete(Tweet tweet) {
+ tweets.remove(tweet);
+ }
+}
diff --git a/app/src/main/java/ca/ualberta/cs/lonelytwitter/TweetTooLongException.java b/app/src/main/java/ca/ualberta/cs/lonelytwitter/TweetTooLongException.java
new file mode 100644
index 0000000000..0c8da86488
--- /dev/null
+++ b/app/src/main/java/ca/ualberta/cs/lonelytwitter/TweetTooLongException.java
@@ -0,0 +1,5 @@
+package ca.ualberta.cs.lonelytwitter;
+
+public class TweetTooLongException extends Exception{
+
+}
diff --git a/app/src/main/java/ca/ualberta/cs/lonelytwitter/Tweetable.java b/app/src/main/java/ca/ualberta/cs/lonelytwitter/Tweetable.java
new file mode 100644
index 0000000000..cff18f45f7
--- /dev/null
+++ b/app/src/main/java/ca/ualberta/cs/lonelytwitter/Tweetable.java
@@ -0,0 +1,11 @@
+package ca.ualberta.cs.lonelytwitter;
+
+
+import java.util.Date;
+
+public interface Tweetable {
+ public String getMessage();
+
+ public Date getDate();
+
+}
diff --git a/app/src/main/java/ca/ualberta/cs/lonelytwitter/package-info.java b/app/src/main/java/ca/ualberta/cs/lonelytwitter/package-info.java
new file mode 100644
index 0000000000..f72a675649
--- /dev/null
+++ b/app/src/main/java/ca/ualberta/cs/lonelytwitter/package-info.java
@@ -0,0 +1,4 @@
+/**
+ * Test package documentation.
+ */
+package ca.ualberta.cs.lonelytwitter;
\ No newline at end of file
diff --git a/app/src/overview.html~ b/app/src/overview.html~
new file mode 100644
index 0000000000..d00b492b19
--- /dev/null
+++ b/app/src/overview.html~
@@ -0,0 +1,8 @@
+
+
+This is tyhe header.
+
+
+This is an overview.
+
+
diff --git a/app/src/overview.txt~ b/app/src/overview.txt~
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/build.gradle b/build.gradle
index 6a5c233c5d..8674409cc6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:1.3.0'
+ classpath 'com.android.tools.build:gradle:2.3.3'
}
}
diff --git a/docs/allclasses-frame.html b/docs/allclasses-frame.html
new file mode 100644
index 0000000000..2eb43fac1b
--- /dev/null
+++ b/docs/allclasses-frame.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+All Classes
+
+
+
+
+All Classes
+
+
+
diff --git a/docs/allclasses-noframe.html b/docs/allclasses-noframe.html
new file mode 100644
index 0000000000..6cf7e4bd84
--- /dev/null
+++ b/docs/allclasses-noframe.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+All Classes
+
+
+
+
+All Classes
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/BuildConfig.html b/docs/ca/ualberta/cs/lonelytwitter/BuildConfig.html
new file mode 100644
index 0000000000..424ae83356
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/BuildConfig.html
@@ -0,0 +1,332 @@
+
+
+
+
+
+BuildConfig
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ca.ualberta.cs.lonelytwitter.BuildConfig
+
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+BuildConfig ()
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+BuildConfig
+public BuildConfig()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/ImportantTweet.html b/docs/ca/ualberta/cs/lonelytwitter/ImportantTweet.html
new file mode 100644
index 0000000000..f8a3c47e73
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/ImportantTweet.html
@@ -0,0 +1,278 @@
+
+
+
+
+
+ImportantTweet
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+ImportantTweet (java.lang.String message)
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods
+
+Modifier and Type
+Method and Description
+
+
+java.lang.Boolean
+isImportant ()
+Is important boolean.
+
+
+
+
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/LonelyTwitterActivity.html b/docs/ca/ualberta/cs/lonelytwitter/LonelyTwitterActivity.html
new file mode 100644
index 0000000000..6cef84df93
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/LonelyTwitterActivity.html
@@ -0,0 +1,457 @@
+
+
+
+
+
+LonelyTwitterActivity
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+Activity
+
+
+ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields
+
+Modifier and Type
+Field and Description
+
+
+private
+adapter
+
+
+private EditText
+bodyText
+
+
+private static java.lang.String
+FILENAME
+The file that all the tweets are saved there.
+
+
+
+private ListView
+oldTweetsList
+
+
+private java.util.ArrayList<Tweet >
+tweetList
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods
+
+Modifier and Type
+Method and Description
+
+
+private void
+loadFromFile ()
+
+
+void
+onCreate (Bundle savedInstanceState)
+Called when the activity is first created.
+
+
+
+protected void
+onStart ()
+
+
+private void
+reverseItems ()
+This method rverses the items in the tweetList and refreshes the adapter.
+
+
+
+private void
+saveInFile ()
+
+
+private java.lang.String
+trimExtraSpaces (java.lang.String inputString)
+
+
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Field Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+adapter
+private adapter
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+
+
+
+
+onStart
+protected void onStart()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/LonelyTwitterActivityTest.html b/docs/ca/ualberta/cs/lonelytwitter/LonelyTwitterActivityTest.html
new file mode 100644
index 0000000000..4b48f273da
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/LonelyTwitterActivityTest.html
@@ -0,0 +1,263 @@
+
+
+
+
+
+LonelyTwitterActivityTest
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ActivityInstrumentationTestCase2
+
+
+ca.ualberta.cs.lonelytwitter.LonelyTwitterActivityTest
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods
+
+Modifier and Type
+Method and Description
+
+
+void
+testStart ()
+
+
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/NormalTweet.html b/docs/ca/ualberta/cs/lonelytwitter/NormalTweet.html
new file mode 100644
index 0000000000..5fe0596871
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/NormalTweet.html
@@ -0,0 +1,278 @@
+
+
+
+
+
+NormalTweet
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+NormalTweet (java.lang.String message)
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods
+
+Modifier and Type
+Method and Description
+
+
+java.lang.Boolean
+isImportant ()
+Is important boolean.
+
+
+
+
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/R.attr.html b/docs/ca/ualberta/cs/lonelytwitter/R.attr.html
new file mode 100644
index 0000000000..0f8aa1d3bf
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/R.attr.html
@@ -0,0 +1,230 @@
+
+
+
+
+
+R.attr
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ca.ualberta.cs.lonelytwitter.R.attr
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+R.attr ()
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+R.attr
+public R.attr()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/R.drawable.html b/docs/ca/ualberta/cs/lonelytwitter/R.drawable.html
new file mode 100644
index 0000000000..cfe12b7434
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/R.drawable.html
@@ -0,0 +1,267 @@
+
+
+
+
+
+R.drawable
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ca.ualberta.cs.lonelytwitter.R.drawable
+
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields
+
+Modifier and Type
+Field and Description
+
+
+static int
+ic_launcher
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+R.drawable ()
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Field Detail
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+R.drawable
+public R.drawable()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/R.html b/docs/ca/ualberta/cs/lonelytwitter/R.html
new file mode 100644
index 0000000000..fc099b55ea
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/R.html
@@ -0,0 +1,261 @@
+
+
+
+
+
+R
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ca.ualberta.cs.lonelytwitter.R
+
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+Nested Classes
+
+Modifier and Type
+Class and Description
+
+
+static class
+R.attr
+
+
+static class
+R.drawable
+
+
+static class
+R.id
+
+
+static class
+R.layout
+
+
+static class
+R.string
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+R ()
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/R.id.html b/docs/ca/ualberta/cs/lonelytwitter/R.id.html
new file mode 100644
index 0000000000..0a6fa893fa
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/R.id.html
@@ -0,0 +1,337 @@
+
+
+
+
+
+R.id
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ca.ualberta.cs.lonelytwitter.R.id
+
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+R.id ()
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+R.id
+public R.id()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/R.layout.html b/docs/ca/ualberta/cs/lonelytwitter/R.layout.html
new file mode 100644
index 0000000000..56eae03f3d
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/R.layout.html
@@ -0,0 +1,281 @@
+
+
+
+
+
+R.layout
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ca.ualberta.cs.lonelytwitter.R.layout
+
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields
+
+Modifier and Type
+Field and Description
+
+
+static int
+list_item
+
+
+static int
+main
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+R.layout ()
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+R.layout
+public R.layout()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/R.string.html b/docs/ca/ualberta/cs/lonelytwitter/R.string.html
new file mode 100644
index 0000000000..666f6883ee
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/R.string.html
@@ -0,0 +1,309 @@
+
+
+
+
+
+R.string
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ca.ualberta.cs.lonelytwitter.R.string
+
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields
+
+Modifier and Type
+Field and Description
+
+
+static int
+app_name
+
+
+static int
+clear
+
+
+static int
+hello
+
+
+static int
+save
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+R.string ()
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+R.string
+public R.string()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/Tweet.html b/docs/ca/ualberta/cs/lonelytwitter/Tweet.html
new file mode 100644
index 0000000000..fbf1887593
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/Tweet.html
@@ -0,0 +1,427 @@
+
+
+
+
+
+Tweet
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ca.ualberta.cs.lonelytwitter.Tweet
+
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields
+
+Modifier and Type
+Field and Description
+
+
+private java.util.Date
+date
+
+
+private java.lang.String
+message
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+Tweet (java.lang.String message)
+Instantiates a new Tweet.
+
+
+
+Tweet (java.lang.String message,
+ java.util.Date date)
+Instantiates a new Tweet.
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods
+
+Modifier and Type
+Method and Description
+
+
+java.util.Date
+getDate ()
+
+
+java.lang.String
+getMessage ()
+
+
+abstract java.lang.Boolean
+isImportant ()
+Is important boolean.
+
+
+
+void
+setDate (java.util.Date date)
+Sets date.
+
+
+
+void
+setMessage (java.lang.String message)
+Sets message.
+
+
+
+java.lang.String
+toString ()
+
+
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/TweetList.html b/docs/ca/ualberta/cs/lonelytwitter/TweetList.html
new file mode 100644
index 0000000000..cd50f9247d
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/TweetList.html
@@ -0,0 +1,329 @@
+
+
+
+
+
+TweetList
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ca.ualberta.cs.lonelytwitter.TweetList
+
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields
+
+Modifier and Type
+Field and Description
+
+
+private java.util.ArrayList<Tweet >
+tweets
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+TweetList ()
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Field Detail
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+TweetList
+public TweetList()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/TweetListTest.html b/docs/ca/ualberta/cs/lonelytwitter/TweetListTest.html
new file mode 100644
index 0000000000..c0403a76ca
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/TweetListTest.html
@@ -0,0 +1,299 @@
+
+
+
+
+
+TweetListTest
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+ActivityInstrumentationTestCase2
+
+
+ca.ualberta.cs.lonelytwitter.TweetListTest
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+TweetListTest ()
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+TweetListTest
+public TweetListTest()
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+
+
+
+
+testDelete
+public void testDelete()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/TweetTooLongException.html b/docs/ca/ualberta/cs/lonelytwitter/TweetTooLongException.html
new file mode 100644
index 0000000000..3cb1d58e2f
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/TweetTooLongException.html
@@ -0,0 +1,248 @@
+
+
+
+
+
+TweetTooLongException
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+java.lang.Throwable
+
+
+java.lang.Exception
+
+
+ca.ualberta.cs.lonelytwitter.TweetTooLongException
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.Throwable
+addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+
+
+
+
+
+Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/Tweetable.html b/docs/ca/ualberta/cs/lonelytwitter/Tweetable.html
new file mode 100644
index 0000000000..4e4277f646
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/Tweetable.html
@@ -0,0 +1,221 @@
+
+
+
+
+
+Tweetable
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+Summary:
+Nested |
+Field |
+Constr |
+Method
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+Methods
+
+Modifier and Type
+Method and Description
+
+
+java.util.Date
+getDate ()
+
+
+java.lang.String
+getMessage ()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+
+
+
+
+getDate
+java.util.Date getDate()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Summary:
+Nested |
+Field |
+Constr |
+Method
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/BuildConfig.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/BuildConfig.html
new file mode 100644
index 0000000000..70e68c1f8b
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/BuildConfig.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.BuildConfig
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.BuildConfig
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/ImportantTweet.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/ImportantTweet.html
new file mode 100644
index 0000000000..eff86b3164
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/ImportantTweet.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.ImportantTweet
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.ImportantTweet
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/LonelyTwitterActivity.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/LonelyTwitterActivity.html
new file mode 100644
index 0000000000..4014140224
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/LonelyTwitterActivity.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/LonelyTwitterActivityTest.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/LonelyTwitterActivityTest.html
new file mode 100644
index 0000000000..365f157075
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/LonelyTwitterActivityTest.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivityTest
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.LonelyTwitterActivityTest
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/NormalTweet.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/NormalTweet.html
new file mode 100644
index 0000000000..497b33a186
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/NormalTweet.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.NormalTweet
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.NormalTweet
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/R.attr.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.attr.html
new file mode 100644
index 0000000000..40c07539e1
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.attr.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.R.attr
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.R.attr
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/R.drawable.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.drawable.html
new file mode 100644
index 0000000000..4624b7689d
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.drawable.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.R.drawable
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.R.drawable
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/R.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.html
new file mode 100644
index 0000000000..f30c50d24f
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.R
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.R
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/R.id.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.id.html
new file mode 100644
index 0000000000..cefc9b266b
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.id.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.R.id
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.R.id
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/R.layout.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.layout.html
new file mode 100644
index 0000000000..0d59b09a00
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.layout.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.R.layout
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.R.layout
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/R.string.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.string.html
new file mode 100644
index 0000000000..50c71801af
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/R.string.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.R.string
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.R.string
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/Tweet.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/Tweet.html
new file mode 100644
index 0000000000..bfadd0405b
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/Tweet.html
@@ -0,0 +1,193 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.Tweet
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/TweetList.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/TweetList.html
new file mode 100644
index 0000000000..ff5f3abc32
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/TweetList.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.TweetList
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.TweetList
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/TweetListTest.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/TweetListTest.html
new file mode 100644
index 0000000000..6f19f08293
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/TweetListTest.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.TweetListTest
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+No usage of ca.ualberta.cs.lonelytwitter.TweetListTest
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/TweetTooLongException.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/TweetTooLongException.html
new file mode 100644
index 0000000000..74057cf7db
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/TweetTooLongException.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+Uses of Class ca.ualberta.cs.lonelytwitter.TweetTooLongException
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/class-use/Tweetable.html b/docs/ca/ualberta/cs/lonelytwitter/class-use/Tweetable.html
new file mode 100644
index 0000000000..6b7bc8ed63
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/class-use/Tweetable.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+Uses of Interface ca.ualberta.cs.lonelytwitter.Tweetable
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/package-frame.html b/docs/ca/ualberta/cs/lonelytwitter/package-frame.html
new file mode 100644
index 0000000000..7f5ce73226
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/package-frame.html
@@ -0,0 +1,33 @@
+
+
+
+
+
+ca.ualberta.cs.lonelytwitter
+
+
+
+
+
+
+
Interfaces
+
+
Classes
+
+
Exceptions
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/package-summary.html b/docs/ca/ualberta/cs/lonelytwitter/package-summary.html
new file mode 100644
index 0000000000..64cd75ebd0
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/package-summary.html
@@ -0,0 +1,202 @@
+
+
+
+
+
+ca.ualberta.cs.lonelytwitter
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Prev Package
+Next Package
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Interface Summary
+
+Interface
+Description
+
+
+
+Tweetable
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Package ca.ualberta.cs.lonelytwitter Description
+
Test package documentation.
+
+
+
+
+
+Prev Package
+Next Package
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/package-tree.html b/docs/ca/ualberta/cs/lonelytwitter/package-tree.html
new file mode 100644
index 0000000000..8703a4bd32
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/package-tree.html
@@ -0,0 +1,156 @@
+
+
+
+
+
+ca.ualberta.cs.lonelytwitter Class Hierarchy
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
Class Hierarchy
+
+java.lang.Object
+
+Activity
+
+
+ActivityInstrumentationTestCase2
+
+
+ActivityInstrumentationTestCase2
+
+
+java.lang.Throwable (implements java.io.Serializable)
+
+java.lang.Exception
+
+
+
+
+ca.ualberta.cs.lonelytwitter.Tweet (implements ca.ualberta.cs.lonelytwitter.Tweetable )
+
+
+ca.ualberta.cs.lonelytwitter.TweetList
+
+
+
+
Interface Hierarchy
+
+
+
+
+
+
+
+
diff --git a/docs/ca/ualberta/cs/lonelytwitter/package-use.html b/docs/ca/ualberta/cs/lonelytwitter/package-use.html
new file mode 100644
index 0000000000..8991e5e1f0
--- /dev/null
+++ b/docs/ca/ualberta/cs/lonelytwitter/package-use.html
@@ -0,0 +1,139 @@
+
+
+
+
+
+Uses of Package ca.ualberta.cs.lonelytwitter
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/constant-values.html b/docs/constant-values.html
new file mode 100644
index 0000000000..9d2c471b29
--- /dev/null
+++ b/docs/constant-values.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+Constant Field Values
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
ca.ualberta.*
+
+
+
+ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+Modifier and Type
+Constant Field
+Value
+
+
+
+
+
+ private static final java.lang.String
+FILENAME
+"file.sav"
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/deprecated-list.html b/docs/deprecated-list.html
new file mode 100644
index 0000000000..d8f6db8081
--- /dev/null
+++ b/docs/deprecated-list.html
@@ -0,0 +1,113 @@
+
+
+
+
+
+Deprecated List
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/help-doc.html b/docs/help-doc.html
new file mode 100644
index 0000000000..51e466d31f
--- /dev/null
+++ b/docs/help-doc.html
@@ -0,0 +1,214 @@
+
+
+
+
+
+API Help
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+Package
+Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:
+
+Interfaces (italic)
+Classes
+Enums
+Exceptions
+Errors
+Annotation Types
+
+
+
+Class/Interface
+Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:
+
+Class inheritance diagram
+Direct Subclasses
+All Known Subinterfaces
+All Known Implementing Classes
+Class/interface declaration
+Class/interface description
+
+
+Nested Class Summary
+Field Summary
+Constructor Summary
+Method Summary
+
+
+Field Detail
+Constructor Detail
+Method Detail
+
+Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
+
+
+Annotation Type
+Each annotation type has its own separate page with the following sections:
+
+Annotation Type declaration
+Annotation Type description
+Required Element Summary
+Optional Element Summary
+Element Detail
+
+
+
+Enum
+Each enum has its own separate page with the following sections:
+
+Enum declaration
+Enum description
+Enum Constant Summary
+Enum Constant Detail
+
+
+
+Use
+Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
+
+
+Tree (Class Hierarchy)
+There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
+
+When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
+When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
+
+
+
+Deprecated API
+The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
+
+
+Index
+The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
+
+
+Prev/Next
+These links take you to the next or previous class, interface, package, or related page.
+
+
+Frames/No Frames
+These links show and hide the HTML frames. All pages are available with or without frames.
+
+
+All Classes
+The All Classes link shows all classes and interfaces except non-static nested types.
+
+
+Serialized Form
+Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
+
+
+Constant Field Values
+The Constant Field Values page lists the static final fields and their values.
+
+
+
This help file applies to API documentation generated using the standard doclet.
+
+
+
+
+
+
diff --git a/docs/index-files/index-1.html b/docs/index-files/index-1.html
new file mode 100644
index 0000000000..d5b215565c
--- /dev/null
+++ b/docs/index-files/index-1.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+A-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
A
+
+adapter - Variable in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+add(Tweet) - Method in class ca.ualberta.cs.lonelytwitter.TweetList
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-10.html b/docs/index-files/index-10.html
new file mode 100644
index 0000000000..91805d8df7
--- /dev/null
+++ b/docs/index-files/index-10.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+M-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
M
+
+message - Variable in class ca.ualberta.cs.lonelytwitter.Tweet
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-11.html b/docs/index-files/index-11.html
new file mode 100644
index 0000000000..cc3af32e56
--- /dev/null
+++ b/docs/index-files/index-11.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+N-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
N
+
+NormalTweet - Class in ca.ualberta.cs.lonelytwitter
+
+NormalTweet(String) - Constructor for class ca.ualberta.cs.lonelytwitter.NormalTweet
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-12.html b/docs/index-files/index-12.html
new file mode 100644
index 0000000000..2e511aa905
--- /dev/null
+++ b/docs/index-files/index-12.html
@@ -0,0 +1,124 @@
+
+
+
+
+
+O-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
O
+
+oldTweetsList - Variable in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+onCreate(Bundle) - Method in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+Called when the activity is first created.
+
+onStart() - Method in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-13.html b/docs/index-files/index-13.html
new file mode 100644
index 0000000000..2584ec4420
--- /dev/null
+++ b/docs/index-files/index-13.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+R-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
R
+
+reverseItems() - Method in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+This method rverses the items in the tweetList and refreshes the adapter.
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-14.html b/docs/index-files/index-14.html
new file mode 100644
index 0000000000..78511e1812
--- /dev/null
+++ b/docs/index-files/index-14.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+S-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
S
+
+saveInFile() - Method in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+setDate(Date) - Method in class ca.ualberta.cs.lonelytwitter.Tweet
+
+Sets date.
+
+setMessage(String) - Method in class ca.ualberta.cs.lonelytwitter.Tweet
+
+Sets message.
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-15.html b/docs/index-files/index-15.html
new file mode 100644
index 0000000000..c204668bc5
--- /dev/null
+++ b/docs/index-files/index-15.html
@@ -0,0 +1,162 @@
+
+
+
+
+
+T-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
T
+
+testAddTweet() - Method in class ca.ualberta.cs.lonelytwitter.TweetListTest
+
+testDelete() - Method in class ca.ualberta.cs.lonelytwitter.TweetListTest
+
+testGetTweet() - Method in class ca.ualberta.cs.lonelytwitter.TweetListTest
+
+testHasTweet() - Method in class ca.ualberta.cs.lonelytwitter.TweetListTest
+
+testStart() - Method in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivityTest
+
+toString() - Method in class ca.ualberta.cs.lonelytwitter.Tweet
+
+trimExtraSpaces(String) - Method in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+Tweet - Class in ca.ualberta.cs.lonelytwitter
+
+The type Tweet.
+
+Tweet(String) - Constructor for class ca.ualberta.cs.lonelytwitter.Tweet
+
+Instantiates a new Tweet.
+
+Tweet(String, Date) - Constructor for class ca.ualberta.cs.lonelytwitter.Tweet
+
+Instantiates a new Tweet.
+
+Tweetable - Interface in ca.ualberta.cs.lonelytwitter
+
+tweetList - Variable in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+TweetList - Class in ca.ualberta.cs.lonelytwitter
+
+TweetList() - Constructor for class ca.ualberta.cs.lonelytwitter.TweetList
+
+TweetListTest - Class in ca.ualberta.cs.lonelytwitter
+
+Created by makepeac on 9/29/16.
+
+TweetListTest() - Constructor for class ca.ualberta.cs.lonelytwitter.TweetListTest
+
+tweets - Variable in class ca.ualberta.cs.lonelytwitter.TweetList
+
+TweetTooLongException - Exception in ca.ualberta.cs.lonelytwitter
+
+TweetTooLongException() - Constructor for exception ca.ualberta.cs.lonelytwitter.TweetTooLongException
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-16.html b/docs/index-files/index-16.html
new file mode 100644
index 0000000000..e97044bcd8
--- /dev/null
+++ b/docs/index-files/index-16.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+V-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T V
+
+
+
V
+
+VERSION_CODE - Static variable in class ca.ualberta.cs.lonelytwitter.BuildConfig
+
+VERSION_NAME - Static variable in class ca.ualberta.cs.lonelytwitter.BuildConfig
+
+
+
A B C D F G H I L M N O R S T V
+
+
+
+
+
+
diff --git a/docs/index-files/index-2.html b/docs/index-files/index-2.html
new file mode 100644
index 0000000000..464cae0d5b
--- /dev/null
+++ b/docs/index-files/index-2.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+B-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
B
+
+bodyText - Variable in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-3.html b/docs/index-files/index-3.html
new file mode 100644
index 0000000000..239cc133a6
--- /dev/null
+++ b/docs/index-files/index-3.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+C-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
C
+
+ca.ualberta.cs.lonelytwitter - package ca.ualberta.cs.lonelytwitter
+
+Test package documentation.
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-4.html b/docs/index-files/index-4.html
new file mode 100644
index 0000000000..a1e4704ea3
--- /dev/null
+++ b/docs/index-files/index-4.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+D-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
D
+
+date - Variable in class ca.ualberta.cs.lonelytwitter.Tweet
+
+delete(Tweet) - Method in class ca.ualberta.cs.lonelytwitter.TweetList
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-5.html b/docs/index-files/index-5.html
new file mode 100644
index 0000000000..4ae1ca8655
--- /dev/null
+++ b/docs/index-files/index-5.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+F-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
F
+
+FILENAME - Static variable in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+The file that all the tweets are saved there.
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-6.html b/docs/index-files/index-6.html
new file mode 100644
index 0000000000..77c7ec13bd
--- /dev/null
+++ b/docs/index-files/index-6.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+G-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
G
+
+getDate() - Method in class ca.ualberta.cs.lonelytwitter.Tweet
+
+getDate() - Method in interface ca.ualberta.cs.lonelytwitter.Tweetable
+
+getMessage() - Method in class ca.ualberta.cs.lonelytwitter.Tweet
+
+getMessage() - Method in interface ca.ualberta.cs.lonelytwitter.Tweetable
+
+getTweet(int) - Method in class ca.ualberta.cs.lonelytwitter.TweetList
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-7.html b/docs/index-files/index-7.html
new file mode 100644
index 0000000000..3e885ba46f
--- /dev/null
+++ b/docs/index-files/index-7.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+H-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
H
+
+hasTweet(Tweet) - Method in class ca.ualberta.cs.lonelytwitter.TweetList
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-8.html b/docs/index-files/index-8.html
new file mode 100644
index 0000000000..ef83897ec7
--- /dev/null
+++ b/docs/index-files/index-8.html
@@ -0,0 +1,128 @@
+
+
+
+
+
+I-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
I
+
+ImportantTweet - Class in ca.ualberta.cs.lonelytwitter
+
+ImportantTweet(String) - Constructor for class ca.ualberta.cs.lonelytwitter.ImportantTweet
+
+isImportant() - Method in class ca.ualberta.cs.lonelytwitter.ImportantTweet
+
+isImportant() - Method in class ca.ualberta.cs.lonelytwitter.NormalTweet
+
+isImportant() - Method in class ca.ualberta.cs.lonelytwitter.Tweet
+
+Is important boolean.
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index-files/index-9.html b/docs/index-files/index-9.html
new file mode 100644
index 0000000000..56ecd17a31
--- /dev/null
+++ b/docs/index-files/index-9.html
@@ -0,0 +1,130 @@
+
+
+
+
+
+L-Index
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+A B C D F G H I L M N O R S T
+
+
+
L
+
+loadFromFile() - Method in class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+LonelyTwitterActivity - Class in ca.ualberta.cs.lonelytwitter
+
+This class is the main view class of the project.
+
+LonelyTwitterActivity() - Constructor for class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivity
+
+LonelyTwitterActivityTest - Class in ca.ualberta.cs.lonelytwitter
+
+Created by wz on 14/09/15.
+
+LonelyTwitterActivityTest() - Constructor for class ca.ualberta.cs.lonelytwitter.LonelyTwitterActivityTest
+
+
+
A B C D F G H I L M N O R S T
+
+
+
+
+
+
diff --git a/docs/index.html b/docs/index.html
new file mode 100644
index 0000000000..b3871f741d
--- /dev/null
+++ b/docs/index.html
@@ -0,0 +1,71 @@
+
+
+
+
+
+Generated Documentation (Untitled)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+Frame Alert
+This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version .
+
+
+
diff --git a/docs/overview-tree.html b/docs/overview-tree.html
new file mode 100644
index 0000000000..dcf18c9fd3
--- /dev/null
+++ b/docs/overview-tree.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+Class Hierarchy
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
Class Hierarchy
+
+java.lang.Object
+
+Activity
+
+
+ActivityInstrumentationTestCase2
+
+
+ActivityInstrumentationTestCase2
+
+
+java.lang.Throwable (implements java.io.Serializable)
+
+java.lang.Exception
+
+
+
+
+ca.ualberta.cs.lonelytwitter.Tweet (implements ca.ualberta.cs.lonelytwitter.Tweetable )
+
+
+ca.ualberta.cs.lonelytwitter.TweetList
+
+
+
+
Interface Hierarchy
+
+
+
+
+
+
+
+
diff --git a/docs/package-list b/docs/package-list
new file mode 100644
index 0000000000..d3f926c0b1
--- /dev/null
+++ b/docs/package-list
@@ -0,0 +1 @@
+ca.ualberta.cs.lonelytwitter
diff --git a/docs/resources/background.gif b/docs/resources/background.gif
new file mode 100644
index 0000000000..f471940fde
Binary files /dev/null and b/docs/resources/background.gif differ
diff --git a/docs/resources/tab.gif b/docs/resources/tab.gif
new file mode 100644
index 0000000000..1a73a83be1
Binary files /dev/null and b/docs/resources/tab.gif differ
diff --git a/docs/resources/titlebar.gif b/docs/resources/titlebar.gif
new file mode 100644
index 0000000000..17443b3e16
Binary files /dev/null and b/docs/resources/titlebar.gif differ
diff --git a/docs/resources/titlebar_end.gif b/docs/resources/titlebar_end.gif
new file mode 100644
index 0000000000..3ad78d461b
Binary files /dev/null and b/docs/resources/titlebar_end.gif differ
diff --git a/docs/serialized-form.html b/docs/serialized-form.html
new file mode 100644
index 0000000000..dbd34cbf2c
--- /dev/null
+++ b/docs/serialized-form.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+Serialized Form
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/stylesheet.css b/docs/stylesheet.css
new file mode 100644
index 0000000000..0aeaa97fe0
--- /dev/null
+++ b/docs/stylesheet.css
@@ -0,0 +1,474 @@
+/* Javadoc style sheet */
+/*
+Overall document style
+*/
+body {
+ background-color:#ffffff;
+ color:#353833;
+ font-family:Arial, Helvetica, sans-serif;
+ font-size:76%;
+ margin:0;
+}
+a:link, a:visited {
+ text-decoration:none;
+ color:#4c6b87;
+}
+a:hover, a:focus {
+ text-decoration:none;
+ color:#bb7a2a;
+}
+a:active {
+ text-decoration:none;
+ color:#4c6b87;
+}
+a[name] {
+ color:#353833;
+}
+a[name]:hover {
+ text-decoration:none;
+ color:#353833;
+}
+pre {
+ font-size:1.3em;
+}
+h1 {
+ font-size:1.8em;
+}
+h2 {
+ font-size:1.5em;
+}
+h3 {
+ font-size:1.4em;
+}
+h4 {
+ font-size:1.3em;
+}
+h5 {
+ font-size:1.2em;
+}
+h6 {
+ font-size:1.1em;
+}
+ul {
+ list-style-type:disc;
+}
+code, tt {
+ font-size:1.2em;
+}
+dt code {
+ font-size:1.2em;
+}
+table tr td dt code {
+ font-size:1.2em;
+ vertical-align:top;
+}
+sup {
+ font-size:.6em;
+}
+/*
+Document title and Copyright styles
+*/
+.clear {
+ clear:both;
+ height:0px;
+ overflow:hidden;
+}
+.aboutLanguage {
+ float:right;
+ padding:0px 21px;
+ font-size:.8em;
+ z-index:200;
+ margin-top:-7px;
+}
+.legalCopy {
+ margin-left:.5em;
+}
+.bar a, .bar a:link, .bar a:visited, .bar a:active {
+ color:#FFFFFF;
+ text-decoration:none;
+}
+.bar a:hover, .bar a:focus {
+ color:#bb7a2a;
+}
+.tab {
+ background-color:#0066FF;
+ background-image:url(resources/titlebar.gif);
+ background-position:left top;
+ background-repeat:no-repeat;
+ color:#ffffff;
+ padding:8px;
+ width:5em;
+ font-weight:bold;
+}
+/*
+Navigation bar styles
+*/
+.bar {
+ background-image:url(resources/background.gif);
+ background-repeat:repeat-x;
+ color:#FFFFFF;
+ padding:.8em .5em .4em .8em;
+ height:auto;/*height:1.8em;*/
+ font-size:1em;
+ margin:0;
+}
+.topNav {
+ background-image:url(resources/background.gif);
+ background-repeat:repeat-x;
+ color:#FFFFFF;
+ float:left;
+ padding:0;
+ width:100%;
+ clear:right;
+ height:2.8em;
+ padding-top:10px;
+ overflow:hidden;
+}
+.bottomNav {
+ margin-top:10px;
+ background-image:url(resources/background.gif);
+ background-repeat:repeat-x;
+ color:#FFFFFF;
+ float:left;
+ padding:0;
+ width:100%;
+ clear:right;
+ height:2.8em;
+ padding-top:10px;
+ overflow:hidden;
+}
+.subNav {
+ background-color:#dee3e9;
+ border-bottom:1px solid #9eadc0;
+ float:left;
+ width:100%;
+ overflow:hidden;
+}
+.subNav div {
+ clear:left;
+ float:left;
+ padding:0 0 5px 6px;
+}
+ul.navList, ul.subNavList {
+ float:left;
+ margin:0 25px 0 0;
+ padding:0;
+}
+ul.navList li{
+ list-style:none;
+ float:left;
+ padding:3px 6px;
+}
+ul.subNavList li{
+ list-style:none;
+ float:left;
+ font-size:90%;
+}
+.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
+ color:#FFFFFF;
+ text-decoration:none;
+}
+.topNav a:hover, .bottomNav a:hover {
+ text-decoration:none;
+ color:#bb7a2a;
+}
+.navBarCell1Rev {
+ background-image:url(resources/tab.gif);
+ background-color:#a88834;
+ color:#FFFFFF;
+ margin: auto 5px;
+ border:1px solid #c9aa44;
+}
+/*
+Page header and footer styles
+*/
+.header, .footer {
+ clear:both;
+ margin:0 20px;
+ padding:5px 0 0 0;
+}
+.indexHeader {
+ margin:10px;
+ position:relative;
+}
+.indexHeader h1 {
+ font-size:1.3em;
+}
+.title {
+ color:#2c4557;
+ margin:10px 0;
+}
+.subTitle {
+ margin:5px 0 0 0;
+}
+.header ul {
+ margin:0 0 25px 0;
+ padding:0;
+}
+.footer ul {
+ margin:20px 0 5px 0;
+}
+.header ul li, .footer ul li {
+ list-style:none;
+ font-size:1.2em;
+}
+/*
+Heading styles
+*/
+div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
+ background-color:#dee3e9;
+ border-top:1px solid #9eadc0;
+ border-bottom:1px solid #9eadc0;
+ margin:0 0 6px -8px;
+ padding:2px 5px;
+}
+ul.blockList ul.blockList ul.blockList li.blockList h3 {
+ background-color:#dee3e9;
+ border-top:1px solid #9eadc0;
+ border-bottom:1px solid #9eadc0;
+ margin:0 0 6px -8px;
+ padding:2px 5px;
+}
+ul.blockList ul.blockList li.blockList h3 {
+ padding:0;
+ margin:15px 0;
+}
+ul.blockList li.blockList h2 {
+ padding:0px 0 20px 0;
+}
+/*
+Page layout container styles
+*/
+.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
+ clear:both;
+ padding:10px 20px;
+ position:relative;
+}
+.indexContainer {
+ margin:10px;
+ position:relative;
+ font-size:1.0em;
+}
+.indexContainer h2 {
+ font-size:1.1em;
+ padding:0 0 3px 0;
+}
+.indexContainer ul {
+ margin:0;
+ padding:0;
+}
+.indexContainer ul li {
+ list-style:none;
+}
+.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
+ font-size:1.1em;
+ font-weight:bold;
+ margin:10px 0 0 0;
+ color:#4E4E4E;
+}
+.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
+ margin:10px 0 10px 20px;
+}
+.serializedFormContainer dl.nameValue dt {
+ margin-left:1px;
+ font-size:1.1em;
+ display:inline;
+ font-weight:bold;
+}
+.serializedFormContainer dl.nameValue dd {
+ margin:0 0 0 1px;
+ font-size:1.1em;
+ display:inline;
+}
+/*
+List styles
+*/
+ul.horizontal li {
+ display:inline;
+ font-size:0.9em;
+}
+ul.inheritance {
+ margin:0;
+ padding:0;
+}
+ul.inheritance li {
+ display:inline;
+ list-style:none;
+}
+ul.inheritance li ul.inheritance {
+ margin-left:15px;
+ padding-left:15px;
+ padding-top:1px;
+}
+ul.blockList, ul.blockListLast {
+ margin:10px 0 10px 0;
+ padding:0;
+}
+ul.blockList li.blockList, ul.blockListLast li.blockList {
+ list-style:none;
+ margin-bottom:25px;
+}
+ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
+ padding:0px 20px 5px 10px;
+ border:1px solid #9eadc0;
+ background-color:#f9f9f9;
+}
+ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
+ padding:0 0 5px 8px;
+ background-color:#ffffff;
+ border:1px solid #9eadc0;
+ border-top:none;
+}
+ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
+ margin-left:0;
+ padding-left:0;
+ padding-bottom:15px;
+ border:none;
+ border-bottom:1px solid #9eadc0;
+}
+ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
+ list-style:none;
+ border-bottom:none;
+ padding-bottom:0;
+}
+table tr td dl, table tr td dl dt, table tr td dl dd {
+ margin-top:0;
+ margin-bottom:1px;
+}
+/*
+Table styles
+*/
+.contentContainer table, .classUseContainer table, .constantValuesContainer table {
+ border-bottom:1px solid #9eadc0;
+ width:100%;
+}
+.contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table {
+ width:100%;
+}
+.contentContainer .description table, .contentContainer .details table {
+ border-bottom:none;
+}
+.contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{
+ vertical-align:top;
+ padding-right:20px;
+}
+.contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast,
+.contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast,
+.contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne,
+.contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne {
+ padding-right:3px;
+}
+.overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption {
+ position:relative;
+ text-align:left;
+ background-repeat:no-repeat;
+ color:#FFFFFF;
+ font-weight:bold;
+ clear:none;
+ overflow:hidden;
+ padding:0px;
+ margin:0px;
+}
+caption a:link, caption a:hover, caption a:active, caption a:visited {
+ color:#FFFFFF;
+}
+.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span {
+ white-space:nowrap;
+ padding-top:8px;
+ padding-left:8px;
+ display:block;
+ float:left;
+ background-image:url(resources/titlebar.gif);
+ height:18px;
+}
+.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd {
+ width:10px;
+ background-image:url(resources/titlebar_end.gif);
+ background-repeat:no-repeat;
+ background-position:top right;
+ position:relative;
+ float:left;
+}
+ul.blockList ul.blockList li.blockList table {
+ margin:0 0 12px 0px;
+ width:100%;
+}
+.tableSubHeadingColor {
+ background-color: #EEEEFF;
+}
+.altColor {
+ background-color:#eeeeef;
+}
+.rowColor {
+ background-color:#ffffff;
+}
+.overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td {
+ text-align:left;
+ padding:3px 3px 3px 7px;
+}
+th.colFirst, th.colLast, th.colOne, .constantValuesContainer th {
+ background:#dee3e9;
+ border-top:1px solid #9eadc0;
+ border-bottom:1px solid #9eadc0;
+ text-align:left;
+ padding:3px 3px 3px 7px;
+}
+td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
+ font-weight:bold;
+}
+td.colFirst, th.colFirst {
+ border-left:1px solid #9eadc0;
+ white-space:nowrap;
+}
+td.colLast, th.colLast {
+ border-right:1px solid #9eadc0;
+}
+td.colOne, th.colOne {
+ border-right:1px solid #9eadc0;
+ border-left:1px solid #9eadc0;
+}
+table.overviewSummary {
+ padding:0px;
+ margin-left:0px;
+}
+table.overviewSummary td.colFirst, table.overviewSummary th.colFirst,
+table.overviewSummary td.colOne, table.overviewSummary th.colOne {
+ width:25%;
+ vertical-align:middle;
+}
+table.packageSummary td.colFirst, table.overviewSummary th.colFirst {
+ width:25%;
+ vertical-align:middle;
+}
+/*
+Content styles
+*/
+.description pre {
+ margin-top:0;
+}
+.deprecatedContent {
+ margin:0;
+ padding:10px 0;
+}
+.docSummary {
+ padding:0;
+}
+/*
+Formatting effect styles
+*/
+.sourceLineNo {
+ color:green;
+ padding:0 30px 0 0;
+}
+h1.hidden {
+ visibility:hidden;
+ overflow:hidden;
+ font-size:.9em;
+}
+.block {
+ display:block;
+ margin:3px 0 0 0;
+}
+.strong {
+ font-weight:bold;
+}
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000000..0d204ae16a
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Tue Oct 17 00:25:11 MDT 2017
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
diff --git a/gradlew b/gradlew
index 91a7e269e1..9d82f78915 100755
--- a/gradlew
+++ b/gradlew
@@ -42,11 +42,6 @@ case "`uname`" in
;;
esac
-# For Cygwin, ensure paths are in UNIX format before anything is touched.
-if $cygwin ; then
- [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
-fi
-
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
@@ -61,9 +56,9 @@ while [ -h "$PRG" ] ; do
fi
done
SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >&-
+cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
-cd "$SAVED" >&-
+cd "$SAVED" >/dev/null
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
@@ -114,6 +109,7 @@ fi
if $cygwin ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
diff --git a/lonelyTwitter.iml b/lonelyTwitter.iml
index 8c831df98f..c8cb2a390b 100644
--- a/lonelyTwitter.iml
+++ b/lonelyTwitter.iml
@@ -1,5 +1,5 @@
-
+