Replies: 2 comments
-
I can't answer it 100% because you didn't give enough information. There is no guarantee that ContextImpl will still be available in future versions. Therefore, use it at your own risk. ;-) Therefore, the best solution is to implement Context yourself. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks for the quick response. I was a bit confused by the comment in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm currently updating JXLS from version 2 to version 3 in one of my projects.
The migration guide states that Map<String, Object> replaces Context. For most of my usages this change was easy to implement.
But one of my use cases also uses
XlsArea
and callspublic Size applyAt(CellRef cellRef, Context context
on it.I wonder what's the best approach to create a context object for the usage with this API?
Is it fine to use
new ContextImpl()
for now?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions