I wrote a program in Java 6.0, but it turns out that some of our client only have 5.0.
The issues is that lot of features that 6.0 has was not in 5.0 yet. For example:
- JTable Sorting, Filtering feature
- SwingWorker class
My Question is :
- is it legal to just copy the java 6.0 source code to my own project so that my client with 5.0 jre can run it.
- from technical point of view, is it hard to copy the classes source code like TableRowSorter, regexFilter to my own project and let it work?
Thanks