Android Open Source - ExpandableListDemoApp Sub Category






From Project

Back to project page ExpandableListDemoApp.

License

The source code is released under:

MIT License

If you think the Android project ExpandableListDemoApp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package de.frost.david.android.model;
//ww  w  .  ja v a 2 s.com
/**
 * ExpandableListDemoApp
 * <p/>
 * Created by david on 18.11.14.
 */
public class SubCategory {
    String name;
    String[] products;

    public SubCategory(String name) {
        this.name = name;
    }

    public SubCategory(String name, String[] products) {
        this(name);
        this.products = products;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String[] getProducts() {
        return products;
    }
}




Java Source Code List

de.frost.david.android.ApplicationTest.java
de.frost.david.android.MyActivity.java
de.frost.david.android.adapters.DrawerExpandableAdapter.java
de.frost.david.android.fragments.ItemListFragmentFragment.java
de.frost.david.android.fragments.NavigationDrawerFragment.java
de.frost.david.android.model.Category.java
de.frost.david.android.model.SubCategory.java