-
Notifications
You must be signed in to change notification settings - Fork 0
/
Libro.java
54 lines (43 loc) · 1.03 KB
/
Libro.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* @author Daw120
*/
package com.solomongo.ejercicio2;
public class Libro {
public String ISBN;
public String titulo;
public String autor;
Libro(){}
public Libro(String ISBN, String titulo, String autor){
this.ISBN=ISBN;
this.titulo=titulo;
this.autor=autor;
}
public String getISBN(){
return ISBN;
}
public String getTitulo(){
return titulo;
}
public String getAutor(){
return autor;
}
public void setISBN(String ISBN) {
this.ISBN=ISBN;
}
public void setTitulo(String titulo) {
this.titulo=titulo;
}
public void setAutor(String autor) {
this.autor=autor;
}
public void esEspanol(){
}
public void mostrar(){
}
public static String
removeFirst(String str)
{
str = str.substring(1, str.length() );
return str;
}
}