org.apache.pdfbox.debugger.flagbitspane.FlagBitsPane Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfbox-debugger Show documentation
Show all versions of pdfbox-debugger Show documentation
The Apache PDFBox library is an open source Java tool for working with PDF documents.
This artefact contains the PDFDebugger.
The newest version!
/*
* 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.
*/
package org.apache.pdfbox.debugger.flagbitspane;
import javax.swing.JPanel;
import org.apache.pdfbox.cos.COSDictionary;
import org.apache.pdfbox.cos.COSName;
import org.apache.pdfbox.pdmodel.PDDocument;
/**
* @author Khyrul Bashar
*
* A class that displays flag bits in a table in detail.
*/
public class FlagBitsPane
{
private FlagBitsPaneView view;
private final PDDocument document;
/**
* Constructor.
*
* @param document the current document
* @param dictionary COSDictionary instance.
* @param flagType COSName instance.
*/
public FlagBitsPane(PDDocument document, final COSDictionary dictionary, COSName flagType)
{
this.document = document;
createPane(dictionary, flagType);
}
private void createPane(final COSDictionary dictionary, final COSName flagType)
{
Flag flag;
if (COSName.FLAGS.equals(flagType))
{
flag = new FontFlag(dictionary);
view = new FlagBitsPaneView(
flag.getFlagType(), flag.getFlagValue(), flag.getFlagBits(), flag.getColumnNames());
}
if (COSName.F.equals(flagType))
{
flag = new AnnotFlag(dictionary);
view = new FlagBitsPaneView(
flag.getFlagType(), flag.getFlagValue(), flag.getFlagBits(), flag.getColumnNames());
}
if (COSName.FF.equals(flagType))
{
flag = new FieldFlag(dictionary);
view = new FlagBitsPaneView(
flag.getFlagType(), flag.getFlagValue(), flag.getFlagBits(), flag.getColumnNames());
}
if (COSName.PANOSE.equals(flagType))
{
flag = new PanoseFlag(dictionary);
view = new FlagBitsPaneView(
flag.getFlagType(), flag.getFlagValue(), flag.getFlagBits(), flag.getColumnNames());
}
if (COSName.P.equals(flagType))
{
flag = new EncryptFlag(dictionary);
view = new FlagBitsPaneView(
flag.getFlagType(), flag.getFlagValue(), flag.getFlagBits(), flag.getColumnNames());
}
if (COSName.SIG_FLAGS.equals(flagType))
{
flag = new SigFlag(document, dictionary);
view = new FlagBitsPaneView(
flag.getFlagType(), flag.getFlagValue(), flag.getFlagBits(), flag.getColumnNames());
}
}
/**
* Returns the Pane itself
* @return JPanel instance
*/
public JPanel getPane()
{
return view.getPanel();
}
}