Package JOINT

Source Code of JOINT.Gerar_Jar

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package JOINT;

import br.ufal.ic.joint.module.ontology.operations.OntologyCompiler;
import java.util.ArrayList;
import java.util.List;

/**
*
* @author Williams
*/
public class Gerar_Jar {

    public static void main(String[] args) {
        String o1 = ".\\ontologies\\ontologias sesame\\swrc_v0.3.owl";
        String o2 = ".\\ontologies\\ontologias sesame\\OntoApp.owl";
        String o3 = ".\\ontologies\\ontologias sesame\\Authors.owl";
        String o4 = ".\\ontologies\\ontologias sesame\\Collections.owl";
        String o5 = ".\\ontologies\\ontologias sesame\\Conferences.owl";
        String o6 = ".\\ontologies\\ontologias sesame\\Journals.owl";
        String o7 = ".\\ontologies\\ontologias sesame\\Publications.owl";
        List<String> ontologias = new ArrayList<String>();
        ontologias.add(o1);
        ontologias.add(o2);
        ontologias.add(o3);
        ontologias.add(o4);
        ontologias.add(o5);
        ontologias.add(o6);
        ontologias.add(o7);
        String jar = ".\\lib\\ontoApp.jar";
        OntologyCompiler compiler = new OntologyCompiler(jar, ontologias);
        compiler.compile();
    }

}
TOP

Related Classes of JOINT.Gerar_Jar

TOP
Copyright © 2018 www.massapi.com. 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.