You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ResourceManager.java 142B

12345678
  1. package testing;
  2. public class ResourceManager {
  3. public Resource lookupResource(String resourceId){
  4. return new Resource(resourceId);
  5. }
  6. }