-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cadastro de Anúncio: imóveis, móveis, material e upload de imagens.
- Loading branch information
Showing
32 changed files
with
761 additions
and
84 deletions.
There are no files selected for viewing
Binary file modified
BIN
+28 Bytes
(100%)
build/web/WEB-INF/classes/br/com/tads/tccpool/beans/Anuncio.class
Binary file not shown.
Binary file modified
BIN
+28 Bytes
(100%)
build/web/WEB-INF/classes/br/com/tads/tccpool/beans/Categoria.class
Binary file not shown.
Binary file modified
BIN
+28 Bytes
(100%)
build/web/WEB-INF/classes/br/com/tads/tccpool/beans/Imovel.class
Binary file not shown.
Binary file modified
BIN
+28 Bytes
(100%)
build/web/WEB-INF/classes/br/com/tads/tccpool/beans/Instituicao.class
Binary file not shown.
Binary file modified
BIN
+28 Bytes
(100%)
build/web/WEB-INF/classes/br/com/tads/tccpool/beans/User.class
Binary file not shown.
Binary file modified
BIN
+3.96 KB
(250%)
build/web/WEB-INF/classes/br/com/tads/tccpool/dao/AnuncioDAO.class
Binary file not shown.
Binary file modified
BIN
+1.34 KB
(260%)
build/web/WEB-INF/classes/br/com/tads/tccpool/facade/AnuncioFacade.class
Binary file not shown.
Binary file modified
BIN
+5.21 KB
(230%)
build/web/WEB-INF/classes/br/com/tads/tccpool/servlets/AnuncioServlet.class
Binary file not shown.
Binary file modified
BIN
+323 Bytes
(110%)
build/web/WEB-INF/classes/br/com/tads/tccpool/servlets/MainPageServlet.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
build.xml.data.CRC32=0067c6d5 | ||
build.xml.data.CRC32=ac8f0148 | ||
build.xml.script.CRC32=0e979702 | ||
build.xml.stylesheet.CRC32=[email protected] | ||
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. | ||
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. | ||
nbproject/build-impl.xml.data.CRC32=0067c6d5 | ||
nbproject/build-impl.xml.script.CRC32=7b4d9328 | ||
nbproject/build-impl.xml.data.CRC32=ac8f0148 | ||
nbproject/build-impl.xml.script.CRC32=0456f2db | ||
nbproject/build-impl.xml.stylesheet.CRC32=[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
package br.com.tads.tccpool.beans; | ||
|
||
import br.com.tads.tccpool.interfaces.Anunciavel; | ||
import java.io.Serializable; | ||
|
||
/** | ||
* | ||
* @author Diego | ||
*/ | ||
public class Material implements Anunciavel, Serializable { | ||
private String titulo; | ||
private String descricao; | ||
private float preco; | ||
private int tipo; | ||
|
||
public String getTitulo() { | ||
return titulo; | ||
} | ||
|
||
public void setTitulo(String titulo) { | ||
this.titulo = titulo; | ||
} | ||
|
||
public String getDescricao() { | ||
return descricao; | ||
} | ||
|
||
public void setDescricao(String descricao) { | ||
this.descricao = descricao; | ||
} | ||
|
||
public float getPreco() { | ||
return preco; | ||
} | ||
|
||
public void setPreco(float preco) { | ||
this.preco = preco; | ||
} | ||
|
||
public int getTipo() { | ||
return tipo; | ||
} | ||
|
||
public void setTipo(int tipo) { | ||
this.tipo = tipo; | ||
} | ||
|
||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
package br.com.tads.tccpool.beans; | ||
|
||
import br.com.tads.tccpool.interfaces.Anunciavel; | ||
import java.io.Serializable; | ||
|
||
/** | ||
* | ||
* @author Diego | ||
*/ | ||
public class Movel implements Anunciavel, Serializable { | ||
private String titulo; | ||
private String descricao; | ||
private Float preco; | ||
private int tipo; | ||
|
||
@Override | ||
public void setDescricao(String s) { | ||
this.descricao = s; | ||
} | ||
|
||
@Override | ||
public String getDescricao() { | ||
return descricao; | ||
} | ||
|
||
@Override | ||
public void setPreco(float preco) { | ||
this.preco = preco; | ||
} | ||
|
||
@Override | ||
public float getPreco() { | ||
return preco; | ||
} | ||
|
||
@Override | ||
public String getTitulo() { | ||
return titulo; | ||
} | ||
|
||
@Override | ||
public void setTitulo(String titulo) { | ||
this.titulo = titulo; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.