-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPresentation.mdepth
More file actions
46 lines (36 loc) · 823 Bytes
/
Presentation.mdepth
File metadata and controls
46 lines (36 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
load "Component"
Model Presentation imports Component {
Node Presentation {
activityname : String;
layout : LayoutDesc[1];
}
Node LayoutDesc {
name : String;
layoutType : LayoutType[1];
}
// e.g. LinearLayout
Node LayoutType : Layout {
name : String;
namespace : String="http://schemas.android.com/apk/res/android";
orientation : String;
width : String="fill_parent";
height : String="fill_parent";
children : Layout@0[*];
}
Node Button : LayoutComponent { }
Node EditText : LayoutComponent {
requestFocus : boolean;
}
Node TextView : LayoutComponent { }
Node ScrollView : Layout {
width : String;
height : String;
weight : String;
components : Layout@0[*];
}
Node ListView : Layout {
width : String;
height : String;
weight : String;
}
}