]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.cms.ui/src/org/argeo/cms/ui/UxContext.java
Use new log levels.
[lgpl/argeo-commons.git] / org.argeo.cms.ui / src / org / argeo / cms / ui / UxContext.java
1 package org.argeo.cms.ui;
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 }