Class EmbeddedPartMetadata
- java.lang.Object
-
- org.apache.tika.parser.microsoft.ooxml.EmbeddedPartMetadata
-
public class EmbeddedPartMetadata extends Object
This class records metadata about embedded parts that exists in the xml of the main document.
-
-
Constructor Summary
Constructors Constructor Description EmbeddedPartMetadata(String emfRelationshipId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEmfRelationshipId()
String
getFullName()
String
getProgId()
String
getRenderedName()
void
setFullName(String fullName)
void
setProgId(String progId)
void
setRenderedName(String renderedName)
-
-
-
Constructor Detail
-
EmbeddedPartMetadata
public EmbeddedPartMetadata(String emfRelationshipId)
- Parameters:
emfRelationshipId
- relationship id of the EMF file
-
-
Method Detail
-
getEmfRelationshipId
public String getEmfRelationshipId()
-
getRenderedName
public String getRenderedName()
-
getFullName
public String getFullName()
-
getProgId
public String getProgId()
-
setRenderedName
public void setRenderedName(String renderedName)
-
setFullName
public void setFullName(String fullName)
-
setProgId
public void setProgId(String progId)
-
-