blob: 8c513602476ed0dc2fea61f2ca13fbb1e273ca8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
JCalendar
This package provides a Calendar component for use in Java programs.
This program is free software; you can redistribute it and/or modify
it under the terms of the Artistic License. You should have received a
copy of the Artistic License along with this program (in file
License.txt). If not, a copy is available at
http://opensource.org/licenses/artistic-license.php
To build it you'll need Ant. I used version 1.6.2. Use
ant all
This will create build/jcalendar.jar. To create the API documentation, use
ant javadoc
To view all the documentation, view doc/index.html.
There is a tutorial in doc/tutorial.html. There are also two sample
Java program that uses the JCalendar package. You can build and run
these programs with
ant runExample1
ant runExample2
|