blob: b5478266208f3b65e6d9967973b8e4ce38e1f7f3 [file] [log] [blame]
package org.apache.maven.doxia.module.twiki.parser;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.maven.doxia.sink.Sink;
/**
* <pre>
* 1. item1
* 2. item2
* - item2.1
* ...
* </pre>
*
* @author Juan F. Codagnone
* @version $Id$
*/
class NumeratedListBlock
extends ListBlock
{
/**
* order item type. one of Sink#NUMBERING_....
*/
private final int type;
/**
* Creates the UnorderedListBlock.
*
* @param type order item type. one of Sink#NUMBERING_....
* @param blocks list of list items, not null.
*/
NumeratedListBlock( final int type, final ListItemBlock[] blocks )
{
super( blocks );
this.type = type;
}
/** {@inheritDoc} */
final void before( final Sink sink )
{
sink.numberedList( type );
}
/** {@inheritDoc} */
final void after( final Sink sink )
{
sink.numberedList_();
}
/** {@inheritDoc} */
public final boolean equals( final Object obj )
{
boolean ret = false;
if ( super.equals( obj ) )
{
ret = type == ( (NumeratedListBlock) obj ).type;
}
return ret;
}
/** {@inheritDoc} */
public final int hashCode()
{
final int magic = 17;
return super.hashCode() + magic * type;
}
}