]> git.argeo.org Git - lgpl/argeo-commons.git/blob - UxContext.java
fb99178eecb5d7403f3ff520c3337bd305f6e411
[lgpl/argeo-commons.git] / UxContext.java
1 package org.argeo.api.cms;
2
3 public interface UxContext {
4 boolean isPortrait();
5
6 boolean isLandscape();
7
8 boolean isSquare();
9
10 boolean isSmall();
11
12 /**
13 * Is a production environment (must be false by default, and be explicitly
14 * set during the CMS deployment). When false, it can activate additional UI
15 * capabilities in order to facilitate QA.
16 */
17 boolean isMasterData();
18 }