001package com.hfg.xml.msofficexml.docx.wordprocessingml; 002 003import com.hfg.xml.msofficexml.docx.Docx; 004import com.hfg.xml.msofficexml.docx.part.NumberingPart; 005 006//------------------------------------------------------------------------------ 007/** 008 Represents an Office Open XML ordered list. 009 010 @author J. Alex Taylor, hairyfatguy.com 011 */ 012//------------------------------------------------------------------------------ 013// com.hfg XML/HTML Coding Library 014// 015// This library is free software; you can redistribute it and/or 016// modify it under the terms of the GNU Lesser General Public 017// License as published by the Free Software Foundation; either 018// version 2.1 of the License, or (at your option) any later version. 019// 020// This library is distributed in the hope that it will be useful, 021// but WITHOUT ANY WARRANTY; without even the implied warranty of 022// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 023// Lesser General Public License for more details. 024// 025// You should have received a copy of the GNU Lesser General Public 026// License along with this library; if not, write to the Free Software 027// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 028// 029// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com 030// jataylor@hairyfatguy.com 031//------------------------------------------------------------------------------ 032 033public class WmlOrderedList extends WmlList 034{ 035 //########################################################################## 036 // CONSTRUCTORS 037 //########################################################################## 038 039 //--------------------------------------------------------------------------- 040 public WmlOrderedList(Docx inParentDoc) 041 { 042 super(inParentDoc); 043 } 044 045 //########################################################################## 046 // PUBLIC METHODS 047 //########################################################################## 048 049 //--------------------------------------------------------------------------- 050 @Override 051 public WmlOrderedList addItem(String inValue) 052 { 053 return (WmlOrderedList) super.addItem(inValue); 054 } 055 056 //--------------------------------------------------------------------------- 057 @Override 058 public WmlOrderedList addItem(String inValue, int inLevel) 059 { 060 return (WmlOrderedList) super.addItem(inValue, inLevel); 061 } 062 063 //--------------------------------------------------------------------------- 064 @Override 065 public WmlOrderedList addItem(WmlParagraph inValue) 066 { 067 return (WmlOrderedList) super.addItem(inValue); 068 } 069 070 //--------------------------------------------------------------------------- 071 @Override 072 public WmlOrderedList addItem(WmlParagraph inValue, int inLevel) 073 { 074 return (WmlOrderedList) super.addItem(inValue, inLevel); 075 } 076 077}