Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package Whatever;
  2. //All of my imports...
  3. public static String replaceVar = "This variable in this class needs to be replaced from the other class before being compiled into a .jar on the users C drive!";
  4. public class StubClass {
  5. public static void main(String[] args) {
  6. System.out.println(replaceVar);
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement