Advertisement
Guest User

list

a guest
Oct 13th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package ossm.manicom.sadie.arraysandlists;
  2.  
  3. public interface customList
  4. {
  5. int Size();
  6.  
  7. void Add(Object obj);
  8.  
  9. Object Delete(int index);
  10.  
  11. void IncreaseListSize();
  12.  
  13. Object Get(int index);
  14.  
  15. void prepend(Object obj);
  16.  
  17. void incrementCounter();
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement