Examples of IStringResourceLoader


Examples of org.apache.wicket.resource.loader.IStringResourceLoader

    {
      private static final long serialVersionUID = 1L;
    };
    DummyPage page = new DummyPage();
    page.add(c);
    IStringResourceLoader loader = new ComponentStringResourceLoader();
    assertNull("Missing resource should return null", loader.loadStringResource(c.getClass(),
      "test.string.bad", Locale.getDefault(), null, null));
  }
View Full Code Here

Examples of org.apache.wicket.resource.loader.IStringResourceLoader

    DummyPage p = new DummyPage();
    Panel panel = new EmptyPanel("panel");
    p.add(panel);
    DummyComponent c = new DummyComponent("hello", tester.getApplication());
    panel.add(c);
    IStringResourceLoader loader = new ComponentStringResourceLoader();
    assertEquals("Valid resourse string should be found", "Component string",
      loader.loadStringResource(c.getClass(), "component.string", Locale.getDefault(), null,
        null));
  }
View Full Code Here

Examples of org.apache.wicket.resource.loader.IStringResourceLoader

   */
  @Test
  public void loadDirectFromPage()
  {
    DummyPage p = new DummyPage();
    IStringResourceLoader loader = new ComponentStringResourceLoader();
    assertEquals("Valid resourse string should be found", "Another string",
      loader.loadStringResource(p.getClass(), "another.test.string", Locale.getDefault(),
        null, null));
  }
View Full Code Here

Examples of org.apache.wicket.resource.loader.IStringResourceLoader

   */
  @Test
  public void searchClassHierarchyFromPage()
  {
    DummySubClassPage p = new DummySubClassPage();
    IStringResourceLoader loader = new ComponentStringResourceLoader();
    assertEquals("Valid resource string should be found", "SubClass Test String",
      loader.loadStringResource(p.getClass(), "subclass.test.string", Locale.getDefault(),
        null, null));
    assertEquals("Valid resource string should be found", "Another string",
      loader.loadStringResource(p.getClass(), "another.test.string", Locale.getDefault(),
        null, null));
  }
View Full Code Here

Examples of org.apache.wicket.resource.loader.IStringResourceLoader

   */
  @Override
  @Test
  public void loaderUnknownResources()
  {
    IStringResourceLoader loader = new BundleStringResourceLoader("unknown.resource");
    assertNull("Unknown resource should return null", loader.loadStringResource(
      component.getClass(), "test.string", Locale.getDefault(), null, null));
  }
View Full Code Here

Examples of org.apache.wicket.resource.loader.IStringResourceLoader

      // Iterate over all registered string resource loaders until the property has been found
      Iterator<IStringResourceLoader> iter = getStringResourceLoaders().iterator();
      value = null;
      while (iter.hasNext() && (value == null))
      {
        IStringResourceLoader loader = iter.next();
        value = loader.loadStringResource(component, key, locale, style, variation);
      }

      // Cache the result incl null if not found
      if (cacheKey != null)
      {
View Full Code Here

Examples of org.apache.wicket.resource.loader.IStringResourceLoader

      // property has been found

      Iterator iter = resourceSettings.getStringResourceLoaders().iterator();
      while (iter.hasNext())
      {
        IStringResourceLoader loader = (IStringResourceLoader)iter.next();
        string = loader.loadStringResource(component, key);
        if (string != null)
        {
          break;
        }
      }
View Full Code Here

Examples of org.apache.wicket.resource.loader.IStringResourceLoader

      Iterator<IStringResourceLoader> iter = resourceSettings.getStringResourceLoaders()
        .iterator();
      while (iter.hasNext())
      {
        IStringResourceLoader loader = iter.next();
        string = loader.loadStringResource(component, key);
        if (string != null)
        {
          break;
        }
      }
View Full Code Here

Examples of org.apache.wicket.resource.loader.IStringResourceLoader

      // property has been found

      Iterator iter = resourceSettings.getStringResourceLoaders().iterator();
      while (iter.hasNext())
      {
        IStringResourceLoader loader = (IStringResourceLoader)iter.next();
        string = loader.loadStringResource(component, key);
        if (string != null)
        {
          break;
        }
      }
View Full Code Here

Examples of org.apache.wicket.resource.loader.IStringResourceLoader

    String string = null;
   
    Iterator iter = Application.get().getResourceSettings().getStringResourceLoaders().iterator();
    while (iter.hasNext())
    {
      IStringResourceLoader loader = (IStringResourceLoader)iter.next();
      string = loader.loadStringResource(component, key);
      if (string != null)
      {
        break;
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.