commit inicial
This commit is contained in:
parent
8a1defd7ce
commit
b765a14d50
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21">
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
|
||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="module" value="true"/>
|
<attribute name="module" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
|
|||||||
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
/bin/
|
||||||
|
# Eclipse
|
||||||
|
.classpath
|
||||||
|
.project
|
||||||
|
.settings/
|
||||||
2
.project
2
.project
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<projectDescription>
|
<projectDescription>
|
||||||
<name>festival_cine_dta</name>
|
<name>eedd_festivalcine_ra5</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
</projects>
|
</projects>
|
||||||
|
|||||||
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.
@ -1,29 +0,0 @@
|
|||||||
package org.lapaloma.dta.festivalcine.vo;
|
|
||||||
|
|
||||||
public class Director extends Participante {
|
|
||||||
|
|
||||||
protected String formacion;
|
|
||||||
|
|
||||||
private Pelicula pelicula;
|
|
||||||
|
|
||||||
public String getFormacion() {
|
|
||||||
return formacion;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFormacion(String formacion) {
|
|
||||||
this.formacion = formacion;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Pelicula getPelicula() {
|
|
||||||
return pelicula;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPelicula(Pelicula pelicula) {
|
|
||||||
this.pelicula = pelicula;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,10 +1,9 @@
|
|||||||
package org.lapaloma.dta.festivalcine.vo;
|
package org.lapaloma.festivalcine.vo;
|
||||||
|
|
||||||
public class Actor extends Participante {
|
public class Actor extends Participante {
|
||||||
|
|
||||||
private int nivelIngles;
|
private int nivelIngles;
|
||||||
|
private Actor padrino;
|
||||||
private Actor actor;
|
|
||||||
|
|
||||||
public int getNivelIngles() {
|
public int getNivelIngles() {
|
||||||
return nivelIngles;
|
return nivelIngles;
|
||||||
@ -14,14 +13,12 @@ public class Actor extends Participante {
|
|||||||
this.nivelIngles = nivelIngles;
|
this.nivelIngles = nivelIngles;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Actor getActor() {
|
public Actor getPadrino() {
|
||||||
return actor;
|
return padrino;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setActor(Actor actor) {
|
public void setPadrino(Actor padrino) {
|
||||||
this.actor = actor;
|
this.padrino = padrino;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1,31 +1,32 @@
|
|||||||
package org.lapaloma.dta.festivalcine.vo;
|
package org.lapaloma.festivalcine.vo;
|
||||||
|
|
||||||
public class ActorPelicula {
|
public class ActorPelicula {
|
||||||
|
|
||||||
private boolean esActorPrincipal;
|
private boolean esActorPrincipal;
|
||||||
|
|
||||||
private Actor actor;
|
private Actor actor;
|
||||||
private Pelicula pelicula;
|
private Pelicula pelicula;
|
||||||
|
|
||||||
public boolean isEsActorPrincipal() {
|
public boolean isEsActorPrincipal() {
|
||||||
return esActorPrincipal;
|
return esActorPrincipal;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEsActorPrincipal(boolean esActorPrincipal) {
|
public void setEsActorPrincipal(boolean esActorPrincipal) {
|
||||||
this.esActorPrincipal = esActorPrincipal;
|
this.esActorPrincipal = esActorPrincipal;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Actor getActor() {
|
public Actor getActor() {
|
||||||
return actor;
|
return actor;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setActor(Actor actor) {
|
public void setActor(Actor actor) {
|
||||||
this.actor = actor;
|
this.actor = actor;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Pelicula getPelicula() {
|
public Pelicula getPelicula() {
|
||||||
return pelicula;
|
return pelicula;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPelicula(Pelicula pelicula) {
|
public void setPelicula(Pelicula pelicula) {
|
||||||
this.pelicula = pelicula;
|
this.pelicula = pelicula;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
26
src/org/lapaloma/festivalcine/vo/Director.java
Normal file
26
src/org/lapaloma/festivalcine/vo/Director.java
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
package org.lapaloma.festivalcine.vo;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class Director extends Participante {
|
||||||
|
|
||||||
|
protected String formacion;
|
||||||
|
private List<Pelicula> peliculas;
|
||||||
|
|
||||||
|
public String getFormacion() {
|
||||||
|
return formacion;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFormacion(String formacion) {
|
||||||
|
this.formacion = formacion;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Pelicula> getPeliculas() {
|
||||||
|
return peliculas;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPeliculas(List<Pelicula> peliculas) {
|
||||||
|
this.peliculas = peliculas;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -1,4 +1,4 @@
|
|||||||
package org.lapaloma.dta.festivalcine.vo;
|
package org.lapaloma.festivalcine.vo;
|
||||||
|
|
||||||
public class Festival {
|
public class Festival {
|
||||||
|
|
||||||
@ -9,22 +9,24 @@ public class Festival {
|
|||||||
public int getIdentificador() {
|
public int getIdentificador() {
|
||||||
return identificador;
|
return identificador;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setIdentificador(int identificador) {
|
public void setIdentificador(int identificador) {
|
||||||
this.identificador = identificador;
|
this.identificador = identificador;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getNombre() {
|
public String getNombre() {
|
||||||
return nombre;
|
return nombre;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setNombre(String nombre) {
|
public void setNombre(String nombre) {
|
||||||
this.nombre = nombre;
|
this.nombre = nombre;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCiudad() {
|
public String getCiudad() {
|
||||||
return ciudad;
|
return ciudad;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCiudad(String ciudad) {
|
public void setCiudad(String ciudad) {
|
||||||
this.ciudad = ciudad;
|
this.ciudad = ciudad;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1,4 +1,4 @@
|
|||||||
package org.lapaloma.dta.festivalcine.vo;
|
package org.lapaloma.festivalcine.vo;
|
||||||
|
|
||||||
public abstract class Participante {
|
public abstract class Participante {
|
||||||
|
|
||||||
@ -1,4 +1,4 @@
|
|||||||
package org.lapaloma.dta.festivalcine.vo;
|
package org.lapaloma.festivalcine.vo;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
@ -41,6 +41,4 @@ public class Pelicula {
|
|||||||
this.fechaEstreno = fechaEstreno;
|
this.fechaEstreno = fechaEstreno;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1,33 +1,35 @@
|
|||||||
package org.lapaloma.dta.festivalcine.vo;
|
package org.lapaloma.festivalcine.vo;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
public class PeliculaFestival {
|
public class PeliculaFestival {
|
||||||
|
|
||||||
private Date anyoParticipacion;
|
private Date anyoParticipacion;
|
||||||
|
|
||||||
private Pelicula pelicula;
|
private Pelicula pelicula;
|
||||||
private Festival festival;
|
private Festival festival;
|
||||||
|
|
||||||
public Date getAnyoPArticipacion() {
|
public Date getAnyoPArticipacion() {
|
||||||
return anyoParticipacion;
|
return anyoParticipacion;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAnyoPArticipacion(Date anyoPArticipacion) {
|
public void setAnyoPArticipacion(Date anyoPArticipacion) {
|
||||||
this.anyoParticipacion = anyoPArticipacion;
|
this.anyoParticipacion = anyoPArticipacion;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Pelicula getPelicula() {
|
public Pelicula getPelicula() {
|
||||||
return pelicula;
|
return pelicula;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPelicula(Pelicula pelicula) {
|
public void setPelicula(Pelicula pelicula) {
|
||||||
this.pelicula = pelicula;
|
this.pelicula = pelicula;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Festival getFestival() {
|
public Festival getFestival() {
|
||||||
return festival;
|
return festival;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setFestival(Festival festival) {
|
public void setFestival(Festival festival) {
|
||||||
this.festival = festival;
|
this.festival = festival;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user