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

/*
 * JavaOnTrack/Jotwiki
 * Thibaut Colar.
 * tcolar-jot AT colar  DOT net
 */

package net.jot.web.widget.builtin;

import net.jot.web.widget.JOTWidgetBaseProperties;
import net.jot.web.widget.JOTWidgetNoAjaxBase;

/**
 * Smple text widget
 * @author thibautc
 */
public abstract class JOTTextBoxWidget extends JOTWidgetNoAjaxBase
{
    // can ovveride in subclass: either: hidden, scroll, auto, visible
    public String overflow="hidden";
    

    public void customizeProperties()
    {
        properties.updatePropertyDefaultValue(JOTWidgetBaseProperties.PROP_BG_COLOR, "");
    }

}

Generated By: JavaOnTracks Doclet 0.1.5     ©Thibaut Colar