Created
September 20, 2011 07:31
-
-
Save eoftedal/1228563 to your computer and use it in GitHub Desktop.
Simple java class with public final field instead of getter
This file contains 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
public class Person { | |
public final String navn; | |
public Person(String navn) { | |
this.navn = navn; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment