Tip: Click lines to highlight, hold ctrl/cmd to multi-select

http://codedumper.com/ugocu (27-Jun @ 18:15)

Syntax Highlighted Code

  1. public class Stack<E> {
  2.     private List<E> items = new ArrayList<E>();
  3.  
  4.     @notnull
  5.     public void push (E item) {
  6.         this.items.add(item);
  7.     }
  8.  
  9. }

Plain Code

public class Stack<E> {
    private List<E> items = new ArrayList<E>();

    @notnull
    public void push (E item) {
        this.items.add(item);
    }

}

Permalink: http://codedumper.com/ugocu