Is there any free datepicker exist for java in swing. I look through the following pickers such as jdatepicker jxdatepicker and Jcalendar. But all are licensed under BSD, LGPL and LGPL respectively.
Asked
Active
Viewed 380 times
-1
-
2Why do you say that BSD and LGPL aren't open source? – StackExchange What The Heck Dec 30 '14 at 09:46
-
If I take open source library under LGPL licence and when I integrate it in my project,and i sell it in the market then I have to distribute my code to open source community If i don't change any library code then also i have to distribute my code...right – Fila Dec 30 '14 at 11:07
-
Open Source means the code is available for anyone to see. Do you mean that you want free code that can be made proprietary legally? – StackExchange What The Heck Dec 30 '14 at 11:09
-
yea..I want the free code to create the date picker in java swing. – Fila Dec 30 '14 at 11:12
-
1It seems like you do not completely understand how open source libraries' licences affects your work's license. Including open source library components doesn't necessarily mean you have to open source your code as well. – juanheyns Jan 28 '15 at 12:27
1 Answers
2
From the sounds of it you are looking for free code that can legally be taken closed-source, NOT specifically open source code.
Open source means just that - the source is open. It doesn't explicitly mean it can't be made closed source. The licence of the software specifies what can be done with the software in question. The GPL, for example, requires that derivative code must be open source.
As it happens, the LGPL licence - also known as the "lesser" GPL - is one of the licences that allows code under its licence to be released commercially without requiring that its derivatives are made open source as well. Similarly, the BSD licence also permits closed-sourced derivatives
More reading:

Community
- 1
- 1

StackExchange What The Heck
- 2,656
- 7
- 39
- 51