Back to project page openaccessbutton.
The source code is released under:
MIT License
If you think the Android project openaccessbutton 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 org.openaccessbutton.openaccessbutton; /* w ww .j a v a 2 s .c om*/ /** * A module in the navigation list (e.g., blog) */ public class NavigationItem { public final String title; public final String className; public final String menu; public final String filename; public NavigationItem(String title, String className, String menu, String filename) { this.title = title; this.className = className; this.menu = menu; this.filename = filename; } }