90 lines
2.4 KiB
Java
90 lines
2.4 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.util;
|
|
|
|
import javax.baja.sys.BStruct;
|
|
import javax.baja.sys.Property;
|
|
import javax.baja.sys.Sys;
|
|
import javax.baja.sys.Type;
|
|
|
|
/*
|
|
* Illegal identifiers - consider using --renameillegalidents true
|
|
*/
|
|
public class BStreetAddress
|
|
extends BStruct {
|
|
public static final Property address1 = BStreetAddress.newProperty(0, "", null);
|
|
public static final Property address2 = BStreetAddress.newProperty(0, "", null);
|
|
public static final Property city = BStreetAddress.newProperty(0, "", null);
|
|
public static final Property state = BStreetAddress.newProperty(0, "", null);
|
|
public static final Property zip = BStreetAddress.newProperty(0, "", null);
|
|
public static final Type TYPE;
|
|
static /* synthetic */ Class class$javax$baja$util$BStreetAddress;
|
|
|
|
public String getAddress1() {
|
|
return this.getString(address1);
|
|
}
|
|
|
|
public void setAddress1(String string) {
|
|
this.setString(address1, string, null);
|
|
}
|
|
|
|
public String getAddress2() {
|
|
return this.getString(address2);
|
|
}
|
|
|
|
public void setAddress2(String string) {
|
|
this.setString(address2, string, null);
|
|
}
|
|
|
|
public String getCity() {
|
|
return this.getString(city);
|
|
}
|
|
|
|
public void setCity(String string) {
|
|
this.setString(city, string, null);
|
|
}
|
|
|
|
public String getState() {
|
|
return this.getString(state);
|
|
}
|
|
|
|
public void setState(String string) {
|
|
this.setString(state, string, null);
|
|
}
|
|
|
|
public String getZip() {
|
|
return this.getString(zip);
|
|
}
|
|
|
|
public void setZip(String string) {
|
|
this.setString(zip, string, null);
|
|
}
|
|
|
|
public Type getType() {
|
|
return TYPE;
|
|
}
|
|
|
|
static /* synthetic */ Class class(String string, boolean bl) {
|
|
try {
|
|
Class<?> clazz = Class.forName(string);
|
|
if (!bl) {
|
|
clazz = clazz.getComponentType();
|
|
}
|
|
return clazz;
|
|
}
|
|
catch (ClassNotFoundException classNotFoundException) {
|
|
throw new NoClassDefFoundError(classNotFoundException.getMessage());
|
|
}
|
|
}
|
|
|
|
static {
|
|
Class clazz = class$javax$baja$util$BStreetAddress;
|
|
if (clazz == null) {
|
|
clazz = class$javax$baja$util$BStreetAddress = BStreetAddress.class("[Ljavax.baja.util.BStreetAddress;", false);
|
|
}
|
|
TYPE = Sys.loadType(clazz);
|
|
}
|
|
}
|
|
|