Coder Social home page Coder Social logo

rillde / jaxptoobjects Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 7 KB

This small repository will help those who want to map xml elements to Java classes and then build a composition out of them.

License: MIT License

Java 100.00%
java jaxp xml map-object

jaxptoobjects's Introduction

JaxpToObjects

Purpose


This project is used to map xml elements into Java classes and compose them using Java API for XML Processing (JAXP). You may want to use this approach to make the xml elements clearer and at the same time encapsulate the logic for getting data out of the elements.

Download


JAR on release page

Simple example


Example xml elements:

<Bot token="11223">
    <Replies>
        <Reply>Text1</Reply>
        <Reply>Text2</Reply>
    </Replies>
</Bot>

An example of mapping xml elements with JaxpToObjects:

Bot

public class Bot extends AbstractComplexElement {
    private String token;
    private Replies replies;

    public Bot(Node node) {
        super(node);
        replies = new Replies(getElement("Replies"));
        token = getAttribute("token");
    }
    
    public String getToken() {
        return token;
    }

    public Replies getReplies() {
        return replies;
    }
}

Replies

public class Replies extends AbstractComplexElement {
    private List<Reply> replyList;

    public Replies(Node node) {
        super(node);
        replyList = new ArrayList();
        for (Node reply: getElements("Reply")) {
            replyList.add(new Reply(reply));
        }
    }

    public List<Reply> getReplyList() {
        return replyList;
    }
}

Reply

public class Reply extends AbstractSimpleElement {
    public Reply(Node node) {
        super(node);
    }
}

License

MIT

jaxptoobjects's People

Contributors

rillde avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.