The following document contains the results of PMD's CPD 5.2.1.
| File | Line |
|---|---|
| org/oxerr/huobi/fix/fix44/AccountInfoRequest.java | 19 |
| org/oxerr/huobi/fix/fix44/AccountInfoResponse.java | 24 |
public AccountInfoRequest() {
getHeader().setField(new MsgType(MSGTYPE));
}
public void set(Account value) {
setField(value);
}
public Account get(Account value) throws FieldNotFound {
getField(value);
return value;
}
public Account getAccount() throws FieldNotFound {
Account value = new Account();
getField(value);
return value;
}
public boolean isSet(Account field) {
return isSetField(field);
}
public boolean isSetAccount() {
return isSetField(Account.FIELD);
}
public void set(AccReqID value) {
setField(value);
}
public AccReqID get(AccReqID value) throws FieldNotFound {
getField(value);
return value;
}
public AccReqID getAccReqID() throws FieldNotFound {
AccReqID value = new AccReqID();
getField(value);
return value;
}
public boolean isSet(AccReqID field) {
return isSetField(field);
}
public boolean isSetAccReqID() {
return isSetField(AccReqID.FIELD);
}
public void set(Symbol value) { | |