Showing posts with label javadoc. Show all posts
Showing posts with label javadoc. Show all posts

16 October 2010

Java 6.0 New Collection APIs an Overview

Java 6.0 New Collection APIs an Overview
The following are the new collection APIs introduced in Java 6.0. I listes them as Interfaces and classes.

  • New Interfaces
  1. Deque
  2. BlockingDeque
  3. NavigableSet
  4. NavigableMap


  • New Classes
  1. ArrayDeque
  2. LinkedBlockingDeque
  3. ConcurrentSkipListSet
  4. ConcurrentSkipListMap
  5. AbstractMap.SimpleEntry
  6. AbstractMap.SimpleImmutableEntry

  • Updated Classes in Java 6.0
  1. LinkedList
  2. TreeSet
  3. TreeMap
  4. Collections

01 October 2010

Generating a javadoc into a target folder

For the whole set of java libraries, into folder 'api':
$ mkdir src
$ mv src.zip src/
$ cd src/
$ unzip src.zip
$ mkdir api
$ javadoc -J-Xmx1000m -d api -subpackages com:java:javax:org:sunw