Skip to content

Commit

Permalink
refactor: parser package
Browse files Browse the repository at this point in the history
  • Loading branch information
jenspots committed May 23, 2024
1 parent ccbacc5 commit 6a0e65b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package technology.idlab.runner
package technology.idlab.parser

import java.util.*
import technology.idlab.logging.Log
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package technology.idlab.runner
package technology.idlab.parser

import org.apache.jena.rdf.model.RDFNode

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package technology.idlab.runner
package technology.idlab.parser

import bridge.HttpReader
import bridge.Reader
Expand All @@ -15,6 +15,7 @@ import technology.idlab.extensions.query
import technology.idlab.extensions.readModelRecursively
import technology.idlab.extensions.validate
import technology.idlab.logging.Log
import technology.idlab.runner.Processor

class Parser(file: File) {
/** An RDF model of the configuration file. */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package technology.idlab.runner
package technology.idlab.parser

class Property(val name: String, val type: String, min: Int?, max: Int?) {
enum class Count {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package technology.idlab.runner
package technology.idlab.parser

import technology.idlab.logging.Log

Expand Down
1 change: 1 addition & 0 deletions src/main/kotlin/runner/Pipeline.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package technology.idlab.runner
import java.io.File
import kotlin.concurrent.thread
import technology.idlab.logging.Log
import technology.idlab.parser.Parser

class Pipeline(config: File) {
/** Processors described in the config. */
Expand Down

0 comments on commit 6a0e65b

Please sign in to comment.