Advertisement
FacuValverdi

EdD-TP04-PTO6- Clase VIDEOS

Oct 26th, 2022
1,061
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.62 KB | None | 0 0
  1. package eje6;
  2.  
  3. public class video {
  4.     public int id=0;
  5.     public String tituloVideo;
  6.     public String creadorContenido;
  7.     public int duracion;
  8.    
  9.     public video() {
  10.         // TODO Auto-generated constructor stub
  11.     }
  12.    
  13.     public video(String tituloVideo, String creadorContenido, int duracion) {
  14.         super();
  15.         this.id = id+1;
  16.         this.tituloVideo = tituloVideo;
  17.         this.creadorContenido = creadorContenido;
  18.         this.duracion = duracion;
  19.     }
  20.    
  21.       public static boolean verificarCreador(String cadena) {
  22.             for (int i = 0; i < cadena.length(); i++) {
  23.                 char c = cadena.charAt(i);
  24.                 if (!((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == ' ')) {
  25.                     System.out.println("El nombre del creador de contenido debe contener solamente letras y espacios en blanco.");
  26.                     return false;
  27.                 }
  28.             }
  29.             return true;
  30.       }
  31.     @Override
  32.     public String toString() {
  33.         return "Videos [id=" + id + ", tituloVideo=" + tituloVideo + ", creadorContenido=" + creadorContenido
  34.                 + ", duracion=" + duracion + "]";
  35.     }
  36.  
  37.     public int getId() {
  38.         return id;
  39.     }
  40.  
  41.     public void setId(int id) {
  42.         this.id = id;
  43.     }
  44.  
  45.     public String getTituloVideo() {
  46.         return tituloVideo;
  47.     }
  48.  
  49.     public void setTituloVideo(String tituloVideo) {
  50.         this.tituloVideo = tituloVideo;
  51.     }
  52.  
  53.     public String getCreadorContenido() {
  54.         return creadorContenido;
  55.     }
  56.  
  57.     public void setCreadorContenido(String creadorContenido) {
  58.         this.creadorContenido = creadorContenido;
  59.     }
  60.  
  61.     public int getDuracion() {
  62.         return duracion;
  63.     }
  64.  
  65.     public void setDuracion(int duracion) {
  66.         this.duracion = duracion;
  67.     }
  68.  
  69.    
  70.    
  71. }
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement