Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. package FCITbaqalah;
  2.  
  3.  
  4. public class FCITbaqalahSales {
  5.  
  6. private String FirstName ;
  7. private String LastName ;
  8. private int NumItemsOnList ;
  9. private int ItemsPurchased[] ;
  10. private static int NumSales ;
  11.  
  12. public String getFirstName( ) {
  13.  
  14. return FirstName ;
  15. }
  16.  
  17. public String getLastName( ){
  18.  
  19. return LastName ;
  20. }
  21.  
  22. public int getNumItemsOnList( ){
  23.  
  24. return NumItemsOnList ;
  25. }
  26.  
  27. public int[] getItemsPurchased( ){
  28.  
  29. return ItemsPurchased ;
  30. }
  31.  
  32. public static int getNumSales( ) {
  33.  
  34. return NumSales ;
  35. }
  36.  
  37. public void setFirstName( String firstName ){
  38.  
  39.  
  40. }
  41.  
  42. public void setLastName( String lastName ){
  43.  
  44.  
  45. }
  46.  
  47. public void setNumItemsOnList( int numItemsOnList ){
  48.  
  49.  
  50. }
  51.  
  52. public void setItemsPurchased( int[] itemsPurchased ){
  53.  
  54.  
  55. }
  56.  
  57. public static void setNumSales ( int numSales ) {
  58.  
  59.  
  60. }
  61.  
  62.  
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement