Back to project page palhike.
The source code is released under:
GNU General Public License
If you think the Android project palhike 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.palhike.android; //from w ww . j a v a 2s. co m import java.util.Locale; public class FragmentInfo { private int _position; public int get_sectionNumber() { return _position + 1; } public String get_title() { return _title.toUpperCase(Locale.getDefault()); } public int get_childViewLayout() { return _childViewLayout; } public void set_position(int _position) { this._position = _position; } private String _title; private int _childViewLayout; public FragmentInfo(int position, String title, int childViewLayout) { _position = position; _title = title; _childViewLayout = childViewLayout; } }