mmm-value-parent

Simple library for generic value access.

Лицензия

Лицензия

Группа

Группа

io.github.m-m-m
Идентификатор

Идентификатор

mmm-value-parent
Последняя версия

Последняя версия

0.2.0
Дата

Дата

Тип

Тип

pom
Описание

Описание

mmm-value-parent
Simple library for generic value access.
Ссылка на сайт

Ссылка на сайт

https://m-m-m.github.io/
Организация-разработчик

Организация-разработчик

mmm-team
Система контроля версий

Система контроля версий

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

Скачать mmm-value-parent

Имя Файла Размер
mmm-value-parent-0.2.0.pom 4 KB
Обзор

Как подключить последнюю версию

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

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

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>
  <!-- <version>${mmmVersion}</version> -->
</dependency>

Gradle Dependency:

implementation 'io.github.m-m-m:mmm-value:${mmmVersion}'

For ${mmmVersion} please fill in the latest version that you can find in the badge above.

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>
  <!-- <version>${mmmVersion}</version> -->
</dependency>

Gradle Dependency:

implementation 'io.github.m-m-m:mmm-value-observable:${mmmVersion}'

For ${mmmVersion} please fill in the latest version that you can find in the badge above.

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

Версии библиотеки

Версия
0.2.0
0.1.1
0.1.0