Create Order enumerator and a NoteBook class for package noteBook
This commit is contained in:
parent
68604e2e97
commit
d40eea9e73
2 changed files with 14 additions and 0 deletions
8
src/noteBook/NoteBook.java
Normal file
8
src/noteBook/NoteBook.java
Normal file
|
@ -0,0 +1,8 @@
|
|||
package noteBook;
|
||||
|
||||
import input.Input;
|
||||
|
||||
public class NoteBook {
|
||||
Input inputs[];
|
||||
Input selected[];
|
||||
}
|
6
src/noteBook/Order.java
Normal file
6
src/noteBook/Order.java
Normal file
|
@ -0,0 +1,6 @@
|
|||
package noteBook;
|
||||
|
||||
public enum Order {
|
||||
CROISSANT,
|
||||
DECREASING;
|
||||
}
|
Reference in a new issue