Ok guys, i'm am in front of the problem, but i didn't understand what i have to do: someone could explain me what is answering me the exercise in the last part?
love ya all
package com.codegym.task.task14.task1410;
/*
Wine tasting
*/
public class Solution {
public static void main(String[] args) {
getDeliciousDrink().taste();
System.out.println(getWine().getCelebrationName());
System.out.println(getBubblyWine().getCelebrationName());
System.out.println(getWine().getCelebrationName());
}
public static Drink getDeliciousDrink() {
}
public static Wine getWine() {
}
public static Wine getBubblyWine() {
}
}