/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
*
Convenience class representing a Summary Information stream in a * Microsoft Office document.
* *See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/stgu_8910.asp * for documentation from That Redmond Company. * * @see DocumentSummaryInformation * * @author Rainer Klute (klute@rainer-klute.de) * @version $Id$ * @since 2002-02-09 */ public class SummaryInformation extends SpecialPropertySet { /** *
Creates a {@link SummaryInformation} from a given {@link * PropertySet}.
* * @param ps A property set which should be created from a summary * information stream. * * @throws UnexpectedPropertySetTypeException if ps * does not contain a summary information stream. */ public SummaryInformation(final PropertySet ps) throws UnexpectedPropertySetTypeException { super(ps); if (!isSummaryInformation()) throw new UnexpectedPropertySetTypeException ("Not a " + getClass().getName()); } /** *Returns the stream's title (or null).
Returns the stream's subject (or null).
Returns the stream's author (or null).
Returns the stream's keywords (or null).
Returns the stream's comments (or null).
Returns the stream's template (or null).
Returns the stream's last author (or null).
Returns the stream's revision number (or
* null).
Returns the stream's edit time (or null).
Returns the stream's last printed time (or
* null).
Returns the stream's creation time (or
* null).
Returns the stream's last save time (or
* null).
Returns the stream's page count or 0 if the {@link * SummaryInformation} does not contain a page count.
*/ public int getPageCount() { return getPropertyIntValue(PropertyIDMap.PID_PAGECOUNT); } /** *Returns the stream's word count or 0 if the {@link * SummaryInformation} does not contain a word count.
*/ public int getWordCount() { return getPropertyIntValue(PropertyIDMap.PID_WORDCOUNT); } /** *Returns the stream's char count or 0 if the {@link * SummaryInformation} does not contain a char count.
*/ public int getCharCount() { return getPropertyIntValue(PropertyIDMap.PID_CHARCOUNT); } /** *Returns the stream's thumbnail (or null)
* when this method is implemented. Please note that the
* return type is likely to change!
*
*
FIXME / Hint to developers: Drew Varner * <Drew.Varner -at- sc.edu> said that this is an image in WMF * or Clipboard (BMP?) format. He also provided two links that * might be helpful: http://www.csn.ul.ie/~caolan/publink/file/OLE2SummaryAgainst_file-3.27.patch * and http://msdn.microsoft.com/library/en-us/dno97ta/html/msdn_docprop.asp. * However, we won't do any conversion into any image type but * instead just return a byte array.
*/ public byte[] getThumbnail() { return (byte[]) getProperty(PropertyIDMap.PID_THUMBNAIL); } /** *Returns the stream's application name (or
* null).
Returns one of the following values:
* *0 if the {@link SummaryInformation} does not contain a * security field or if there is no security on the document. Use * {@link #wasNull} to distinguish between the two cases!
1 if the document is password protected
2 if the document is read-only recommended
4 if the document is read-only enforced
8 if the document is locked for annotations