VideoMomentByTimecodeComparator.java :  » JPA » vars-redux » vars » Java Open Source

Java Open Source » JPA » vars redux 
vars redux » vars » VideoMomentByTimecodeComparator.java
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package vars;

import java.util.Comparator;

/**
 *
 * @author brian
 */
public class VideoMomentByTimecodeComparator implements Comparator<VideoMoment> {

    public int compare(VideoMoment o1, VideoMoment o2) {
        return o1.getTimecode().compareTo(o2.getTimecode());
    }

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