Interface WrapableLocalization<T,C>
- Type Parameters:
T
- the type of the current wrapper objectC
- the type of the context object with extra data about the individual localization parts.
- All Superinterfaces:
Serializable
Localization composed of multiple "parts", which can be "wrapped" to some other object.
Clients of the interface may chain more "wrappings" with the
wrap(com.evolveum.midpoint.model.api.visualizer.localization.LocalizationPartsWrapper<? super T, C, ? extends R>)
method. When all the wrappings are set,
the combineParts(Collector)
or the combineParts(Object, LocalizationPartsCombiner)
methods could
be used to specify the combination function, which will "combine" all localization together after their translation.
Implementations of this interface should implement all methods in a "lazy fashion". That means, the underlying
"parts" should not be manipulated in any way. They should be only "prepared" for the actual "manipulation"
(wrapping, combining), which may eventually happen upon the method calls on returned LocalizableObject
.-
Method Summary
Modifier and TypeMethodDescription<R> LocalizableObject<R>
combineParts
(Collector<? super T, ?, R> collector) Combine individual localization parts together to form a single localization object which can be translated.<R> LocalizableObject<R>
combineParts
(R accumulator, LocalizationPartsCombiner<? super T, R> combiner) Combine individual localization parts together to form a single localization object which can be translated.static <C> WrapableLocalization<String,
C> of
(LocalizationPart<C>... parts) Convenient factory method to create new instance of theWrapableLocalization
<R> WrapableLocalization<R,
C> wrap
(LocalizationPartsWrapper<? super T, C, ? extends R> wrapper) Wrap (potentially already wrapped) localization parts to another wrapper object.
-
Method Details
-
combineParts
<R> LocalizableObject<R> combineParts(R accumulator, LocalizationPartsCombiner<? super T, R> combiner) Combine individual localization parts together to form a single localization object which can be translated. Combination of localization parts does not happen immediately after the method call, but it will eventually happen during manipulation with resultingLocalizableObject
.- Type Parameters:
R
- the type of the localization parts container.- Parameters:
accumulator
- the mutable "container" which can hold individual localization parts. Depending on the combiner, it (the combiner) may or may not return the same instance.combiner
- the mutable reduction function, which should combine previously combined parts with another part.- Returns:
- the localization object, which contains results container with all accumulated localization parts.
-
combineParts
Combine individual localization parts together to form a single localization object which can be translated. Combination of localization parts does not happen immediately after the method call, but it will eventually happen during manipulation with resultingLocalizableObject
. Main difference from thecombineParts(Object, LocalizationPartsCombiner)
is that thanks to theCollector
's "finisher", the type of final result is not tight to the intermediate mutable container used to accumulate all the parts. This allows to e.g. use collector, which internally collects all parts (e.g. Strings) to a StringBuilder, but the final result will be String.- Type Parameters:
R
- the type of the collecting result.- Parameters:
collector
- the instance ofCollector
, which implement the desired mutable reduction function.- Returns:
- the localization object, which contains the result of the collecting using the provided collector.
-
wrap
Wrap (potentially already wrapped) localization parts to another wrapper object. This method can be used to wrap localization parts to another "wrapper" objects using the supplied ". Supplied {@code wrapper) parameter is nothing else than a set of functions which wraps individual "types" of localization parts. There are several types of localization parts. The wrapper has to implement function to wrap each of the localization part, regardless of its actual presence. This is one of the unpleasant limitation of the API. @param wrapper the implementation of wrapping function of each possible localization part type. @return another instance of the {@code WrapableLocalization} with set wrapping functions. @param <R> the type of the wrapping object. -
of
Convenient factory method to create new instance of theWrapableLocalization
- Type Parameters:
C
- the type of the context object with extra data about the individual localization parts.- Parameters:
parts
- the individual localization parts.- Returns:
- new instance of the
WrapableLocalization
-