[tuxdroid-svn] r4664 - software_suite_v2/software/gadgets/tuxdroid-gadget-facebook/trunk/tuxdroid-g
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-05-25 12:57:08
|
Author: jerome
Date: 2009-05-25 14:56:57 +0200 (Mon, 25 May 2009)
New Revision: 4664
Modified:
software_suite_v2/software/gadgets/tuxdroid-gadget-facebook/trunk/tuxdroid-gadget-facebook/src/FacebookGadget.java
Log:
* Added some parameters.
Modified: software_suite_v2/software/gadgets/tuxdroid-gadget-facebook/trunk/tuxdroid-gadget-facebook/src/FacebookGadget.java
===================================================================
--- software_suite_v2/software/gadgets/tuxdroid-gadget-facebook/trunk/tuxdroid-gadget-facebook/src/FacebookGadget.java 2009-05-25 12:45:53 UTC (rev 4663)
+++ software_suite_v2/software/gadgets/tuxdroid-gadget-facebook/trunk/tuxdroid-gadget-facebook/src/FacebookGadget.java 2009-05-25 12:56:57 UTC (rev 4664)
@@ -46,6 +46,101 @@
private boolean showEventsInvites = true;
private boolean showPokes = true;
private boolean notifyEmail = true;
+
+
+ /**
+ * Return true if user want to hear his email notifications.
+ * @return
+ */
+ public boolean getNotifyEmail()
+ {
+ return this.notifyEmail;
+ }
+
+
+ /**
+ * Set the notify email parameter value.
+ * @param aNotifyEmail
+ */
+ public void setNotifyEmail(boolean aNotifyEmail)
+ {
+ this.notifyEmail = aNotifyEmail;
+ }
+
+ /**
+ * Return true if user want to hear his pokes notifications.
+ * @return
+ */
+ public boolean getShowPokes()
+ {
+ return this.showPokes;
+ }
+
+
+ /**
+ * Set the show pokes parameter value.
+ * @param aShowPokes
+ */
+ public void setShowPokes(boolean aShowPokes)
+ {
+ this.showPokes = aShowPokes;
+ }
+
+ /**
+ * Return true if user want to hear his events invites.
+ * @return
+ */
+ public boolean getShowEventsInvites()
+ {
+ return this.showEventsInvites;
+ }
+
+
+ /**
+ * Set the show events invites parameter value.
+ * @param aEventsInvites
+ */
+ public void setShowEventsInvites(boolean aEventsInvites)
+ {
+ this.showEventsInvites = aEventsInvites;
+ }
+
+ /**
+ * Return true if user want to hear his group invites.
+ * @return
+ */
+ public boolean getShowGroupsInvites()
+ {
+ return this.showGroupsInvites;
+ }
+
+
+ /**
+ * Sets the show group invites parameter value.
+ * @param aShowGroupsInvites
+ */
+ public void setShowGroupsInvites(boolean aShowGroupsInvites)
+ {
+ this.showGroupsInvites = aShowGroupsInvites;
+ }
+
+ /**
+ * Return true if user want to hear his friend requests.
+ * @return
+ */
+ public boolean getShowFriendRequests()
+ {
+ return this.showFriendRequests;
+ }
+
+ /**
+ * Set the friend request value.
+ * @param aShowFriendRequests
+ */
+ public void setShowFriendRequests(boolean aShowFriendRequests)
+ {
+ this.showFriendRequests = aShowFriendRequests;
+ }
}
/**
|