App
ImagePresentationEvent.java
Go to the documentation of this file.
1 package mhr.appandroid.views.imagepresentationview;
2 
3 public class ImagePresentationEvent {
4 
5 
6  //===================================================================================================================================================//
7  //===== PUBLIC ==============================================================================================================================//
8  //----- interface a třídy -------------------------------------------------------------------------------------------------------------------//
9  public enum EventType {
13 
17 
19 
21 
24 
26 
30 
34 
38 
41 
44 
48 
52 
54 
55  IMAGE_MERGE_LAYERS
56  }
57  //----- pole --------------------------------------------------------------------------------------------------------------------------------//
58  public final EventType type;
59  public final int layerId;
60  public final Object extra; // Moc spatna praktika, ale podstatne usnadni vyvoj
61  //----- acesory a primitivní metody ---------------------------------------------------------------------------------------------------------//
62  //----- konstruktory ------------------------------------------------------------------------------------------------------------------------//
64  this.type = type;
65  this.layerId = layerId;
66  this.extra = null;
67  }
68 
70  this.type = type;
71  this.layerId = layerId;
72  this.extra = extra;
73  }
74  //----- destruktory -------------------------------------------------------------------------------------------------------------------------//
75  //----- metody ------------------------------------------------------------------------------------------------------------------------------//
76 
77  //===================================================================================================================================================//
78  //===== NON-PUBLIC ==========================================================================================================================//
79  //----- interface a třídy -------------------------------------------------------------------------------------------------------------------//
80  //----- pole --------------------------------------------------------------------------------------------------------------------------------//
81  //----- acesory a primitivní metody ---------------------------------------------------------------------------------------------------------//
82  //----- konstruktory ------------------------------------------------------------------------------------------------------------------------//
83  //----- destruktory -------------------------------------------------------------------------------------------------------------------------//
84  //----- metody ------------------------------------------------------------------------------------------------------------------------------//
85 
86  //===================================================================================================================================================//
87  //===== DEPRECATED ==========================================================================================================================//
88 }