Here you can find the source of millisAsTicks(int ms)
public static long millisAsTicks(int ms)
//package com.java2s; //License from project: Open Source License public class Main { public static long millisAsTicks(int ms) { return ms / 50; }/*from w ww. j a v a 2 s. c o m*/ }