W3C XLink

W3C Schemas project provides JAXB and Jsonix bindings for some of the XML Schemas defined by W3C.

Лицензия

Лицензия

Группа

Группа

org.hisrc.w3c
Идентификатор

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

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

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

1.4.0
Дата

Дата

Тип

Тип

pom
Описание

Описание

W3C XLink
W3C Schemas project provides JAXB and Jsonix bindings for some of the XML Schemas defined by W3C.

Скачать xlink

Имя Файла Размер
xlink-1.4.0.pom 603 bytes
Обзор

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

<!-- https://jarcasting.com/artifacts/org.hisrc.w3c/xlink/ -->
<dependency>
    <groupId>org.hisrc.w3c</groupId>
    <artifactId>xlink</artifactId>
    <version>1.4.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/org.hisrc.w3c/xlink/
implementation 'org.hisrc.w3c:xlink:1.4.0'
// https://jarcasting.com/artifacts/org.hisrc.w3c/xlink/
implementation ("org.hisrc.w3c:xlink:1.4.0")
'org.hisrc.w3c:xlink:pom:1.4.0'
<dependency org="org.hisrc.w3c" name="xlink" rev="1.4.0">
  <artifact name="xlink" type="pom" />
</dependency>
@Grapes(
@Grab(group='org.hisrc.w3c', module='xlink', version='1.4.0')
)
libraryDependencies += "org.hisrc.w3c" % "xlink" % "1.4.0"
[org.hisrc.w3c/xlink "1.4.0"]

Зависимости

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.11

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

  • 1999

W3C Schemas

W3C Schemas project provides JAXB and Jsonix bindings for some of the XML Schemas defined by W3C.

This allows converting between XML (conforming to one of these schemas) and Java objects in Java or JSON in JavaScript.

Supports the following schemas:

  • Atom_1_0
  • WS_Addr_1_0_Core
  • WSDL_2_0
    • WSDL_HTTP_2_0
    • WSDL_RPC_2_0
    • WSDL_SOAP_2_0
  • XHTML_1_0_Strict
  • XLink_1_0
  • XSD_1_0

JavaScript Example

var XLink_1_0 = require('w3c-schemas').XLink_1_0;

var context =  new Jsonix.Context([XLink_1_0]);
var unmarshaller = context.createUnmarshaller();
unmarshaller.unmarshalFile("tests/locator-01.xml", function(result) {
	test.equal("label", result.value.label);
	test.done();
});

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

Версия
1.4.0
1.3.1
1.3.0
1.2.1
1.2.0
1.1.1
1.1.0
1.0.4
1.0.3
1.0.1
1.0.0