Skip to content

Commit fa09a27

Browse files
authored
Add files via upload
1 parent cbf9d85 commit fa09a27

File tree

14 files changed

+442
-292
lines changed

14 files changed

+442
-292
lines changed

Arquivos/Categorias.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Filmes
2+
Animes
3+
Despesas
249 Bytes
Binary file not shown.
354 Bytes
Binary file not shown.
1.16 KB
Binary file not shown.
249 Bytes
Binary file not shown.
258 Bytes
Binary file not shown.

src/Integrantes.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
public class Integrantes extends Options{
2+
}

src/Itens.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import java.util.ArrayList;
22

3-
public class Itens {
3+
public class Itens extends Conteudo{
44
private ArrayList<String> conteudo = new ArrayList<>();
55
private ArrayList<Double> nota = new ArrayList<>();
66
private ArrayList<Boolean> completo = new ArrayList<>();
@@ -21,6 +21,7 @@ public boolean getCompleto(int i) {
2121
}
2222

2323
public void setConteudo(String conteudo, double nota, boolean completo, int titulo) {
24+
2425
this.conteudo.add(conteudo);
2526
this.nota.add(nota);
2627
this.completo.add(completo);

src/Main.java

Lines changed: 370 additions & 284 deletions
Large diffs are not rendered by default.

src/MenuOptions.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
public class MenuOptions extends Options{
2+
3+
4+
5+
}

0 commit comments

Comments
 (0)