Breakpoint.java
1.38 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.aemds.guide.themes;
import com.adobe.aemds.guide.themes.Selector;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public class Breakpoint {
private final String name;
private final Integer max;
private boolean defaultBreakPoint = false;
private final List<Selector> selectors;
public Breakpoint(String pName, Integer pMax, List<Selector> pSelectors) {
this.name = pName;
this.max = pMax;
this.selectors = new ArrayList<Selector>();
if (pSelectors != null) {
this.selectors.addAll(pSelectors);
}
}
public Breakpoint(String pName, Integer pMax) {
this(pName, pMax, null);
}
public String getName() {
return this.name;
}
public Integer getMax() {
return this.max;
}
public boolean isDefaultBreakPoint() {
return this.defaultBreakPoint;
}
public void setDefaultBreakPoint(boolean defaultBreakPoint) {
this.defaultBreakPoint = defaultBreakPoint;
}
public List<Selector> getSelectors() {
return this.selectors;
}
public void addSelector(Selector selector) {
if (selector != null) {
this.selectors.add(selector);
}
}
}