Interface IPropertyVisitor

All Known Implementing Classes:
PropertyVisitor, ReportingExtraParameterVisitor

public interface IPropertyVisitor
Interface for an object that accepts properties.
Since:
5.0
Author:
O. Kerpershoek
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addProperty(String key, String propertyValue)
    This method should be invoked for each property that is to be added.
  • Method Details

    • addProperty

      void addProperty(String key, String propertyValue)
      This method should be invoked for each property that is to be added. The key of the property is required (may not be null) and not case sensitive, the value of the property is optional.
      Parameters:
      key - String containing the identifier of the property (mandatory).
      propertyValue - String containing the value of the property (optional).
      Throws:
      InitializationException - This exception is thrown when the property could not be added.