Fix inconsistent indents
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1666518 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a62be1da0c
commit
48e3a2e56a
@ -21,8 +21,8 @@ package org.apache.poi.openxml4j.opc;
|
|||||||
* Relationship types.
|
* Relationship types.
|
||||||
*/
|
*/
|
||||||
public interface PackageRelationshipTypes {
|
public interface PackageRelationshipTypes {
|
||||||
/**
|
/**
|
||||||
* Core properties relationship type.
|
* Core properties relationship type.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* The standard specifies a source relations ship for the Core File Properties part as follows:
|
* The standard specifies a source relations ship for the Core File Properties part as follows:
|
||||||
@ -33,86 +33,86 @@ public interface PackageRelationshipTypes {
|
|||||||
* <code>http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties.</code>
|
* <code>http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties.</code>
|
||||||
* </p>
|
* </p>
|
||||||
* See 2.1.33 Part 1 Section 15.2.11.1, Core File Properties Part in [MS-OE376].pdf
|
* See 2.1.33 Part 1 Section 15.2.11.1, Core File Properties Part in [MS-OE376].pdf
|
||||||
*/
|
*/
|
||||||
String CORE_PROPERTIES = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties";
|
String CORE_PROPERTIES = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Core properties relationship type as defiend in ECMA 376.
|
* Core properties relationship type as defiend in ECMA 376.
|
||||||
*/
|
*/
|
||||||
String CORE_PROPERTIES_ECMA376 = "http://schemas.openxmlformats.org/officedocument/2006/relationships/metadata/core-properties";
|
String CORE_PROPERTIES_ECMA376 = "http://schemas.openxmlformats.org/officedocument/2006/relationships/metadata/core-properties";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Digital signature relationship type.
|
* Digital signature relationship type.
|
||||||
*/
|
*/
|
||||||
String DIGITAL_SIGNATURE = "http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/signature";
|
String DIGITAL_SIGNATURE = "http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/signature";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Digital signature certificate relationship type.
|
* Digital signature certificate relationship type.
|
||||||
*/
|
*/
|
||||||
String DIGITAL_SIGNATURE_CERTIFICATE = "http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/certificate";
|
String DIGITAL_SIGNATURE_CERTIFICATE = "http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/certificate";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Digital signature origin relationship type.
|
* Digital signature origin relationship type.
|
||||||
*/
|
*/
|
||||||
String DIGITAL_SIGNATURE_ORIGIN = "http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/origin";
|
String DIGITAL_SIGNATURE_ORIGIN = "http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/origin";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thumbnail relationship type.
|
* Thumbnail relationship type.
|
||||||
*/
|
*/
|
||||||
String THUMBNAIL = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail";
|
String THUMBNAIL = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extended properties relationship type.
|
* Extended properties relationship type.
|
||||||
*/
|
*/
|
||||||
String EXTENDED_PROPERTIES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties";
|
String EXTENDED_PROPERTIES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extended properties relationship type for strict ooxml.
|
* Extended properties relationship type for strict ooxml.
|
||||||
*/
|
*/
|
||||||
String STRICT_EXTENDED_PROPERTIES = "http://purl.oclc.org/ooxml/officeDocument/relationships/extendedProperties";
|
String STRICT_EXTENDED_PROPERTIES = "http://purl.oclc.org/ooxml/officeDocument/relationships/extendedProperties";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Custom properties relationship type.
|
* Custom properties relationship type.
|
||||||
*/
|
*/
|
||||||
String CUSTOM_PROPERTIES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties";
|
String CUSTOM_PROPERTIES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Core document relationship type.
|
* Core document relationship type.
|
||||||
*/
|
*/
|
||||||
String CORE_DOCUMENT = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument";
|
String CORE_DOCUMENT = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Core document relationship type for strict ooxml.
|
* Core document relationship type for strict ooxml.
|
||||||
*/
|
*/
|
||||||
String STRICT_CORE_DOCUMENT = "http://purl.oclc.org/ooxml/officeDocument/relationships/officeDocument";
|
String STRICT_CORE_DOCUMENT = "http://purl.oclc.org/ooxml/officeDocument/relationships/officeDocument";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Custom XML relationship type.
|
* Custom XML relationship type.
|
||||||
*/
|
*/
|
||||||
String CUSTOM_XML = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml";
|
String CUSTOM_XML = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Image type.
|
* Image type.
|
||||||
*/
|
*/
|
||||||
String IMAGE_PART = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image";
|
String IMAGE_PART = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hyperlink type.
|
* Hyperlink type.
|
||||||
*/
|
*/
|
||||||
String HYPERLINK_PART = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink";
|
String HYPERLINK_PART = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Style type.
|
* Style type.
|
||||||
*/
|
*/
|
||||||
String STYLE_PART = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles";
|
String STYLE_PART = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles";
|
||||||
|
|
||||||
/**
|
|
||||||
* External Link to another Document
|
|
||||||
*/
|
|
||||||
String EXTERNAL_LINK_PATH = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/externalLinkPath";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Visio 2010 VSDX equivalent of package {@link #CORE_DOCUMENT}
|
* External Link to another Document
|
||||||
*/
|
*/
|
||||||
String VISIO_CORE_DOCUMENT = "http://schemas.microsoft.com/visio/2010/relationships/document";
|
String EXTERNAL_LINK_PATH = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/externalLinkPath";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Visio 2010 VSDX equivalent of package {@link #CORE_DOCUMENT}
|
||||||
|
*/
|
||||||
|
String VISIO_CORE_DOCUMENT = "http://schemas.microsoft.com/visio/2010/relationships/document";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user