Android Open Source - split Iteration List Item






From Project

Back to project page split.

License

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.

Java Source Code

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;
    }
}




Java Source Code List

com.devfestco.split.IterationActivity.java
com.devfestco.split.Models.IterationListItem.java
com.devfestco.split.Services.TimerService.java
com.devfestco.split.Utils.TimeUtil.java