| Package | Description |
|---|---|
| net.sf.mmm.content.parser.base |
Contains the base-implementation of the content-parser API.
|
| net.sf.mmm.content.parser.impl |
Contains the implementation of the
content-parser API. |
| net.sf.mmm.content.parser.impl.html |
Contains
ContentParser-implementations
for HTML-files. |
| net.sf.mmm.content.parser.impl.java |
Contains
ContentParser-implementations
for java-files. |
| net.sf.mmm.content.parser.impl.opendoc |
Contains
ContentParser-implementations
for OO-XML files. |
| net.sf.mmm.content.parser.impl.pdf |
Contains
ContentParser-implementations
for PDF files. |
| net.sf.mmm.content.parser.impl.poi |
Contains
ContentParser-implementations
for binary MS-Office files using POI. |
| net.sf.mmm.content.parser.impl.text |
Contains
ContentParser-implementations
for text-files. |
| net.sf.mmm.content.parser.impl.xml |
Contains
ContentParser-implementations
for XML files. |
| net.sf.mmm.search.indexer.api.strategy |
Contains the API for the available (delta-)indexing strategies.
|
| net.sf.mmm.search.indexer.base.strategy |
Contains the base-implementation for the available (delta-)indexing
strategies.
|
| net.sf.mmm.util.context.api |
Provides the API for a generic context.
|
| net.sf.mmm.util.context.base |
Provides the base-implementation of the
Context-API. |
| net.sf.mmm.util.context.impl |
Provides the implementation of the
Context-API. |
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
AbstractContentParser.parse(InputStream inputStream,
long filesize,
ContentParserOptions options,
MutableGenericContext context) |
| Modifier and Type | Method and Description |
|---|---|
void |
ContentParserGeneric.parse(InputStream inputStream,
long filesize,
ContentParserOptions options,
MutableGenericContext context) |
| Modifier and Type | Method and Description |
|---|---|
void |
ContentParserHtml.parse(InputStream inputStream,
long filesize,
ContentParserOptions options,
MutableGenericContext context) |
protected void |
ContentParserHtml.parseJtidy(InputStream inputStream,
long filesize,
MutableGenericContext context) |
protected void |
ContentParserHtml.parseLine(MutableGenericContext context,
String line)
This method may be overridden to parse additional metadata from the
content.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
ContentParserJava.parseLine(MutableGenericContext context,
String line)
This method may be overridden to parse additional metadata from the
content.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractContentParserOpenDoc.parse(InputStream inputStream,
long filesize,
ContentParserOptions options,
MutableGenericContext context) |
protected void |
AbstractContentParserOpenDoc.parseContent(InputStream inputStream,
ContentParserOptions options,
MutableGenericContext context,
StringBuilder buffer)
This method parses the content of the document.
|
protected void |
AbstractContentParserOpenDoc.parseMetadata(InputStream inputStream,
ContentParserOptions options,
MutableGenericContext context)
This method parses the metadata of the document.
|
protected void |
AbstractContentParserOpenDoc.parseStyles(InputStream inputStream,
ContentParserOptions options,
MutableGenericContext context,
StringBuilder buffer)
This method parses the content of the document.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ContentParserPdf.parse(InputStream inputStream,
long filesize,
ContentParserOptions options,
MutableGenericContext context) |
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractContentParserPoi.parse(InputStream inputStream,
long filesize,
ContentParserOptions options,
MutableGenericContext context) |
void |
AbstractContentParserOoxml.parse(InputStream inputStream,
long filesize,
ContentParserOptions options,
MutableGenericContext context) |
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractContentParserTextMarkupAware.parse(BufferedReader bufferedReader,
ContentParserOptions options,
MutableGenericContext context,
StringBuilder textBuffer)
This method parses the content of the given
bufferedReader and
appends the textual content to the textBuffer. |
void |
AbstractContentParserText.parse(BufferedReader bufferedReader,
ContentParserOptions options,
MutableGenericContext context,
StringBuilder textBuffer)
This method parses the content of the given
bufferedReader and
appends the textual content to the textBuffer. |
void |
AbstractContentParserText.parse(InputStream inputStream,
long filesize,
ContentParserOptions options,
MutableGenericContext context) |
protected void |
AbstractContentParserText.parseLine(MutableGenericContext context,
String line)
This method may be overridden to parse additional metadata from the
content.
|
protected void |
AbstractContentParserText.parseProperty(MutableGenericContext context,
String line,
Pattern pattern,
String propertyName,
int group)
This method checks if the property identified by
propertyName
already exists. |
| Modifier and Type | Method and Description |
|---|---|
void |
ContentParserXml.parse(BufferedReader bufferedReader,
ContentParserOptions options,
MutableGenericContext context,
StringBuilder textBuffer)
This method parses the content of the given
bufferedReader and
appends the textual content to the textBuffer. |
void |
ContentParserXml.parse(InputStream inputStream,
long filesize,
ContentParserOptions options,
MutableGenericContext context) |
| Modifier and Type | Method and Description |
|---|---|
MutableGenericContext |
UpdateStrategyArguments.getContext()
This method gets the
MutableGenericContext. |
| Modifier and Type | Field and Description |
|---|---|
private MutableGenericContext |
UpdateStrategyArgumentsBean.context |
| Modifier and Type | Method and Description |
|---|---|
MutableGenericContext |
UpdateStrategyArgumentsBean.getContext()
This method gets the
MutableGenericContext. |
| Constructor and Description |
|---|
UpdateStrategyArgumentsBean(MutableGenericContext context)
The constructor.
|
| Modifier and Type | Method and Description |
|---|---|
MutableGenericContext |
GenericContext.createChildContext()
This method creates a new context that inherits all variables from this context (and its parent contexts).
|
MutableGenericContext |
GenericContextFactory.createContext()
This method creates a new instance of a
MutableGenericContext. |
MutableGenericContext |
GenericContextFactory.createContext(MapFactory<? extends Map> mapFactory)
This method creates a new instance of a
MutableGenericContext using the given MapFactory. |
MutableGenericContext |
GenericContextFactory.createContext(MapFactory<? extends Map> mapFactory,
GenericValueConverter<Object> valueConverter)
This method creates a new instance of a
MutableGenericContext using the given MapFactory. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractMutableGenericContext
This class is the basic implementation of the
GenericContext interface. |
| Modifier and Type | Method and Description |
|---|---|
MutableGenericContext |
AbstractGenericContextProxy.createChildContext() |
MutableGenericContext |
AbstractGenericContextFactory.createContext() |
| Modifier and Type | Class and Description |
|---|---|
class |
MutableGenericContextImpl
This is the implementation of the
MutableGenericContext interface. |
| Modifier and Type | Method and Description |
|---|---|
MutableGenericContext |
MutableGenericContextImpl.createChildContext() |
MutableGenericContext |
GenericContextFactoryImpl.createContext(MapFactory<? extends Map> mapFactory) |
MutableGenericContext |
GenericContextFactoryImpl.createContext(MapFactory<? extends Map> mapFactory,
GenericValueConverter<Object> valueConverter) |
Copyright © 2001–2016 mmm-Team. All rights reserved.