package com.explodingpixels.widgets;

/**
 * An interface for provider's of text.
 */
public interface TextProvider {

    /**
     * Gets the text for this element.
     *
     * @return the text for this element.
     */
    String getText();

}
