KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > samples > CacheTestCalculationsImpl


1 package com.tirsen.nanning.samples;
2
3 public class CacheTestCalculationsImpl implements CacheTestCalculations {
4     public double someHeavyCalculation(double input) {
5         return 42.4711 * input;
6     }
7 }
8
Popular Tags