API Overview API Index Package Overview Direct link to this page
JavaOnTracks 0.1.2
  net.jot.web.view. JOTViewParserData View Javadoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package net.jot.web.view;

import java.util.Hashtable;

/**
 * Lightweight interface through which the view parser data can be retrieved
 * @author thibautc
 */
public interface JOTViewParserData {

    /**
     * Custom JOT element block (can be added/removed easily)
     * @return
     */
    public Hashtable getBlocks();

    /**
     * Custom tags added to a standrard HTML element
     * @return
     */
    public Hashtable getTags();

    /**
     * This returns a Hashtable of variables to use in the template
     * This is the most commonly use way to store data
     * @return
     */
    public Hashtable getVariables();

    /**
     * Any custom forms
     * @return
     */
    public Hashtable getForms();

    /**
     * Return the full view object (JOTView)
     * or null if not available (Ex: JOTLightweightView)
     * @return
     */
    public JOTView getFullView();


}

Generated By: JavaOnTracks Doclet 0.1.5     ©Thibaut Colar