Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
adding word sorter
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Nov 16, 2019
1 parent f82a94e commit 9003309
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/main/java/com/andromeda/araserver/util/SortWords.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ package com.andromeda.araserver.util
class SortWords(keyWord: KeyWord, mainVal:String) {
val key = keyWord
val mainText = mainVal
fun getTopics(){}
fun getActions(){}
fun getTopics(){
val graph = key.getKeyWords(mainText)?.get(0)



}
fun getActions(){
val graph = key.getKeyWords(mainText)?.get(0)
}
}

0 comments on commit 9003309

Please sign in to comment.