001package com.fs.starfarer.api;
002
003import java.awt.Color;
004import java.util.Map;
005
006public interface TextTokenAndHighlightSource {
007        /**
008         * For the description that shows up in the tooltip.
009         * @return
010         */
011        Map<String, String> getTokenReplacements();
012        
013        /**
014         * For the description, which is shown in the tooltip.
015         * @return
016         */
017        String [] getHighlights();
018        
019        Color [] getHighlightColors();
020}