View Javadoc

1   package fr.ove.openmath.jome.ctrl.amto;
2   
3   import fr.ove.utils.CachingResourcesManager;
4   
5   /***
6   *
7   * @author © 1999 DIRAT Laurent
8   * @version 1.0  30/09/99
9   */
10  public class AMTO_ResourcesManager extends CachingResourcesManager {
11      /***
12      * The Constructor.
13      * @param resourcesName the name of the resources file.
14      */
15      public AMTO_ResourcesManager (String resourcesName) {
16          super(resourcesName);
17      }
18      
19      /***
20      * Returns the class name corresponding to the specified property.
21      * @param property the specified property
22      */
23      public String getClassName(String property) {
24          return accessResource(property, 0);
25      }    
26  }