Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. ------------------------------------
  2. package com.bookstore; //under module A
  3. class Book
  4. {
  5. public static int id =1;
  6. }
  7. -------------------------------------
  8.  
  9. package com.bookstore; // under module B
  10. class Employee
  11. {
  12. Book book = new Book();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement