/*
 * 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.
 */

/* $Id: ListBlock.java 1805173 2017-08-16 10:50:04Z ssteiner $ */

package org.apache.fop.fo.flow;

import org.xml.sax.Locator;

import org.apache.fop.apps.FOPException;
import org.apache.fop.datatypes.Length;
import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FObj;
import org.apache.fop.fo.PropertyList;
import org.apache.fop.fo.ValidationException;
import org.apache.fop.fo.properties.BreakPropertySet;
import org.apache.fop.fo.properties.CommonAccessibility;
import org.apache.fop.fo.properties.CommonAccessibilityHolder;
import org.apache.fop.fo.properties.CommonBorderPaddingBackground;
import org.apache.fop.fo.properties.CommonMarginBlock;
import org.apache.fop.fo.properties.KeepProperty;

Class modelling the list block fo:list-block object.
/** * Class modelling the <a href="http://www.w3.org/TR/xsl/#fo_list-block">list block</a> * <code>fo:list-block</code> object. */
public class ListBlock extends FObj implements BreakPropertySet, CommonAccessibilityHolder { // The value of properties relevant for fo:list-block. private CommonAccessibility commonAccessibility; private CommonBorderPaddingBackground commonBorderPaddingBackground; private CommonMarginBlock commonMarginBlock; private int breakAfter; private int breakBefore; private KeepProperty keepTogether; private KeepProperty keepWithNext; private KeepProperty keepWithPrevious; // Unused but valid items, commented out for performance: // private CommonAural commonAural; // private CommonRelativePosition commonRelativePosition; // private int intrusionDisplace; // private Length provisionalDistanceBetweenStarts; // private Length provisionalLabelSeparation; // End of property values
extension properties
/** extension properties */
private Length widowContentLimit; private Length orphanContentLimit; // used for child node validation private boolean hasListItem;
Base constructor
Params:
  • parent – FONode that is the parent of this object
/** * Base constructor * * @param parent {@link FONode} that is the parent of this object */
public ListBlock(FONode parent) { super(parent); }
{@inheritDoc}
/** {@inheritDoc} */
public void bind(PropertyList pList) throws FOPException { super.bind(pList); commonAccessibility = CommonAccessibility.getInstance(pList); commonBorderPaddingBackground = pList.getBorderPaddingBackgroundProps(); commonMarginBlock = pList.getMarginBlockProps(); breakAfter = pList.get(PR_BREAK_AFTER).getEnum(); breakBefore = pList.get(PR_BREAK_BEFORE).getEnum(); keepTogether = pList.get(PR_KEEP_TOGETHER).getKeep(); keepWithNext = pList.get(PR_KEEP_WITH_NEXT).getKeep(); keepWithPrevious = pList.get(PR_KEEP_WITH_PREVIOUS).getKeep(); //Bind extension properties widowContentLimit = pList.get(PR_X_WIDOW_CONTENT_LIMIT).getLength(); orphanContentLimit = pList.get(PR_X_ORPHAN_CONTENT_LIMIT).getLength(); }
{@inheritDoc}
/** {@inheritDoc} */
public void startOfNode() throws FOPException { super.startOfNode(); getFOEventHandler().startList(this); }
Make sure the content model is satisfied, if so then tell the FOEventHandler that we are at the end of the list-block. {@inheritDoc}
/** * Make sure the content model is satisfied, if so then tell the * {@link org.apache.fop.fo.FOEventHandler} that we are at the end * of the list-block. * {@inheritDoc} */
public void endOfNode() throws FOPException { if (!hasListItem) { missingChildElementError("marker* (list-item)+"); } getFOEventHandler().endList(this); }
{@inheritDoc}
XSL Content Model: marker* (list-item)+
/** * {@inheritDoc} * <br>XSL Content Model: marker* (list-item)+ */
protected void validateChildNode(Locator loc, String nsURI, String localName) throws ValidationException { if (FO_URI.equals(nsURI)) { if (localName.equals("marker")) { if (hasListItem) { nodesOutOfOrderError(loc, "fo:marker", "fo:list-item"); } } else if (localName.equals("list-item")) { hasListItem = true; } else { invalidChildError(loc, nsURI, localName); } } }
{@inheritDoc}
/** {@inheritDoc} */
public CommonAccessibility getCommonAccessibility() { return commonAccessibility; }
Returns:the CommonMarginBlock
/** @return the {@link CommonMarginBlock} */
public CommonMarginBlock getCommonMarginBlock() { return commonMarginBlock; }
Returns:the CommonBorderPaddingBackground
/** @return the {@link CommonBorderPaddingBackground} */
public CommonBorderPaddingBackground getCommonBorderPaddingBackground() { return commonBorderPaddingBackground; }
Returns:the "break-after" property
/** @return the "break-after" property */
public int getBreakAfter() { return breakAfter; }
Returns:the "break-before" property
/** @return the "break-before" property */
public int getBreakBefore() { return breakBefore; }
Returns:the "keep-with-next" property.
/** @return the "keep-with-next" property. */
public KeepProperty getKeepWithNext() { return keepWithNext; }
Returns:the "keep-with-previous" property.
/** @return the "keep-with-previous" property. */
public KeepProperty getKeepWithPrevious() { return keepWithPrevious; }
Returns:the "keep-together" property.
/** @return the "keep-together" property. */
public KeepProperty getKeepTogether() { return keepTogether; }
Returns:the "fox:widow-content-limit" extension property
/** @return the "fox:widow-content-limit" extension property */
public Length getWidowContentLimit() { return widowContentLimit; }
Returns:the "fox:orphan-content-limit" extension property
/** @return the "fox:orphan-content-limit" extension property */
public Length getOrphanContentLimit() { return orphanContentLimit; }
{@inheritDoc}
/** {@inheritDoc} */
public String getLocalName() { return "list-block"; }
{@inheritDoc}
Returns:Constants.FO_LIST_BLOCK
/** * {@inheritDoc} * @return {@link org.apache.fop.fo.Constants#FO_LIST_BLOCK} */
public int getNameId() { return FO_LIST_BLOCK; } }