Example usage for org.apache.wicket.resource.loader IStringResourceLoader interface-usage

List of usage examples for org.apache.wicket.resource.loader IStringResourceLoader interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.resource.loader IStringResourceLoader interface-usage.

Usage

From source file ch.bd.qv.quiz.SimplePropertyResourceLoader.java

/**
 *
 * load properties from property files without any path structure
 * @author thierry
 */
public class SimplePropertyResourceLoader implements IStringResourceLoader {

From source file com.evolveum.midpoint.web.util.MidPointStringResourceLoader.java

/**
 * Created by Viliam Repan (lazyman).
 */
public class MidPointStringResourceLoader implements IStringResourceLoader {

    private LocalizationService resourceLoader;

From source file com.evolveum.midpoint.web.util.Utf8BundleStringResourceLoader.java

/**
 * @author Viliam Repan (lazyman)
 */
public class Utf8BundleStringResourceLoader implements IStringResourceLoader {

    private final String bundleName;

From source file name.martingeisse.admin.application.wicket.PrefixedIdentityStringResourceLoader.java

/**
 * This implementation of {@link IStringResourceLoader} uses a fixed
 * prefix. If any key string begins with that prefix, this loader
 * returns the remainder of the string as the value for that key.
 * 
 * This class is typically used to turn missing text properties

From source file name.martingeisse.webeco.SpecialStringResourceLoader.java

/**
 * Specialized {@link IStringResourceLoader} for strings that must be determined
 * programmatically, such as URL paths containing revision numbers.
 */
public class SpecialStringResourceLoader implements IStringResourceLoader {

From source file nl.knaw.dans.common.wicket.DebugStringResourceLoader.java

/**
 *
 * Example usage in the wicket application init()
 * With the effect that every string resource not for Locale.ENGLISH will be surrounded by {}
 * This us useful for testing if strings are loaded on a Locale settings change for the application
 * while having the 'normal' strings for a 'standard' locale

From source file org.apache.openmeetings.web.app.LabelResourceLoader.java

/**
 * Map property values to OpenMeetings labelid's and get the string
 * 
 * @author swagner
 *
 */

From source file org.geoserver.web.GeoServerStringResourceLoader.java

/**
 * A custom localizer, heavily inspired by {@link ComponentStringResourceLoader},
 * which considers two peculiarities of the GeoServer i18n subsystem:
 * <ul>
 *   <li>All resources are loaded in GeoServer*.properties files located in the root of each jar</li>
 *   <li>Component resources are qualified by component or by page name</li>

From source file org.jabylon.rest.ui.model.OSGiAwareBundleStringResourceLoader.java

public class OSGiAwareBundleStringResourceLoader implements IStringResourceLoader {

    private final BundleContext context;
    private LoadingCache<Integer, ClassLoader> cache;
    private Logger logger = LoggerFactory.getLogger(OSGiAwareBundleStringResourceLoader.class);
    /**

From source file org.sakaiproject.gradebookng.framework.GradebookNgStringResourceLoader.java

/**
 * IStringResourceLoader that plugs into sakai's resource loader.
 */
public class GradebookNgStringResourceLoader implements IStringResourceLoader {

    private ResourceLoader loader = new ResourceLoader("org.sakaiproject.gradebookng.GradebookNgApplication");