Subversion Repository Public Repository

litesoft

Diff Revisions 628 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/shared/utils/Visible.java

Diff revisions: vs.
  @@ -1,9 +1,7 @@
1 1 package com.temp.shared.utils;
2 2
3 - public interface Visible
4 - {
5 - enum State
6 - {
3 + public interface Visible {
4 + enum State {
7 5 Invisible, // equates to HTML's display=none | No visible state, not even any space reserved
8 6 Cloaked, // equates to HTML's visibility=hidden | space reserved, but nothing showing
9 7 Visible // regular, as in neither of the above