Package pt.ist.fenixframework.dml

Examples of pt.ist.fenixframework.dml.DomainEntity


    }

    private static void addDomainClass(final JsonArray array, final DomainClass domainClass) {
        final JsonObject object = new JsonObject();
        object.addProperty("className", domainClass.getFullName());
        final DomainEntity superclass = domainClass.getSuperclass();
        if (superclass != null) {
            object.addProperty("superclassName", superclass.getFullName());
        }

        final JsonArray interfaces = new JsonArray();
        for (final Object oi : domainClass.getInterfacesNames()) {
            interfaces.add(new JsonPrimitive(oi.toString()));
View Full Code Here

TOP

Related Classes of pt.ist.fenixframework.dml.DomainEntity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.