E' stato aggiunta l'implementazione dell'interfaccia "Utilizzabile" alle classi "BeniDiConsumo" "CeneInRistoranti" "Vacanze"

This commit is contained in:
Simone Argenziano
2013-12-16 19:26:57 +01:00
parent efaf12c133
commit 55a38c675f
3 changed files with 21 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ package it.unisa.info13d.Articoli;
* Date: 16/12/13 * Date: 16/12/13
* Time: 18.46 * Time: 18.46
*/ */
public class BeniDiConsumo { public class BeniDiConsumo implements Utilizzabile{
/** /**
* *
@@ -23,4 +23,10 @@ public class BeniDiConsumo {
} }
@Override
public boolean eAcquistabile() {
// TODO Auto-generated method stub
return false;
}
} }

View File

@@ -8,7 +8,7 @@ import java.util.GregorianCalendar;
* Date: 16/12/13 * Date: 16/12/13
* Time: 18.47 * Time: 18.47
*/ */
public class CeneInRistoranti { public class CeneInRistoranti implements Utilizzabile{
/** /**
* *
@@ -30,5 +30,11 @@ public class CeneInRistoranti {
} }
@Override
public boolean eAcquistabile() {
// TODO Auto-generated method stub
return false;
}
} }

View File

@@ -8,7 +8,7 @@ import java.util.GregorianCalendar;
* Date: 16/12/13 * Date: 16/12/13
* Time: 18.45 * Time: 18.45
*/ */
public class Vacanze { public class Vacanze implements Utilizzabile{
/** /**
@@ -30,4 +30,10 @@ public class Vacanze {
} }
@Override
public boolean eAcquistabile() {
// TODO Auto-generated method stub
return false;
}
} }