This class is used to create a list in a Word document. It is used in conjunction with {@link org.apache.poi.hwpf.HWPFDocument#registerList(HWPFList) registerList} in{@link org.apache.poi.hwpf.HWPFDocument HWPFDocument}. In Word, lists are not ranged entities, meaning you can't actually add one to the document. Lists only act as properties for list entries. Once you register a list, you can add list entries to a document that are a part of the list. The only benefit of this that I see, is that you can add a list entry anywhere in the document and continue numbering from the previous list.
@author Ryan Ackley
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.