Interface PointTranslatorDecorator

All Superinterfaces:
PointTranslator

public interface PointTranslatorDecorator extends PointTranslator
This represents a PointTranslator that performs an operation using its methods, and then after it has finished doing its translations will pass its result to another PointTranslator.
Author:
Jerry Vos
  • Method Details

    • getDecorated

      PointTranslator getDecorated()
      Retrieves the translator being decorated.
      Returns:
      the translator being decorated
    • decorate

      void decorate(PointTranslator decorated)
      Sets the translator to decorate.
      Parameters:
      decorated - the translator to decorates