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


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

    double subtract(double n1, double n2);

}