Package org.sumus.dwh.datastore

Examples of org.sumus.dwh.datastore.State


    }

    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();
View Full Code Here


        context.put(DataStoreDefinition.MODULES.getName(), "org.core");
        return context;
    }

    private State buildPackageState(ReaderFile reader, AfferenceCoupling afference) throws IOException {
        State state = new State();
        int ite = 0;
        Metric metrics[] = initializeMetricsPackage(reader, afference);
        String metricdefinition[] = initializeMetricPackageDefinitions();
        return putMetricInStateCube(metrics, state, metricdefinition, ite);
    }
View Full Code Here

        context.put(DataStoreDefinition.MODULES.getName(), "org.core.Parser");
        return context;
    }

    private State buildClassState(ReaderFile reader, AfferenceCoupling afference) throws IOException {
        State state = new State();
        int ite = 0;
        Metric metrics[] = initializeMetricsClass(reader, afference);
        String metricdefinition[] = initializeMetricsClassDefinitions();
        return putMetricInStateCube(metrics, state, metricdefinition, ite);
    }
View Full Code Here

        context.put(DataStoreDefinition.MODULES.getName(), "org.core.Parser.execute");
        return context;
    }

    private State buildMethodState(ReaderFile reader) throws IOException {
        State state = new State();
        putMethodNameMethodNumParameters(reader, state);
        putMethodNameMethodLineMethods(reader, state);
        return putCyclomaticComplexMethod(reader, state);
    }
View Full Code Here

TOP

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

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.