hudson.util
Class TagCloud<T>

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<TagCloud.Entry>
          extended by hudson.util.TagCloud<T>
All Implemented Interfaces:
Iterable<TagCloud.Entry>, Collection<TagCloud.Entry>, List<TagCloud.Entry>

public class TagCloud<T>
extends AbstractList<TagCloud.Entry>

Represents an order-preserving tag cloud (http://en.wikipedia.org/wiki/Tag_cloud) where each keyword gets a weight and displayed according to their weight. TODO: define a view on its own.

Since:
1.322

Nested Class Summary
 class TagCloud.Entry
           
static interface TagCloud.WeightFunction<T>
           
 
Field Summary
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
TagCloud(Iterable<? extends T> inputs, TagCloud.WeightFunction<T> f)
          Creates a tag cloud.
 
Method Summary
 TagCloud.Entry get(int index)
           
 int size()
           
 
Methods inherited from class java.util.AbstractList
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
 
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray
 

Constructor Detail

TagCloud

public TagCloud(Iterable<? extends T> inputs,
                TagCloud.WeightFunction<T> f)
Creates a tag cloud.

Parameters:
f - Assigns weight to each item.
Method Detail

get

public TagCloud.Entry get(int index)
Specified by:
get in interface List<TagCloud.Entry>
Specified by:
get in class AbstractList<TagCloud.Entry>

size

public int size()
Specified by:
size in interface Collection<TagCloud.Entry>
Specified by:
size in interface List<TagCloud.Entry>
Specified by:
size in class AbstractCollection<TagCloud.Entry>


Copyright © 2004-2013. All Rights Reserved.