Advertisement
hendroprwk08

Untitled

Sep 20th, 2020
972
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. public class Dessert {
  2.     String strMeal, strMealThumb, idMeal;
  3.  
  4.     public Dessert(String idMeal, String strMeal, String strMealThumb) {
  5.         this.strMeal = strMeal;
  6.         this.strMealThumb = strMealThumb;
  7.         this.idMeal = idMeal;
  8.     }
  9.  
  10.     public String getStrMeal() {
  11.         return strMeal;
  12.     }
  13.  
  14.     public String getStrMealThumb() {
  15.         return strMealThumb;
  16.     }
  17.  
  18.     public String getIdMeal() {
  19.         return idMeal;
  20.     }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement