ChildRelnInfo.java
1.07 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.ChildReln;
public final class ChildRelnInfo {
private final int mDescriptionResID;
private final int mnVersionIntro;
private final int mnVersionDep;
private final int mnAvailability;
private final ChildReln mRelationship;
public ChildRelnInfo(ChildReln relationship, int nVersionIntro, int nVersionDep, int nAvailability, int descriptionResID) {
this.mDescriptionResID = descriptionResID;
this.mnVersionIntro = nVersionIntro;
this.mnVersionDep = nVersionDep;
this.mnAvailability = nAvailability;
this.mRelationship = relationship;
}
public int getDescription() {
return this.mDescriptionResID;
}
public int getVersionIntroduced() {
return this.mnVersionIntro;
}
public int getVersionDeprecated() {
return this.mnVersionDep;
}
public int getAvailability() {
return this.mnAvailability;
}
public ChildReln getRelationship() {
return this.mRelationship;
}
}