Package | Description |
---|---|
net.sf.mmm.client.ui.api.attribute |
Contains abstract interfaces for common attributes of UI objects.
|
net.sf.mmm.client.ui.api.widget |
Contains the API for widgets.
|
net.sf.mmm.client.ui.base.widget.factory |
Contains the API and default implementations of factories for widgets.
|
net.sf.mmm.client.ui.base.widget.field |
Contains the base implementation for field widgets.
|
net.sf.mmm.util.lang.api |
Provides the API for utilities of general purpose.
|
net.sf.mmm.util.lang.base |
Contains the basic implementation of the Util Lang API.
|
net.sf.mmm.util.nls.base |
Contains the basis for implementations of the native language support (NLS) API.
|
net.sf.mmm.util.nls.impl.formatter |
Contains the implementation of formatters for the native language support (NLS).
|
net.sf.mmm.util.version.api |
Provides the API for dealing with versions.
|
net.sf.mmm.util.version.impl |
Contains the implementation of the
Version API . |
Modifier and Type | Method and Description |
---|---|
Formatter<VALUE> |
AttributeReadFormatter.getFormatter()
This method gets the
Formatter of this object. |
Modifier and Type | Method and Description |
---|---|
void |
AttributeWriteFormatter.setFormatter(Formatter<VALUE> formatter)
This method sets the
formatter of this object. |
Modifier and Type | Method and Description |
---|---|
void |
UiWidgetOptionsBase.setFormatter(Formatter<VALUE> formatter)
This method sets the
formatter of this object. |
Modifier and Type | Field and Description |
---|---|
private Formatter<E> |
UiSingleWidgetFactoryDatatypeEnum.formatter |
Constructor and Description |
---|
UiSingleWidgetFactoryDatatypeEnum(Class<E> enumType,
Formatter<E> formatter)
The constructor.
|
Modifier and Type | Field and Description |
---|---|
private Formatter<VALUE> |
AbstractUiWidgetOptionsField.formatter |
Modifier and Type | Method and Description |
---|---|
Formatter<VALUE> |
AbstractUiWidgetOptionsField.getFormatter()
This method gets the
Formatter of this object. |
Modifier and Type | Method and Description |
---|---|
void |
AbstractUiWidgetOptionsField.setFormatter(Formatter<VALUE> formatter)
This method sets the
formatter of this object. |
Modifier and Type | Interface and Description |
---|---|
interface |
LocalizableFormatter<V>
This is the interface for a
Formatter that is localizable . |
Modifier and Type | Method and Description |
---|---|
Formatter<TYPE> |
EnumDefinition.getFormatter()
|
Modifier and Type | Method and Description |
---|---|
<E> String |
StringUtil.toSeparatedString(Collection<E> collection,
String separator,
StringSyntax syntax,
Formatter<E> formatter)
This method is like
StringUtil.toSeparatedString(Collection, String, StringSyntax) but allows to specify an explicit
Formatter to use instead of Object.toString() . |
<E> void |
StringUtil.toSeparatedString(Collection<E> collection,
String separator,
StringSyntax syntax,
Formatter<E> formatter,
Appendable buffer)
This method is like
StringUtil.toSeparatedString(Collection, String, StringSyntax) but allows to specify an explicit
Formatter to use instead of Object.toString() . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractFormatter<V>
This is the abstract base implementation of the
Formatter interface. |
class |
AbstractLocalizableFormatter<V>
This is the abstract base implementation of the
LocalizableFormatter interface. |
class |
BooleanFormatter
|
class |
ComposedFormatter<V>
|
class |
ComposedLocalizableFormatter<V>
This is the implementation of a
LocalizableFormatter that is composed out of other
LocalizableFormatter s. |
protected class |
EnumEnumDefinition.EnumDefaultFormatter
|
protected class |
EnumEnumDefinition.EnumTypeFormatter
|
class |
FormatterToString<V>
This is an implementation of
Formatter that simply delegates to
Object.toString() . |
class |
StaticFormatter<V>
This is an implementation of
Formatter that always formats to a static string. |
Modifier and Type | Field and Description |
---|---|
private Formatter<TYPE> |
AbstractEnumDefinition.formatter |
private static Formatter<Boolean> |
BooleanFormatter.INSTANCE |
private Formatter<V>[] |
ComposedFormatter.subFormatters |
Modifier and Type | Method and Description |
---|---|
Formatter<TYPE> |
AbstractEnumDefinition.getFormatter() |
static Formatter<Boolean> |
BooleanFormatter.getInstance() |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractEnumDefinition.setFormatter(Formatter<TYPE> formatter) |
<E> String |
StringUtilImpl.toSeparatedString(Collection<E> collection,
String separator,
StringSyntax syntax,
Formatter<E> formatter) |
<E> void |
StringUtilImpl.toSeparatedString(Collection<E> collection,
String separator,
StringSyntax syntax,
Formatter<E> formatter,
Appendable buffer) |
Constructor and Description |
---|
ComposedFormatter(Formatter<V>... subFormatters)
The constructor.
|
Modifier and Type | Method and Description |
---|---|
protected abstract Formatter<O> |
SimpleNlsFormatter.createFormatter(Locale locale)
This method creates the underlying
Formatter to delegate to. |
Modifier and Type | Class and Description |
---|---|
private static class |
FormatterProvider.FormatFormatter
|
private static class |
FormatterProvider.Iso8601Formatter
|
Modifier and Type | Method and Description |
---|---|
protected Formatter<Object> |
NlsFormatterPercent.createFormatter(Locale locale) |
protected Formatter<Object> |
NlsFormatterNumberPattern.createFormatter(Locale locale) |
protected Formatter<Object> |
NlsFormatterNumber.createFormatter(Locale locale) |
protected Formatter<Object> |
NlsFormatterInteger.createFormatter(Locale locale) |
protected Formatter<Object> |
NlsFormatterDatePattern.createFormatter(Locale locale) |
protected Formatter<Object> |
NlsFormatterCurrency.createFormatter(Locale locale) |
protected Formatter<Object> |
AbstractSimpleNlsFormatterDate.createFormatter(Locale locale) |
protected Formatter<Object> |
AbstractNlsFormatterDateIso8601.createFormatter(Locale locale) |
static Formatter<Object> |
FormatterProvider.getCurrencyFormatter(Locale locale) |
static Formatter<Object> |
FormatterProvider.getDateFormatter(Locale locale,
String pattern) |
static Formatter<Object> |
FormatterProvider.getDateFormatter(Locale locale,
String type,
Iso8601Util iso8601Util) |
static Formatter<Object> |
FormatterProvider.getDateFormatter(Locale locale,
String type,
String style) |
static Formatter<Object> |
FormatterProvider.getIntegerFormatter(Locale locale) |
static Formatter<Object> |
FormatterProvider.getNumberFormatter(Locale locale) |
static Formatter<Object> |
FormatterProvider.getNumberFormatter(Locale locale,
String pattern) |
static Formatter<Object> |
FormatterProvider.getPercentFormatter(Locale locale) |
Modifier and Type | Interface and Description |
---|---|
interface |
VersionIdentifierFormatter
This is the interface used to format a
VersionIdentifier . |
Modifier and Type | Method and Description |
---|---|
protected Formatter<VersionIdentifier> |
VersionUtilImpl.parseSubFormatter(CharSequenceScanner scanner,
String formatPattern,
StringBuilder infixBuffer,
VersionUtilImpl.FormatPatternStatus status) |
Constructor and Description |
---|
ComposedVersionIdentifierFormatter(Formatter<VersionIdentifier>... subFormatters)
The constructor.
|
Copyright © 2001–2016 mmm-Team. All rights reserved.