Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. /**
  2. * An ordered list of items.
  3. */
  4. public interface ItemList<E> {
  5.  
  6.  
  7. /**
  8. * Append an item to the end of the list
  9. *
  10. * @param item – item to be appended
  11. */
  12.  
  13. public void append(E item) {
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement