Suppose i have a class that implements an interface, the interface is not implementing anything currently. This class and interface are bundled together in the same java program. So i have another program, and through a dependency i want to get that information from that class i spoke of in the first program. How would i set up my interfaces to do this? Currently i have that class just implementing both it's local interface, and my other one on the second program. Is this correct. so that i could have a class in the second program pull out that information? or am i miss/doing something wrong.
Thanks