The `fills` here is a sequence type, which cannot do `fills.setElement()` directly. Instead, one should obtain a fill first, by `Element fill = fills.appendElement();` then, apply `fill.setElement(...)`. https://github.com/tkim/emsx_api_repository/blob/67c2191f758ed0d4b437c67c9cbf3f37f2b7a459/EMSXFullSet_Java/ManualFill.java#L165
The
fillshere is a sequence type, which cannot dofills.setElement()directly.Instead, one should obtain a fill first, by
Element fill = fills.appendElement();then, apply
fill.setElement(...).emsx_api_repository/EMSXFullSet_Java/ManualFill.java
Line 165 in 67c2191