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{
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -21,6 +21,12 @@ 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{
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -28,6 +28,12 @@ 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{
|
||||
|
||||
|
||||
/**
|
||||
@@ -28,6 +28,12 @@ public class Vacanze {
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean eAcquistabile() {
|
||||
// TODO Auto-generated method stub
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user