@@ -45,17 +45,28 @@ While Volume I focused on the core infrastructure and backend systems, **Volume
4545
4646``` text
4747exploring-java-libraries-2/
48- ├── assets/ # Book cover, UI screenshots, and diagrams
49- ├── examples/ # Isolated code snippets categorized by package
50- │ ├── ch01_text/ # java.text examples (DateFormat, MessageFormat)
51- │ ├── ch02_awt/ # Graphics2D, Layouts, and AWT components
52- │ ├── ch03_swing/ # JTables, JTrees, Custom Models, and Events
53- │ └── ch04_access/ # AccessibleContext implementations
54- ├── projects/ # Complete, runable GUI mini-applications
55- ├── docs/ # Additional setup notes and UI guidelines
56- ├── .gitignore # Java compilation exclusions
57- ├── LICENSE # MIT License details
58- └── README.md # This documentation
48+ ├── assets/
49+ │ └── Cover-2.jpg # Official book cover used in README and repository preview
50+ ├── examples/ # Production-oriented Java examples aligned with book chapters
51+ │
52+ │ ├── 6-java-text/
53+ │ │ ├── a1_TextExample.java # Comprehensive text processing (formatting, parsing, i18n)
54+ │ │ └── a5_NumberFormatExample.java # Locale-aware number, currency, percentage formatting
55+ │
56+ │ ├── 7-java-awt/
57+ │ │ ├── b12_ButtonExample.java # Core AWT component usage with event handling
58+ │ │ └── b52_BufferedImageOpExample.java # Advanced graphics processing and image transformations
59+ │ ├── 8-java-swing/
60+ │ │ ├── b14_JLabelExample.java # Swing UI fundamentals (labels, icons, alignment)
61+ │ │ └── c101_ElementExample.java # Swing text model and document structure
62+ │ └── 9-java-accessibility/
63+ │ ├── a4_AccessibleExtendedComponentExample.java # Advanced accessibility integration
64+ │ └── a8_AccessibleTextExample.java # Text navigation and assistive technology support
65+ ├── notes/
66+ │ └── chapter-index.md # Full chapter breakdown and reference index
67+ ├── .gitignore # Standard Java exclusions (classes, IDE files, etc.)
68+ ├── LICENSE # MIT License (open usage with attribution)
69+ └── README.md # Main repository documentation
5970```
6071
6172---
0 commit comments