public static ORSResourceOvermanager getResourceOvermanagerForResource(String resource_name)
        {
            ORSResourceOvermanager fnro;

            if (!resources_managers.TryGetValue(resource_name, out fnro))
            {
                fnro = new ORSResourceOvermanager(resource_name);
                resources_managers.Add(resource_name, fnro);
            }

            return(fnro);
        }
Exemplo n.º 2
0
 protected virtual ORSResourceOvermanager getOvermanagerForResource(string resourcename)
 {
     return(ORSResourceOvermanager.getResourceOvermanagerForResource(resourcename));
 }