Package org.sumus.dwh.datastore

Examples of org.sumus.dwh.datastore.Tuple


    private void addTupleInCube(String path, ArrayList<String> arrayfiles) throws IOException {
        ReaderFile readerfile;
        AfferenceCoupling afferencecoupling;
        State state;
        Tuple factShip;
        readerfile = new ReaderFile(path);
        afferencecoupling = new AfferenceCoupling(arrayfiles, readerfile);
       
        Context context = buildPackageContext();
        state = buildPackageState(readerfile, afferencecoupling);
        factShip = new Tuple(getCube(DataStoreDefinition.PACKAGE_CUBE), context, state);
        add(factShip);
       
        context = buildClassContext();
        state = buildClassState(readerfile, afferencecoupling);
        factShip = new Tuple(getCube(DataStoreDefinition.CLASS_CUBE), context, state);
        add(factShip);
       
        context = buildMethodContext();
        state = buildMethodState(readerfile);
        factShip = new Tuple(getCube(DataStoreDefinition.METHOD_CUBE), context, state);
        add(factShip);
    }
View Full Code Here

TOP

Related Classes of org.sumus.dwh.datastore.Tuple

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.