/*
* Copyright (c) 2012, Fromentin Xavier, Schnell Michaël, Dervin Cyrielle, Brabant Quentin
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * The names of its contributors may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL Fromentin Xavier, Schnell Michaël, Dervin Cyrielle OR Brabant Quentin
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package kameleon.document;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import kameleon.exception.InvalidIndexException;
/**
* Manages a collection of {@code Paragraph} instances.
*
* @author Fromentin Xavier, Schnell Michaël, Dervin Cyrielle, Brabant Quentin
* @version 1.0
*/
public class Paragraphs implements Iterable<Paragraph>, Serializable {
/**
* Needed to serialize this class.
*
* @see java.io.Serializable
*/
private static final long serialVersionUID = -573701668665449314L ;
/**
* List of the instances of {@code Paragraph}.
*/
protected List<Paragraph> paragraphs ;
/**
* Builds an empty instance of {@code Paragraph}.
*/
public Paragraphs() {
super() ;
this.paragraphs = new ArrayList<Paragraph>() ;
}// Paragraphs()
/**
* Add an instance of {@code Paragraph} at the specified index.
*
* @param p
* instance of {@code Paragraph} added
*
* @param index
* insert position
*
* @throws InvalidIndexException
* if the given index is out of range
* {@code index < 0 || index > getCount()}
*/
public void add(Paragraph p, int index) throws InvalidIndexException {
this.checkIndex(index) ;
this.paragraphs.add(index, p) ;
}// add(Paragraph, int)
/**
* Prepends an instance of {@code Paragraph}.
*
* @param p
* instance of {@code Paragraph} prepended
*/
public void push(Paragraph p) {
if (this.getCount() == 0) {
this.paragraphs.add(p) ;
} else {
this.paragraphs.add(0, p) ;
}// if
}// push(Paragraph)
/**
* Appends an instance of {@code Paragraph}.
*
* @param p
* instance of {@code Paragraph} appended
*/
public void append(Paragraph p) {
this.paragraphs.add(p) ;
}// append(Paragraph)
/**
* Removes the instance of {@code Paragraph} found at the given index.
*
* @param index
* index of the removed {@code Paragraph}
*
* @throws InvalidIndexException
* if the given index is out of range
* {@code index < 0 || index >= getCount()}
*/
public void remove(int index) throws InvalidIndexException {
this.checkIndex(index) ;
this.paragraphs.remove(index) ;
}// remove(int)
/**
* Removes all the instances matching the given {@code Paragraph}.
*
* @param p
* removed {@code Paragraph}
*/
public void remove(Paragraph p) {
boolean stillPresent = this.paragraphs.remove(p) ;
while (stillPresent) {
stillPresent = this.paragraphs.remove(p) ;
}// while
}// remove(Paragraph)
/**
* Returns the number of instance of {@code Paragraph} contained in this instance.
*
* @return Number of instance of {@code Paragraph} contained in this instance
*/
public int getCount() {
return this.paragraphs.size() ;
}// getCount()
/**
* Returns an iterator for this instance.
*
* <p>The iterator iterates over the paragraphs sequentially.
*
* @return an instance of {@code Iterator<Paragraph>} for this instance
*/
@Override
public Iterator<Paragraph> iterator() {
return this.paragraphs.iterator() ;
}// iterator()
/**
* Checks if the given index is a valid index for this instance.
*
* <p>If the index is valid, no exception is thrown.
*
* @param index
* checked index
*
* @throws InvalidIndexException
* if the given index is out of range
* {@code index < 0 || index > getCount()}
*/
protected void checkIndex(int index) throws InvalidIndexException {
if ((index < 0) || (index >= this.paragraphs.size())) {
throw new InvalidIndexException(index) ;
}// if
}// checkIndex(int)
}// class Paragraphs