Skip to content

Commit 8cfaaab

Browse files
committed
Modificações finais livro
1 parent 4227d80 commit 8cfaaab

File tree

297 files changed

+593
-1265
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+593
-1265
lines changed

AUTHORS

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
AUTHORS
2+
-------
3+
4+
Jesimar da Silva Arantes
5+
Autor do Livro.
6+
jesimar.arantes@gmail.com

ERRATA.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Sat, 15 Aug 2020 17:02:43 -0300
1+
#Mon, 21 Sep 2020 12:53:41 -0300
22

33

44
/media/jesimar/Workspace/Work2/Java/Livro-POO-Java/Livro-POO-Java-Netbeans=
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
-- Código 4.9
2+
CREATE DATABASE `bd_empresa`;
3+
4+
-- Código 4.10
5+
CREATE TABLE `bd_empresa`.`clientes`(
6+
`nome` VARCHAR(100) DEFAULT NULL,
7+
`idade` INT(4) DEFAULT NULL,
8+
`profissao` VARCHAR(100) DEFAULT NULL,
9+
`cidade` VARCHAR(100) DEFAULT NULL,
10+
`estado` VARCHAR(100) DEFAULT NULL,
11+
`codigo` INT(10) NOT NULL AUTO_INCREMENT,
12+
PRIMARY KEY(`codigo`)
13+
) ENGINE = INNODB AUTO_INCREMENT = 28 DEFAULT CHARSET = latin1;
14+
15+
-- Código 4.11
16+
INSERT INTO `bd_empresa`.`clientes`(
17+
`nome`, `idade`, `profissao`, `cidade`, `estado`
18+
)
19+
VALUES(
20+
'Adriano', 56, 'Escritor', 'Rio de Janeiro', 'Rio de Janeiro'
21+
),(
22+
'Barbara', 34, 'Médica', 'Belo Horizonte', 'Minas Gerais'
23+
),(
24+
'João', 18, 'Estudante', 'São Paulo', 'São Paulo'
25+
),(
26+
'Márcio', 22, 'Jornalista', 'São Carlos', 'São Paulo'
27+
),(
28+
'Renata', 37, 'Professora', 'Florianópolis', 'Santa Catarina'
29+
);
30+
31+
-- Código 4.13
32+
CREATE DATABASE `bd_simulador_robo`;
33+
34+
CREATE TABLE `bd_simulador_robo`.`rota`(
35+
`posx` DECIMAL(10) DEFAULT NULL,
36+
`posy` DECIMAL(10) DEFAULT NULL,
37+
`codigo` INT(10) NOT NULL AUTO_INCREMENT,
38+
PRIMARY KEY(`codigo`)
39+
) ENGINE = INNODB AUTO_INCREMENT = 1 DEFAULT CHARSET = latin1;
Binary file not shown.
Binary file not shown.

Livro-POO-Java-Netbeans/nbproject/private/private.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
44
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
55
<group>
6-
<file>file:/media/jesimar/Workspace/Work2/Java/Livro-POO-Java/Livro-POO-Java-Netbeans/src/code/unidade4/secao3/sp/simulator/main/AppGUI.java</file>
6+
<file>file:/media/jesimar/Workspace/Work2/Java/Livro-POO-Java/Livro-POO-Java-Netbeans/src/code/unidade3/secao1/ex2/ExemploExcecao2.java</file>
7+
<file>file:/media/jesimar/Workspace/Work2/Java/Livro-POO-Java/Livro-POO-Java-Netbeans/src/code/unidade3/secao1/ex2/ExemploExcecao.java</file>
8+
<file>file:/media/jesimar/Workspace/Work2/Java/Livro-POO-Java/Livro-POO-Java-Netbeans/src/code/unidade3/secao1/ex2/Matematica.java</file>
79
</group>
810
</open-files>
911
</project-private>

Livro-POO-Java-Netbeans/src/code/outros/Forma.java

-9
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Forma2D.java

-13
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Forma3D.java

-13
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Geom2D.java

-16
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Main.java

-16
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Quadrado.java

-35
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Quadrado1.java

-36
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Regular2D.java

-27
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Robo.java

-43
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Robo4.java

-39
This file was deleted.

Livro-POO-Java-Netbeans/src/code/outros/Triangulo.java

-53
This file was deleted.

Livro-POO-Java-Netbeans/src/code/unidade1/secao1/ex1/MinhaPrimeiraClasse.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package code.unidade1.secao1.ex1;
22

33
/**
4-
*
54
* @author Jesimar da Silva Arantes
5+
* Código 1.1
66
*/
77
public class MinhaPrimeiraClasse {
88
public static void main(String[] args) {

Livro-POO-Java-Netbeans/src/code/unidade1/secao1/ex2/Robo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package code.unidade1.secao1.ex2;
22

33
/**
4-
*
54
* @author Jesimar da Silva Arantes
5+
* Código 1.2
66
*/
77
public class Robo {
88
String nome;

0 commit comments

Comments
 (0)