Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/runeflobakk/clic
Tiny framework for bootstrapping standalone Java applications.
https://github.com/runeflobakk/clic
Last synced: 6 days ago
JSON representation
Tiny framework for bootstrapping standalone Java applications.
- Host: GitHub
- URL: https://github.com/runeflobakk/clic
- Owner: runeflobakk
- Created: 2011-01-24T21:41:55.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-02-04T22:13:42.000Z (almost 14 years ago)
- Last Synced: 2023-03-11T01:33:37.377Z (almost 2 years ago)
- Language: Java
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
Awesome Lists containing this project
README
h1. CLIC
*Command Line Interface Controller*
CLIC is a tiny framework for bootstrapping a standalone Java application.
It provides an abstraction for the well-known @public static void main(String[] arguments)@,
enabling the use of classical Service objects as entry points for program
execution. As well as taking some of the burden off the handling of the arguments String array,
it motivates a more testable approach to interpreting program arguments and delegating to appropriate
business logic, which is often done in the actual @static void main@ method.