Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Engine
-
Labels:None
Description
Right now, it is:
public Group(int field, int delim) {
this(field, delim, new int[] { delim });
}
But I think it should get the order info from the Dictionary to make more sense based on the spec. Thanks.
public Group(int field, int delim) {
this(field, delim, new int[] { delim });
}
But I think it should get the order info from the Dictionary to make more sense based on the spec. Thanks.
Is http://www.quickfixj.org/quickfixj/javadoc/quickfix/MessageFactory.html#create(java.lang.String,%20java.lang.String,%20int) what you're after?
Group is a basic building block - it doesn't know about Dictionary.