public interface FilterChain
限定符和类型 | 方法和说明 |
---|---|
void |
addFilter(Filter filter)
Adds a filter to the chain.
|
void |
doFilter(org.jodconverter.office.OfficeContext context,
com.sun.star.lang.XComponent document)
Causes the next filter in the chain to be invoked, or if the calling filter is the last filter
in the chain, do nothing.
|
void addFilter(Filter filter)
filter
- The filter to add at the end of the chain.void doFilter(org.jodconverter.office.OfficeContext context, com.sun.star.lang.XComponent document) throws org.jodconverter.office.OfficeException
context
- The OfficeContext in use to pass along the chain.document
- The XComponent being converted to pass along the chain.org.jodconverter.office.OfficeException
- If an error occurs processing the filter.