summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.5/samples/calculator-android/src/calculator/MultiplyService.java
blob: f7f4ee77b592396c7b6c36a25a6968fca9a778bf (plain)
1
2
3
4
5
6
7
8
9
10
11
package calculator;


/**
 * The interface for the multiply service
 */
public interface MultiplyService {

    double multiply(double n1, double n2);

}