Package eu.admire.dispel.types

Examples of eu.admire.dispel.types.TupleDType


  private void createDType() throws RegistrationFailedException {

    SimpleDType simpleDType = new SimpleDType(
        "http://www.admire-project.eu/ontologies/DataMiningOntology#SQLStatement");
    TupleDType dtype = new TupleDType();
    dtype.addElement("a", new SimpleDType("http://bla"));
    dtype.addElement("b", simpleDType);

    registry.registerDType(dTypeName, dtype);
  }
View Full Code Here


  private void createDType() throws RegistrationFailedException {

    SimpleDType simpleDType = new SimpleDType(
        "http://www.admire-project.eu/ontologies/DataMiningOntology#SQLStatement");
    TupleDType dtype = new TupleDType();
    dtype.addElement("a", new SimpleDType("http://bla"));
    dtype.addElement("b", new SimpleDType("http://blabla"));
    dtype.addElement("c", simpleDType);
   
    CollectionDType collectionDType = new CollectionDType(simpleDType, "Set");

    registry.registerDType(dTypeName, collectionDType);
  }
View Full Code Here

TOP

Related Classes of eu.admire.dispel.types.TupleDType

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.