You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
365 B
20 lines
365 B
package patronFlyWeight;
|
|
|
|
public abstract class OrdenadorFWAsusScorpion15 {
|
|
private static final String marca = "Asus";
|
|
private static final String modelo = "Scorpion";
|
|
private static final int tamanio = 15;
|
|
|
|
|
|
public String getMarca() {
|
|
return marca;
|
|
}
|
|
|
|
public String getModelo() {
|
|
return modelo;
|
|
}
|
|
|
|
public int getTamanio() {
|
|
return tamanio;
|
|
}
|
|
}
|
|
|