| example.MathService
All known Subclasses: example.MathServiceImpl,
MathService | public interface MathService (Code) | | |
Method Summary | |
public int | add(int a, int b) Adds two integers. | public int | div(int a, int b) Divide two integers. | public int | mul(int a, int b) Multiply two integers. | public int | sub(int a, int b) Subtract two integers. |
add | public int add(int a, int b)(Code) | | Adds two integers.
|
div | public int div(int a, int b)(Code) | | Divide two integers.
|
mul | public int mul(int a, int b)(Code) | | Multiply two integers.
|
sub | public int sub(int a, int b)(Code) | | Subtract two integers.
|
|
|