Back to project page 101AndroidApps.
The source code is released under:
Licenced under the Creative Commons Attribution 4.0 licence. For full text see http://creativecommons.org/licenses/by/4.0/
If you think the Android project 101AndroidApps listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hulzenga.ioi.android.app_008; /* w ww . ja va 2 s . c om*/ public enum OverheidFeed { NIEUWSBERICHTEN ("Nieuwsberichten", "http://feeds.rijksoverheid.nl/nieuws.rss"), DOCUMENTEN("Documenten en publicaties", "http://feeds.rijksoverheid.nl/regering/documenten-en-publicaties.rss"), BESLUIITEN("Besluiten", "http://feeds.rijksoverheid.nl/documenten-en-publicaties/besluiten.rss"), KAMERSTUKKEN("Kamerstukken", "http://feeds.rijksoverheid.nl/kamerstukken.rss"), TOESPRAKEN("Toespraken", "http://feeds.rijksoverheid.nl/toespraken.rss"), REISADVIEZEN("Reisadviezen", "http://feeds.rijksoverheid.nl/onderwerpen/reisadviezen.rss"); private String feedName; private String feedAddress; OverheidFeed(String feedName, String feedAddress) { this.feedName = feedName; this.feedAddress = feedAddress; } public String getName() { return feedName; } public String getAddress() { return feedAddress; } }