Java API ReferenceClass Hierarchy | All Classes | All Fields and Methods

com.ibm.xtools.patterns.framework

Class PatternParameterMapping.Filter

+-- Object
      +-- PatternParameterMapping.Filter

abstract static public Class PatternParameterMapping.Filter
extends Object

Represents a filter interface for processing source values and returning target values.

The processing occurs at run-time for each value that flows from the source to the target. There is no type-checking currently, so the implementor of this interface must recognize the issues that might arise between the type of the source pattern parameter and the type of the target pattern parameter for example.

Enclosing Class:


Constructor summary
PatternParameterMapping.Filter()

Method summary
Objectprocess(Object sourceValue)

Retrieves the target value.

Constructor detail

PatternParameterMapping.Filter

public PatternParameterMapping.Filter()

This class contains no constructor declarations, then a default constructor that takes no parameters is automatically provided by the compiler.

Method detail

process

abstract public Object process(Object sourceValue)

Retrieves the target value.

Parameters:

sourceValue
- The value of the source to process.

Returns:

An object representing the target value.


Feedback