Interface ValueTypeTag

All Known Implementing Classes:
ArrayTag, KeyTag, ValueTag

public interface ValueTypeTag
An interface that defines tags that can accept and store values. This interface is implemented by tags that need to receive values from child tags or other components in the tag hierarchy.
Author:
jbanes
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the current value stored by the tag.
    void
    Sets the value stored by the tag.
  • Method Details

    • getValue

      Object getValue()
      Gets the current value stored by the tag.
      Returns:
      The value.
    • setValue

      void setValue(Object value)
      Sets the value stored by the tag.
      Parameters:
      value - The value.