33 lines
653 B
Java
33 lines
653 B
Java
package org.simpleframework.xml.strategy;
|
|
|
|
/* loaded from: classes6.dex */
|
|
class Contract {
|
|
private String label;
|
|
private String length;
|
|
private String mark;
|
|
private String refer;
|
|
|
|
public Contract(String str, String str2, String str3, String str4) {
|
|
this.length = str4;
|
|
this.label = str3;
|
|
this.refer = str2;
|
|
this.mark = str;
|
|
}
|
|
|
|
public String getReference() {
|
|
return this.refer;
|
|
}
|
|
|
|
public String getLength() {
|
|
return this.length;
|
|
}
|
|
|
|
public String getLabel() {
|
|
return this.label;
|
|
}
|
|
|
|
public String getIdentity() {
|
|
return this.mark;
|
|
}
|
|
}
|