Package org.tentackle.wurblet
Class DTO
- java.lang.Object
-
- org.wurbelizer.wurblet.AbstractWurblet
-
- org.tentackle.wurblet.DTOWurblet
-
- org.tentackle.wurblet.DTO
-
- All Implemented Interfaces:
org.wurbelizer.wurblet.Wurblet
public class DTO extends DTOWurblet
(@wurblet) DTO creates code for a data transfer object.usage:
@wurblet <tag> DTO [--builder] [--bindable] <filename>arguments:
- --builder: option to generate code according to the builder pattern.
- --bindable: add @Bindable annotation to getter and setter (if not explicitly added via square brackets).
- filename: the file holding the DTO model.
AbstractWurblet.The model is usually stored in a heap-file such as ".$filename" created as a here-document within the leading comment block of the DTO-file.
Each line describes a property.
Example:String name the object's name int count the counter
If the line is prefixed with "^", the property is passed to the super entity within the constructor.
This option is ignored in builder pattern mode.
Example:^String name the name
If the line is prefixed with "=", the property is mutable and a setter is generated.
Example:=String name the name
The comment may contain optional annotations enclosed in square brackets.String name the name [@Bindable(MAXCOL=20)] [@MyAnno]
If the builder pattern is used and the class extends a superclass, the builder is created as an extension of the superclass'es builder.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.tentackle.wurblet.DTOWurblet
DTOWurblet.Property
-
-
Field Summary
-
Fields inherited from class org.tentackle.wurblet.DTOWurblet
extendsWithBuilder, filename, needConstructor, properties, withBindable, withBuilder
-
-
Constructor Summary
Constructors Constructor Description DTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrun()
-
-
-
Method Detail
-
run
public void run() throws org.wurbelizer.wurbel.WurbelException- Specified by:
runin interfaceorg.wurbelizer.wurblet.Wurblet- Overrides:
runin classDTOWurblet- Throws:
org.wurbelizer.wurbel.WurbelException
-
-