Back to project page SmartPass.
The source code is released under:
Copyright (c) 2013 Dax Earl, Aaron Golliver Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal ...
If you think the Android project SmartPass 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.example.smartpass.Classes; /*ww w . j a v a 2s . c om*/ import java.util.ArrayList; public class ExpandListGroup { private String name; private ArrayList<ExpandListChild> items; public String getName() { return name; } public void setName(String name) { this.name = name; } public ArrayList<ExpandListChild> getItems() { return items; } public void setItems(ArrayList<ExpandListChild> items) { this.items = items; } }