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


/**
 * The divide service interface
 */
public interface DivideService {

    double divide(double n1, double n2);

}