Back to project page split.
The source code is released under:
MIT License
If you think the Android project split 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.devfestco.split.Models; //w w w . j a v a 2s . c o m /** * Created by PaulTR on 6/29/14. */ public class IterationListItem { protected long _duration; protected String _label; public IterationListItem( String label, long duration ) { _label = label; _duration = duration; } public long getDuration() { return _duration; } public void setDuration( long duration ) { _duration = duration; } public String getLabel() { return _label; } public void setLabel( String label ) { _label = label; } @Override public String toString() { return _label; } }