Package com.asakusafw.dmdl.thundergate.view.model

Examples of com.asakusafw.dmdl.thundergate.view.model.Name


                        null),
                Arrays.<Name>asList(n("t1.val1"), n("t1.val2")))));
    }

    private Name n(String name) {
        return new Name(name);
    }
View Full Code Here


    private List<CreateView> sort() {
        Map<Name, CreateView> map = Maps.create();
        Graph<Name> dependencies = Graphs.newInstance();
        for (CreateView view : added) {
            Name name = view.name;
            map.put(name, view);
            for (Name dependTo : view.getDependencies()) {
                dependencies.addEdge(name, dependTo);
            }
        }
View Full Code Here

TOP

Related Classes of com.asakusafw.dmdl.thundergate.view.model.Name

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.