Skip to content

Latest commit

 

History

History
71 lines (40 loc) · 2.94 KB

File metadata and controls

71 lines (40 loc) · 2.94 KB

icon

Generate All Getter And Setter

中文文档

Build Version Downloads

Generate All Getter And Setter is an IntelliJ IDEA plugin that generates all getter and setter methods for POJO use postfix completion like .var.

Installation

  • Using IDE built-in plugin system:

    Settings/Preferences > Plugins > Marketplace > Search for "Generate All Getter And Setter" > Install Plugin

  • Manually:

    Download the latest release and install it manually using Settings/Preferences > Plugins > ⚙️ > Install plugin from disk...

Usage

  • Use .allget to generate all getter methods for POJO.

example-allget

  • Use .allset to generate all setter methods without default value for POJO.

example-allset

  • Use .allsetv to generate all setter methods with default value for POJO.

example-allsetv

  • Use .allsetc to generate all setter methods with chain style for POJO.

example-allsetc

  • Use .allsetcv to generate all setter methods with default value and chain style for POJO.

example-allsetcv

Special Thanks