mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-13 21:20:56 +00:00
* Initial Eiffel Client code generator TODO API and Domain model * Updated EiffelClientCodegen to support Eiffel code style. Added mustaches templates for models and apis. The last one still under development. * Updated templates, initial API generation. Added client request template. * Updated api.mustache style * Updated code generation with a new directory layout. Added test case generation, clean code. * Updated Code generator, added apidoc and modeldoc Updated readme file * Added a Basic JSON Deserializer Updated API client to support by default a basic json (de)serializer and let the user customize then if needed. * Updated Eiffel code generator to use Eiffel feature name style. Updated templates to follow Eiffel style. Improved feature descriptions. * Added model inheritance support. Removed unused code. * Updated Eiffel code templates, refactor remove obsolte feature calls. Added Eiffel sample in samples/client/petstore/eiffel. * Updated Java code style. * Fixed formating, using spaces instead of tabs. * Updated EiffelCodeGenarator typeMapping. Added TestCases for EfiffelClientOption and ModelTest cases. Updated sample code to use the lastest changes. * Restore keyword `nil' in Go Language.
22 lines
247 B
Plaintext
22 lines
247 B
Plaintext
note
|
|
description: "test application root class"
|
|
date: "$Date$"
|
|
revision: "$Revision$"
|
|
|
|
class
|
|
APPLICATION
|
|
|
|
inherit
|
|
ARGUMENTS
|
|
|
|
create
|
|
make
|
|
|
|
feature {NONE} -- Initialization
|
|
|
|
make
|
|
-- Run application.
|
|
do
|
|
-- add your code here.
|
|
end
|
|
end |