Class StringMapItem


public class StringMapItem extends AnchorBean<StringMapItem>
A bean with a pair of strings, representing a mapping from one string to the other.

The originating string is termed source and the destination of the mapping is termed target.

Author:
Owen Feehan
  • Constructor Details

    • StringMapItem

      public StringMapItem()
  • Method Details

    • getSource

      public String getSource()
      The origin of the mapping.
    • setSource

      public void setSource(String source)
      The origin of the mapping.
    • getTarget

      public String getTarget()
      The destination of the mapping.
    • setTarget

      public void setTarget(String target)
      The destination of the mapping.