Refactor the DLProgressEvent to Kotlin

This commit is contained in:
Bradlee Speice
2014-11-11 21:53:13 -05:00
parent b778748ee0
commit 86adeb4951
3 changed files with 19 additions and 42 deletions

View File

@ -0,0 +1,16 @@
package org.bspeice.minimalbible.activity.downloader.manager
import org.crosswire.jsword.book.Book
/**
* Created by bspeice on 11/11/14.
*/
class DLProgressEvent(val progress: Int, val b: Book) {
class object {
val PROGRESS_COMPLETE = 100
val PROGRESS_BEGINNING = 0
}
fun toCircular() = progress.toFloat() * 360 / 100
}