All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.hpsf.DocumentSummaryInformation Maven / Gradle / Ivy

/* ====================================================================
   Copyright 2002-2004   Apache Software Foundation

   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 org.apache.poi.hpsf;

import java.io.*;
import java.util.*;
import org.apache.poi.hpsf.wellknown.*;

/**
 * 

Convenience class representing a DocumentSummary Information stream in a * Microsoft Office document.

* * @author Rainer Klute ([email protected]) * @author Drew Varner (Drew.Varner closeTo sc.edu) * @see SummaryInformation * @version $Id: DocumentSummaryInformation.java,v 1.9.4.1 2004/02/22 11:54:45 glens Exp $ * @since 2002-02-09 */ public class DocumentSummaryInformation extends SpecialPropertySet { /** *

The document name a document summary information stream * usually has in a POIFS filesystem.

*/ public static final String DEFAULT_STREAM_NAME = "\005DocumentSummaryInformation"; /** *

Creates a {@link DocumentSummaryInformation} from a given * {@link PropertySet}.

* * @param ps A property set which should be created from a * document summary information stream. * @throws UnexpectedPropertySetTypeException if ps * does not contain a document summary information stream. */ public DocumentSummaryInformation(final PropertySet ps) throws UnexpectedPropertySetTypeException { super(ps); if (!isDocumentSummaryInformation()) throw new UnexpectedPropertySetTypeException ("Not a " + getClass().getName()); } /** *

Returns the stream's category (or null).

* * @return The category value */ public String getCategory() { return (String) getProperty(PropertyIDMap.PID_CATEGORY); } /** *

Returns the stream's presentation format (or * null).

* * @return The presentationFormat value */ public String getPresentationFormat() { return (String) getProperty(PropertyIDMap.PID_PRESFORMAT); } /** *

Returns the stream's byte count or 0 if the {@link * DocumentSummaryInformation} does not contain a byte count.

* * @return The byteCount value */ public int getByteCount() { return getPropertyIntValue(PropertyIDMap.PID_BYTECOUNT); } /** *

Returns the stream's line count or 0 if the {@link * DocumentSummaryInformation} does not contain a line count.

* * @return The lineCount value */ public int getLineCount() { return getPropertyIntValue(PropertyIDMap.PID_LINECOUNT); } /** *

Returns the stream's par count or 0 if the {@link * DocumentSummaryInformation} does not contain a par count.

* * @return The parCount value */ public int getParCount() { return getPropertyIntValue(PropertyIDMap.PID_PARCOUNT); } /** *

Returns the stream's slide count or 0 if the {@link * DocumentSummaryInformation} does not contain a slide count.

* * @return The slideCount value */ public int getSlideCount() { return getPropertyIntValue(PropertyIDMap.PID_SLIDECOUNT); } /** *

Returns the stream's note count or 0 if the {@link * DocumentSummaryInformation} does not contain a note count.

* * @return The noteCount value */ public int getNoteCount() { return getPropertyIntValue(PropertyIDMap.PID_NOTECOUNT); } /** *

Returns the stream's hidden count or 0 if the {@link * DocumentSummaryInformation} does not contain a hidden * count.

* * @return The hiddenCount value */ public int getHiddenCount() { return getPropertyIntValue(PropertyIDMap.PID_HIDDENCOUNT); } /** *

Returns the stream's mmclip count or 0 if the {@link * DocumentSummaryInformation} does not contain a mmclip * count.

* * @return The mMClipCount value */ public int getMMClipCount() { return getPropertyIntValue(PropertyIDMap.PID_MMCLIPCOUNT); } /** *

Returns true when scaling of the thumbnail is * desired, false if cropping is desired.

* * @return The scale value */ public boolean getScale() { return getPropertyBooleanValue(PropertyIDMap.PID_SCALE); } /** *

Returns the stream's heading pair (or null) * when this method is implemented. Please note that the * return type is likely to change! * * @return The headingPair value */ public byte[] getHeadingPair() { if (true) throw new UnsupportedOperationException("FIXME"); return (byte[]) getProperty(PropertyIDMap.PID_HEADINGPAIR); } /** *

Returns the stream's doc parts (or null) * when this method is implemented. Please note that the * return type is likely to change! * * @return The docparts value */ public byte[] getDocparts() { if (true) throw new UnsupportedOperationException("FIXME"); return (byte[]) getProperty(PropertyIDMap.PID_DOCPARTS); } /** *

Returns the stream's manager (or null).

* * @return The manager value */ public String getManager() { return (String) getProperty(PropertyIDMap.PID_MANAGER); } /** *

Returns the stream's company (or null).

* * @return The company value */ public String getCompany() { return (String) getProperty(PropertyIDMap.PID_COMPANY); } /** *

Returns true if the custom links are hampered * by excessive noise, for all applications.

* * FIXME: Explain this some more! I (Rainer) * don't understand it.

* * @return The linksDirty value */ public boolean getLinksDirty() { return getPropertyBooleanValue(PropertyIDMap.PID_LINKSDIRTY); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy