Package | Description |
---|---|
eu.bandm.tools.graficUtils |
Utility functions for drawing and coordinate calculation.
|
eu.bandm.tools.message |
Messages and positions in documents,
cf user documentation.
|
eu.bandm.tools.muli |
Support *MU*lti *LI*ngual user interfaces by advanced translation look-up,
incremental deserialization, etc.
|
Modifier and Type | Field and Description |
---|---|
protected EnumSet<Message.Kind> |
MessageDialog.noMore |
protected EnumSet<Message.Kind> |
MessageDialog.selected |
Modifier and Type | Method and Description |
---|---|
EnumSet<Message.Kind> |
MessageDialog.getExplicitlySuppressed() |
Constructor and Description |
---|
MessageDialog(JFrame context,
String title,
EnumSet<Message.Kind> selected) |
Modifier and Type | Field and Description |
---|---|
protected Message.Kind |
Message.kind |
Modifier and Type | Field and Description |
---|---|
protected Map<Message.Kind,MessageCounter.Counter> |
MessageCounter.counters |
protected Set<Message.Kind> |
MessageKindFilter.kinds |
Modifier and Type | Method and Description |
---|---|
Message.Kind |
Message.getKind() |
static Message.Kind |
Message.Kind.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Message.Kind[] |
Message.Kind.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static <M extends Message> |
MessageDemux.byKind()
factory method for
MessageDemux.ByKind |
protected EnumSet<Message.Kind> |
MessageDemux.ByKind.getOutputTags(Message m) |
Modifier and Type | Method and Description |
---|---|
void |
MessageKindFilter.addKind(Message.Kind... kk) |
void |
MessageKindFilter.addKind(Message.Kind k) |
int |
MessageCounter.getCounts(Message.Kind kind)
Returns the count of messages of the given
Message.Kind it has
received since its creation or the last call to MessageCounter.resetCounters() |
static <D> SimpleMessage<D> |
SimpleMessage.makeMessage(Message.Kind k,
Exception e,
String t,
Locatable<D> l)
Convenience factory Method:
Create a message of the indicated kind and with the given attributes.
|
void |
MessageKindFilter.removeKind(Message.Kind... kk) |
void |
MessageKindFilter.removeKind(Message.Kind k) |
void |
MessageCounter.resetCounter(Message.Kind k)
Restart one certain counter with 0(zero), re-adjust critical count
|
Modifier and Type | Method and Description |
---|---|
static <X> Function<SimpleMessage<X>,SimpleMessage<X>> |
SimpleMessage.liftMapKind(Function<Message.Kind,Message.Kind> f)
Lift a function which operates on the
Kind part to one which
operates on the whole Message. |
static <X> Function<SimpleMessage<X>,SimpleMessage<X>> |
SimpleMessage.liftMapKind(Function<Message.Kind,Message.Kind> f)
Lift a function which operates on the
Kind part to one which
operates on the whole Message. |
SimpleMessage<D> |
SimpleMessage.mapKind(Function<Message.Kind,Message.Kind> f)
Apply a function which operates on the
Kind part to construct
a new message. |
SimpleMessage<D> |
SimpleMessage.mapKind(Function<Message.Kind,Message.Kind> f)
Apply a function which operates on the
Kind part to construct
a new message. |
static <D> Function<SimpleMessage<D>,String> |
SimpleMessage.messageToString(Function<? super Location<D>,? extends String> formatLoc,
Function<? super Message.Kind,String> formatKind) |
String |
SimpleMessage.toString(Function<? super Location<D>,? extends String> formatLoc,
Function<? super Message.Kind,String> formatKind) |
Constructor and Description |
---|
Message(Message.Kind k) |
Message(Message.Kind k,
Exception e) |
MessageKindFilter(MessageReceiver<? super M> d,
Message.Kind... kk) |
SimpleMessage(Message.Kind k,
@Opt Exception e,
@Opt String t) |
SimpleMessage(Message.Kind k,
@Opt Exception e,
@Opt String t,
@Opt Locatable<D> l) |
Modifier and Type | Method and Description |
---|---|
protected void |
MuLiMessageReceiver.send(Message.Kind kind,
Exception cause,
Location<D> loc,
String txt,
List<Object> args) |
protected void |
MuLiMessageReceiver.send(Message.Kind kind,
Exception cause,
Location<D> loc,
String txt,
Object... args) |
see also the complete user documentation .