Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.temp.shared.utils;

public interface Visible {
    enum State {
        Invisible, // equates to HTML's display=none | No visible state, not even any space reserved
        Cloaked, // equates to HTML's visibility=hidden | space reserved, but nothing showing
        Visible // regular, as in neither of the above
    }

    boolean isVisible();

    boolean isCloaked();

    boolean isInvisible();

    State getVisibility();

    /**
     * Set the Visibility.
     *
     * @param visibility if null, Visible is assumed!
     */
    void setVisibility( State visibility );
}

Commits for litesoft/trunk/GWT_Sandbox/FormEngine/src/com/temp/shared/utils/Visible.java

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

628 GeorgeS picture GeorgeS Fri 13 Apr, 2012 03:53:33 +0000