MoinMoin Logo
  • Comments
  • Immutable Page
  • Menu
    • Navigation
    • RecentChanges
    • FindPage
    • Local Site Map
    • Help
    • HelpContents
    • HelpOnMoinWikiSyntax
    • Display
    • Attachments
    • Info
    • Raw Text
    • Print View
    • Edit
    • Load
    • Save
  • Login

Navigation

  • Start
  • Sitemap

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

  • Java
  • Lombok

Lombok

  • http://central.maven.org/maven2/org/projectlombok/lombok/1.16.20/lombok-1.16.20.jar

  • java -jar lombok-1.16.20.jar
  • Install in Eclipse folder
  • Add the lombok-1.16.20.jar to all projects

   1 <dependency>
   2   <groupId>org.projectlombok</groupId>
   3   <artifactId>lombok</artifactId>
   4   <scope>provided</scope>
   5 </dependency>

   1 import lombok.AllArgsConstructor;
   2 import lombok.Getter;
   3 import lombok.NonNull;
   4 import lombok.Setter;
   5 
   6 @Getter
   7 @Setter
   8 // generate getters and setters
   9 @AllArgsConstructor
  10 // requires construtor for all args
  11 @NoArgsConstructor
  12 // construtor with no args
  13 @NonNull
  14 // null value not allowed to member
  15 
  • MoinMoin Powered
  • Python Powered
  • GPL licensed
  • Valid HTML 4.01