Back to project page AbstractGroupedAdapter.
The source code is released under:
Copyright (c) 2013 Aryan Ghassemi. All rights reserved. https://github.com/aryaxt/AbstractGroupedAdapter Permission is hereby granted, free of charge, to any person obtaining a copy of this software...
If you think the Android project AbstractGroupedAdapter 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.aryaxt.groupedadapter; /*w ww.ja v a 2 s . co m*/ public class Person { private String name; public Person(String name) { this.name = name; } public String getName() { return name; } public void setName(String name) { this.name = name; } }