Created
June 1, 2015 05:50
-
-
Save MasazI/cb20db04ff273f73a9e1 to your computer and use it in GitHub Desktop.
lombok_@Data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.masazdream.ds; | |
import lombok.Data; | |
/** | |
* Lombokのサンプルクラス | |
* | |
* @author masai | |
* | |
*/ | |
@Data | |
public class Lombok { | |
private String mA; | |
private String mB; | |
Lombok(String a, String b){ | |
mA = a; | |
mB = b; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment