Created
July 9, 2015 21:40
-
-
Save bmchild/ab216be2ecf68b0677af to your computer and use it in GitHub Desktop.
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 interface Employable { | |
String MY_CONSTANT = "value" | |
} | |
public class MyClass { | |
private String theConstant = Employable.MY_CONSTANT; | |
} |
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 MyConstants { | |
public static final String MY_CONSTANT = "a value"; | |
} | |
public class MyClass { | |
private String theConstant = MyConstants.MY_CONSTANT; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment