TransitionType.ENUM.js

1       /* ----------------------------------------------------------------------------------
2        * Hint: This is a derived (generated) file. Changes should be done in the underlying 
3        * source files only (*.type, *.js) or they will be lost after the next generation.
4        * ---------------------------------------------------------------------------------- */
5       
6       // Provides enumeration sap.apb.TransitionType.
7       jQuery.sap.declare("sap.apb.TransitionType");
8       
9       /**
10       * @class Enumeration for TransitionType
11       *
12       * @version 1.0
13       * @static
14       * @public
15       * @since 1.0
16       */
17      sap.apb.TransitionType = {
18        
19          /**
20           * door 
21           * @public
22           */
23          door : "door",
24      
25          /**
26           * fade 
27           * @public
28           */
29          fade : "fade",
30      
31          /**
32           * flip 
33           * @public
34           */
35          flip : "flip",
36      
37          /**
38           * show 
39           * @public
40           */
41          show : "show",
42      
43          /**
44           * slide 
45           * @public
46           */
47          slide : "slide"
48      
49        };
50        
51