View Javadoc

1   /***
2    * 
3    */
4   package net.trajano.twiff.renderer;
5   
6   /***
7    * @author Archimedes Trajano
8    */
9   public interface Component {
10      /***
11       * This method evaluates the component.
12       * 
13       * @param parameters the contents after 
14       * @param data
15       * @return rendered data.
16       */
17      String evaluate(String parameters, String data);
18  }