com.helger.pdflayout4.element.special.PLPageBreak Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-pdf-layout4 Show documentation
Show all versions of ph-pdf-layout4 Show documentation
Library for creating nicely layouted PDF documents based on PDFBox
The newest version!
/*
* Copyright (C) 2014-2021 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed 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.
*/
package com.helger.pdflayout4.element.special;
import java.io.IOException;
import javax.annotation.Nonnull;
import com.helger.commons.string.ToStringGenerator;
import com.helger.pdflayout4.base.AbstractPLRenderableObject;
import com.helger.pdflayout4.render.PageRenderContext;
import com.helger.pdflayout4.render.PreparationContext;
import com.helger.pdflayout4.spec.SizeSpec;
/**
* A page break that ensures a new page is started afterwards. The difference
* between force pages breaks and normal page breaks is as follows: forced page
* breaks are always executed, whereas normal page breaks are not executed if a
* new page just started.
* Important note: page breaks are only handled if they are directly contained
* in a page set. Page breaks are not handled when nested in VBoxes or HBoxes.
*
* @author Philip Helger
*/
public class PLPageBreak extends AbstractPLRenderableObject
{
private final boolean m_bForcePageBreak;
/**
* Constructor
*
* @param bForcePageBreak
* true
if this is a forced page break, false
* if it is a normal page break.
*/
public PLPageBreak (final boolean bForcePageBreak)
{
m_bForcePageBreak = bForcePageBreak;
}
/**
* @return true
if this is a forced page break,
* false
if it is a normal page break.
*/
public final boolean isForcePageBreak ()
{
return m_bForcePageBreak;
}
@Override
protected SizeSpec onPrepare (@Nonnull final PreparationContext aCtx)
{
// Use the fixed size
return SizeSpec.SIZE0;
}
@Override
protected void onMarkAsNotPrepared ()
{
// Nada
}
@Override
protected void onRender (@Nonnull final PageRenderContext aCtx) throws IOException
{}
@Override
public String toString ()
{
return ToStringGenerator.getDerived (super.toString ()).append ("forcePageBreak", m_bForcePageBreak).getToString ();
}
@Nonnull
public static PLPageBreak createPreparedPageBreak ()
{
final PLPageBreak ret = new PLPageBreak (false);
ret.internalMarkAsPrepared (SizeSpec.SIZE0);
return ret;
}
}