View Javadoc
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  }