mmm-value

Java module providing generic value access.

License

License

GroupId

GroupId

io.github.m-m-m
ArtifactId

ArtifactId

mmm-value
Last Version

Last Version

0.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

mmm-value
Java module providing generic value access.
Project URL

Project URL

https://m-m-m.github.io/
Project Organization

Project Organization

mmm-team
Source Code Management

Source Code Management

https://github.com/m-m-m/value/tree/master

Download mmm-value

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.m-m-m/mmm-value/ -->
<dependency>
    <groupId>io.github.m-m-m</groupId>
    <artifactId>mmm-value</artifactId>
    <version>0.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.m-m-m/mmm-value/
implementation 'io.github.m-m-m:mmm-value:0.2.0'
// https://jarcasting.com/artifacts/io.github.m-m-m/mmm-value/
implementation ("io.github.m-m-m:mmm-value:0.2.0")
'io.github.m-m-m:mmm-value:jar:0.2.0'
<dependency org="io.github.m-m-m" name="mmm-value" rev="0.2.0">
  <artifact name="mmm-value" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.m-m-m', module='mmm-value', version='0.2.0')
)
libraryDependencies += "io.github.m-m-m" % "mmm-value" % "0.2.0"
[io.github.m-m-m/mmm-value "0.2.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

logo

Apache License, Version 2.0 build-status

mmm-value

Maven Central base JavaDoc

The module io.github.mmm.value (artifactId mmm-value) provides a minimal but powerful API for value containers.

Usage

Maven Dependency:

<dependency>
  <groupId>io.github.m-m-m</groupId>
  <artifactId>mmm-value</artifactId>
</dependency>

Module Dependency:

  requires transitive io.github.mmm.value;

mmm-value-observable

Maven Central base JavaDoc

The module io.github.mmm.value.observable (artifactId mmm-value-observable) provides observable values that allow to add and remove listeners to observe the value and get notified about changes. All is inspired by ObservableValue from JavaFx.

Usage

Maven Dependency:

<dependency>
  <groupId>io.github.m-m-m</groupId>
  <artifactId>mmm-value-observable</artifactId>
</dependency>

Module Dependency:

  requires transitive io.github.mmm.value.observable;

Example

StringExpression observableString = createStringExpression();
observableString.addListener(e -> System.out.print(e.getOldValue() + "-->" + e.getValue()));
observableString.set("John Doe");
io.github.m-m-m

Marvelous-Micro-Modules

Versions

Version
0.2.0
0.1.1
0.1.0