-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUML
24 lines (24 loc) · 1.95 KB
/
UML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|----------------------------------------------------------------------------------|
| |
| LinearEquation |
| |
|----------------------------------------------------------------------------------|
| - a : int |
| - b : int |
| - c : int |
| - d : int |
| - e : int |
| - f : int |
|----------------------------------------------------------------------------------|
| + LinearEquation (newa : int ,newb : int,newc : int ,newd : int ,newe : int, |
| newf : int) |
| + geta() : int |
| + getb() : int |
| + getc() : int |
| + getd() : int |
| + gete() : int |
| + getf() : int |
| + isSolvable() : boolean |
| + getX() : int |
| + getY() : int |
|----------------------------------------------------------------------------------|