-
Notifications
You must be signed in to change notification settings - Fork 5
Simple feed aggregater for Android - https://play.google.com/store/apps/details?id=free.yhc.feeder
License
yhcting/feedhive
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Naming Convention
-----------------
Follows Java naming convention by default.
Only constant number and 'static final' variables whose type can be used as
'switch' Statements, are represented as captialized name - naming convention
for constant value(ex. HASH_NUM).
* Number type
float, double, byte, char, short, int, long
* Others
String(Java 7 or later), Enum.
Terms and concepts
------------------
* Listener / Observer
Callback owner doesn't affected by callback's internal behavior.
And usually, callback owner manages callbacks as list and callback all
registered object's callback one by one.
In genenral, event is just passed to it's callbacks and caller don't care about
it.
Usually, return type of callback is 'Void' because caller doens't care about
callback's internal operation.
* Receiver
Similar with Listener but callback's behavior affects to caller.
So, usually, it's return type is 'boolean'.
In genenral, event may be consumed by one of callback.
For example, 'true' means "Do not pass event to other callbacks behind" and
'false' means "event is not consumed. Keep passing event others behind".
About
Simple feed aggregater for Android - https://play.google.com/store/apps/details?id=free.yhc.feeder
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published