1 package com.simpligility.maven.plugins.android.standalonemojos;
2
3
4
5
6 public class SupportsScreens
7 {
8
9 private String resizeable;
10 private String smallScreens, normalScreens, largeScreens, xlargeScreens;
11 private String anyDensity;
12 private String requiresSmallestWidthDp;
13 private String compatibleWidthLimitDp;
14 private String largestWidthLimitDp;
15
16 public String getResizeable()
17 {
18 return resizeable;
19 }
20
21 public void setResizeable( String resizable )
22 {
23 this.resizeable = resizable;
24 }
25
26 public String getSmallScreens()
27 {
28 return smallScreens;
29 }
30
31 public void setSmallScreens( String smallScreens )
32 {
33 this.smallScreens = smallScreens;
34 }
35
36 public String getNormalScreens()
37 {
38 return normalScreens;
39 }
40
41 public void setNormalScreens( String normalScreens )
42 {
43 this.normalScreens = normalScreens;
44 }
45
46 public String getLargeScreens()
47 {
48 return largeScreens;
49 }
50
51 public void setLargeScreens( String largeScreens )
52 {
53 this.largeScreens = largeScreens;
54 }
55
56 public String getXlargeScreens()
57 {
58 return xlargeScreens;
59 }
60
61 public void setXlargeScreens( String xlargeScreens )
62 {
63 this.xlargeScreens = xlargeScreens;
64 }
65
66 public String getAnyDensity()
67 {
68 return anyDensity;
69 }
70
71 public void setAnyDensity( String anyDensity )
72 {
73 this.anyDensity = anyDensity;
74 }
75
76 public String getRequiresSmallestWidthDp()
77 {
78 return requiresSmallestWidthDp;
79 }
80
81 public void setRequiresSmallestWidthDp( String requiresSmallestWidthDp )
82 {
83 this.requiresSmallestWidthDp = requiresSmallestWidthDp;
84 }
85
86 public String getCompatibleWidthLimitDp()
87 {
88 return compatibleWidthLimitDp;
89 }
90
91 public void setCompatibleWidthLimitDp( String compatibleWidthLimitDp )
92 {
93 this.compatibleWidthLimitDp = compatibleWidthLimitDp;
94 }
95
96 public String getLargestWidthLimitDp()
97 {
98 return largestWidthLimitDp;
99 }
100
101 public void setLargestWidthLimitDp( String largestWidthLimitDp )
102 {
103 this.largestWidthLimitDp = largestWidthLimitDp;
104 }
105
106 }