API Overview API Index Package Overview Direct link to this page
JavaOnTracks 0.1.2
  net.jot.web. JOTFlowPage 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

/*
------------------------------------
JavaOnTracks          Thibaut Colar
tcolar-jot AT colar DOT net
Artistic Licence 2.0
http://www.javaontracks.net
------------------------------------
 */
package net.jot.web;

/**
 * Object representation of a page/view in flow.conf
 * @author thibautc
 */
public class JOTFlowPage {
        /**
         * code is the class name. ie: net.jotwiki.something.SomeClass
         */
	private Object code;
	private Object name;

	public JOTFlowPage(String code, String name)
	{
		this.code=code;
		this.name=name;
	}

	public Object getCode()
	{
		return code;
	}

	public void setCode(Object code)
	{
		this.code = code;
	}

	public Object getName()
	{
		return name;
	}

	public void setName(Object name)
	{
		this.name = name;
	}
}

Generated By: JavaOnTracks Doclet 0.1.5     ©Thibaut Colar