Period.java :  » UnTagged » smartringtone » com » leorz » smartringtone » policy » Android Open Source

Android Open Source » UnTagged » smartringtone 
smartringtone » com » leorz » smartringtone » policy » Period.java
package com.leorz.smartringtone.policy;

/**
 * 11 2302.5 3403.66 4454.75
 * */
public class Period {
  private float start;
  private float end;

  public Period(float start, float end) {
    this.start = start;
    this.end = end;
  }

  public boolean between(float timestap) {
    return timestap >= start && timestap <= end;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.