E' stato aggiunta l'implementazione dell'interfaccia "Utilizzabile" alle classi "BeniDiConsumo" "CeneInRistoranti" "Vacanze"
This commit is contained in:
@@ -6,7 +6,7 @@ package it.unisa.info13d.Articoli;
|
||||
* Date: 16/12/13
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.util.GregorianCalendar;
|
||||
* Date: 16/12/13
|
||||
* 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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.util.GregorianCalendar;
|
||||
* Date: 16/12/13
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user