Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors after switching to OpenJDK #25

Open
wrooot opened this issue Jul 20, 2019 · 3 comments
Open

Errors after switching to OpenJDK #25

wrooot opened this issue Jul 20, 2019 · 3 comments
Labels

Comments

@wrooot
Copy link

wrooot commented Jul 20, 2019

Today i have swapped Oracle Java 8 32-bit for AdoptOpenJDK 8 64-bit. Works for Spark in IntelliJ. But when i try to build Flame i get errors (something missing in OpenJDK maybe):

Information:Kotlin: kotlinc-jvm 1.3.41 (JRE 1.8.0_222-b10)
Information:Module "flame.main" was fully rebuilt due to project configuration/dependencies changes
Information:2019.07.20 17:50 - Build completed with 235 errors and 0 warnings in 11 s 428 ms
Error:Kotlin: Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath:
class tornadofx.UIComponent, unresolved supertypes: javafx.event.EventTarget
class tornadofx.App, unresolved supertypes: javafx.application.Application
class tornadofx.FXTask, unresolved supertypes: javafx.concurrent.Task
N:\Git\flame\src\main\kotlin\Main.kt
Error:(7, 12) Kotlin: Type argument is not within its bounds: should be subtype of 'Application'
N:\Git\flame\src\main\kotlin\org\alameyo\flame\controllers\chat\RosterController.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(12, 20) Kotlin: Unresolved reference: ObservableSet
Error:(15, 31) Kotlin: Cannot access class 'javafx.collections.ObservableSet'. Check your module classpath for missing or conflicting dependencies
Error:(35, 52) Kotlin: Unresolved reference: it
N:\Git\flame\src\main\kotlin\org\alameyo\flame\controllers\settings\FlameConnectionConfigurationSettings.kt
Error:(3, 16) Kotlin: Unresolved reference: javafx
Error:(4, 16) Kotlin: Unresolved reference: javafx
Error:(5, 16) Kotlin: Unresolved reference: javafx
Error:(60, 21) Kotlin: Unresolved reference: isLinux
Error:(61, 23) Kotlin: Unresolved reference: isWindows
N:\Git\flame\src\main\kotlin\org\alameyo\flame\css\FlameStyle.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(4, 8) Kotlin: Unresolved reference: javafx
Error:(27, 29) Kotlin: Cannot access class 'javafx.scene.paint.Paint'. Check your module classpath for missing or conflicting dependencies
Error:(27, 32) Kotlin: Cannot access class 'javafx.scene.paint.Color'. Check your module classpath for missing or conflicting dependencies
Error:(27, 32) Kotlin: Type mismatch: inferred type is Color but Paint was expected
Error:(34, 29) Kotlin: Cannot access class 'javafx.scene.paint.Paint'. Check your module classpath for missing or conflicting dependencies
Error:(34, 32) Kotlin: Cannot access class 'javafx.scene.paint.Color'. Check your module classpath for missing or conflicting dependencies
Error:(34, 32) Kotlin: Type mismatch: inferred type is Color but Paint was expected
Error:(38, 29) Kotlin: Cannot access class 'javafx.scene.paint.Paint'. Check your module classpath for missing or conflicting dependencies
Error:(38, 32) Kotlin: Cannot access class 'javafx.scene.paint.Color'. Check your module classpath for missing or conflicting dependencies
Error:(38, 32) Kotlin: Type mismatch: inferred type is Color but Paint was expected
Error:(46, 29) Kotlin: Cannot access class 'javafx.scene.paint.Paint'. Check your module classpath for missing or conflicting dependencies
Error:(46, 32) Kotlin: Cannot access class 'javafx.scene.paint.Color'. Check your module classpath for missing or conflicting dependencies
Error:(46, 32) Kotlin: Type mismatch: inferred type is Color but Paint was expected
Error:(67, 13) Kotlin: Cannot access class 'javafx.geometry.Pos'. Check your module classpath for missing or conflicting dependencies
Error:(67, 25) Kotlin: Unresolved reference: Pos
Error:(76, 13) Kotlin: Cannot access class 'javafx.geometry.Pos'. Check your module classpath for missing or conflicting dependencies
Error:(76, 25) Kotlin: Unresolved reference: Pos
Error:(80, 29) Kotlin: Cannot access class 'javafx.scene.paint.Paint'. Check your module classpath for missing or conflicting dependencies
Error:(80, 32) Kotlin: Cannot access class 'javafx.scene.paint.Color'. Check your module classpath for missing or conflicting dependencies
Error:(80, 32) Kotlin: Type mismatch: inferred type is Color but Paint was expected
Error:(87, 13) Kotlin: Cannot access class 'javafx.scene.paint.Color'. Check your module classpath for missing or conflicting dependencies
Error:(87, 25) Kotlin: Cannot access class 'javafx.scene.paint.Color'. Check your module classpath for missing or conflicting dependencies
Error:(88, 29) Kotlin: Cannot access class 'javafx.scene.paint.Paint'. Check your module classpath for missing or conflicting dependencies
Error:(88, 32) Kotlin: Unresolved reference: Color
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\ImageViewExtension.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(4, 8) Kotlin: Unresolved reference: javafx
Error:(6, 5) Kotlin: Unresolved reference: ImageView
Error:(6, 31) Kotlin: Unresolved reference: Button
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\FlameApplicationView.kt
Error:(9, 30) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(15, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.borderpane(op: BorderPane.() -> Unit = ...): BorderPane defined in tornadofx
Error:(17, 9) Kotlin: Function invocation 'top(...)' expected
Error:(17, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final inline fun BorderPane.top(): BorderPane defined in org.alameyo.flame.views.home.FlameApplicationView
public final fun BorderPane.top(nodeType: KClass): BorderPane defined in org.alameyo.flame.views.home.FlameApplicationView Error:(19, 9) Kotlin: Function invocation 'left(...)' expected Error:(19, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: public final inline fun BorderPane.left(): BorderPane defined in org.alameyo.flame.views.home.FlameApplicationView public final fun BorderPane.left(nodeType: KClass): BorderPane defined in org.alameyo.flame.views.home.FlameApplicationView
Error:(21, 9) Kotlin: Function invocation 'center(...)' expected
Error:(21, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final inline fun BorderPane.center(): BorderPane defined in org.alameyo.flame.views.home.FlameApplicationView
public final fun BorderPane.center(nodeType: KClass): BorderPane defined in org.alameyo.flame.views.home.FlameApplicationView Error:(23, 9) Kotlin: Function invocation 'right(...)' expected Error:(23, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: public final inline fun BorderPane.right(): BorderPane defined in org.alameyo.flame.views.home.FlameApplicationView public final fun BorderPane.right(nodeType: KClass): BorderPane defined in org.alameyo.flame.views.home.FlameApplicationView
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\chat\ChatAreaView.kt
Error:(7, 22) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(9, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.tabpane(op: TabPane.() -> Unit = ...): TabPane defined in tornadofx
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\chat\ChatEntryView.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(12, 54) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(23, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.hbox(spacing: Number? = ..., alignment: Pos? = ..., op: HBox.() -> Unit = ...): HBox defined in tornadofx
Error:(24, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun EventTarget.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: ObservableValue, type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: String = ..., type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
Error:(25, 13) Kotlin: Unresolved reference: wrapTextProperty
Error:(26, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun Styleable.style(append: Boolean = ..., op: InlineCss.() -> Unit): Unit defined in tornadofx
public fun Iterable.style(append: Boolean = ..., op: InlineCss.() -> Unit): Unit defined in tornadofx
Error:(27, 17) Kotlin: Unresolved reference: alignment
Error:(27, 29) Kotlin: Unresolved reference: BASELINE_LEFT
Error:(28, 17) Kotlin: Function invocation 'prefWidth(...)' expected
Error:(28, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun <S, T> TableColumn.prefWidth(width: Number): TableColumn defined in tornadofx
public fun <S, T> TreeTableColumn.prefWidth(width: Number): TreeTableColumn defined in tornadofx
public fun TornadoFXColumn.prefWidth(width: Number): TornadoFXColumn defined in tornadofx
Error:(29, 17) Kotlin: Function invocation 'maxWidth(...)' expected
Error:(29, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun <S, T> TableColumn.maxWidth(width: Number): TableColumn defined in tornadofx
public fun <S, T> TreeTableColumn.maxWidth(width: Number): TreeTableColumn defined in tornadofx
public fun TornadoFXColumn.maxWidth(width: Number): TornadoFXColumn defined in tornadofx
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\chat\ChatTab.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(4, 8) Kotlin: Unresolved reference: javafx
Error:(5, 8) Kotlin: Unresolved reference: javafx
Error:(6, 8) Kotlin: Unresolved reference: javafx
Error:(10, 68) Kotlin: Unresolved reference: Tab
Error:(14, 37) Kotlin: Unresolved reference: ScrollPane
Error:(15, 45) Kotlin: Unresolved reference: TextField
Error:(18, 9) Kotlin: Unresolved reference: onClosed
Error:(18, 20) Kotlin: Unresolved reference: EventHandler
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\chat\DirectChatTab.kt
Error:(18, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.add(node: Node): Unit defined in tornadofx
Error:(19, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.vbox(spacing: Number? = ..., alignment: Pos? = ..., op: VBox.() -> Unit = ...): VBox defined in tornadofx
Error:(20, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(21, 31) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.scrollpane(fitToWidth: Boolean = ..., fitToHeight: Boolean = ..., op: ScrollPane.() -> Unit = ...): ScrollPane defined in tornadofx
Error:(22, 25) Kotlin: Unresolved reference: fitToWidthProperty
Error:(23, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(24, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.vbox(spacing: Number? = ..., alignment: Pos? = ..., op: VBox.() -> Unit = ...): VBox defined in tornadofx
Error:(26, 39) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.textfield(property: Property, converter: StringConverter, op: TextField.() -> Unit = ...): TextField defined in tornadofx
@JvmName public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(value: String? = ..., op: TextField.() -> Unit = ...): TextField defined in tornadofx
Error:(27, 25) Kotlin: Unresolved reference: promptText
Error:(28, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(29, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
Error:(43, 9) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
Error:(45, 11) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
Error:(46, 29) Kotlin: Assignment operators ambiguity:
public open fun (): [ERROR : ] defined in root package
public open fun (): [ERROR : ] defined in root package
Error:(47, 13) Kotlin: Cannot access class 'javafx.util.Duration'. Check your module classpath for missing or conflicting dependencies
Error:(47, 26) Kotlin: Cannot access class 'javafx.util.Duration'. Check your module classpath for missing or conflicting dependencies
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\contact\ContactView.kt
Error:(5, 21) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(6, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.hbox(spacing: Number? = ..., alignment: Pos? = ..., op: HBox.() -> Unit = ...): HBox defined in tornadofx
Error:(7, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun EventTarget.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: ObservableValue, type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: String = ..., type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\menubar\MenuBarView.kt
Error:(8, 20) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(12, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.menubar(op: MenuBar.() -> Unit = ...): MenuBar defined in tornadofx
Error:(13, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ContextMenu.menu(name: String? = ..., op: Menu.() -> Unit = ...): Menu defined in tornadofx
public fun Menu.menu(name: String? = ..., keyCombination: KeyCombination? = ..., graphic: Node? = ..., op: Menu.() -> Unit = ...): Menu defined in tornadofx
public fun Menu.menu(name: String? = ..., keyCombination: String, graphic: Node? = ..., op: Menu.() -> Unit = ...): Menu defined in tornadofx
public fun MenuBar.menu(name: String? = ..., graphic: Node? = ..., op: Menu.() -> Unit = ...): Menu defined in tornadofx
Error:(14, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final fun Drawer.item(uiComponent: KClass, scope: Scope = ..., vararg params: Pair<
, Any?>, expanded: Boolean = ..., showHeader: Boolean = ..., op: DrawerItem.() -> Unit = ...): Unit defined in org.alameyo.flame.views.home.menubar.MenuBarView
public final fun Drawer.item(uiComponent: KClass, scope: Scope = ..., params: Map<, Any?>? = ..., expanded: Boolean = ..., showHeader: Boolean = ..., op: DrawerItem.() -> Unit = ...): DrawerItem defined in org.alameyo.flame.views.home.menubar.MenuBarView
public final inline fun Drawer.item(scope: Scope = ..., vararg params: Pair<
, Any?>, expanded: Boolean = ..., showHeader: Boolean = ..., noinline op: DrawerItem.() -> Unit = ...): DrawerItem defined in org.alameyo.flame.views.home.menubar.MenuBarView
public final inline fun Drawer.item(scope: Scope = ..., params: Map<, Any?>? = ..., expanded: Boolean = ..., showHeader: Boolean = ..., noinline op: DrawerItem.() -> Unit = ...): DrawerItem defined in org.alameyo.flame.views.home.menubar.MenuBarView
Error:(15, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<
>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
Error:(17, 88) Kotlin: Cannot access class 'javafx.util.Duration'. Check your module classpath for missing or conflicting dependencies
Error:(17, 98) Kotlin: Cannot access class 'javafx.util.Duration'. Check your module classpath for missing or conflicting dependencies
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\muc\MultiUserChatTab.kt
Error:(15, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.add(node: Node): Unit defined in tornadofx
Error:(16, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.vbox(spacing: Number? = ..., alignment: Pos? = ..., op: VBox.() -> Unit = ...): VBox defined in tornadofx
Error:(17, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(18, 31) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.scrollpane(fitToWidth: Boolean = ..., fitToHeight: Boolean = ..., op: ScrollPane.() -> Unit = ...): ScrollPane defined in tornadofx
Error:(19, 25) Kotlin: Unresolved reference: fitToWidthProperty
Error:(20, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(21, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.vbox(spacing: Number? = ..., alignment: Pos? = ..., op: VBox.() -> Unit = ...): VBox defined in tornadofx
Error:(23, 39) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.textfield(property: Property, converter: StringConverter, op: TextField.() -> Unit = ...): TextField defined in tornadofx
@JvmName public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(value: String? = ..., op: TextField.() -> Unit = ...): TextField defined in tornadofx
Error:(24, 25) Kotlin: Unresolved reference: promptText
Error:(25, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(26, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
Error:(39, 9) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
Error:(41, 11) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
Error:(42, 29) Kotlin: Assignment operators ambiguity:
public open fun (): [ERROR : ] defined in root package
public open fun (): [ERROR : ] defined in root package
Error:(43, 13) Kotlin: Cannot access class 'javafx.util.Duration'. Check your module classpath for missing or conflicting dependencies
Error:(43, 26) Kotlin: Cannot access class 'javafx.util.Duration'. Check your module classpath for missing or conflicting dependencies
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\roster\AddContactView.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(10, 24) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(16, 23) Kotlin: Unresolved reference: SimpleStringProperty
Error:(17, 24) Kotlin: Unresolved reference: SimpleStringProperty
Error:(19, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.scrollpane(fitToWidth: Boolean = ..., fitToHeight: Boolean = ..., op: ScrollPane.() -> Unit = ...): ScrollPane defined in tornadofx
Error:(20, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.hbox(spacing: Number? = ..., alignment: Pos? = ..., op: HBox.() -> Unit = ...): HBox defined in tornadofx
Error:(21, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.form(op: Form.() -> Unit = ...): Form defined in tornadofx
Error:(22, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.fieldset(text: String? = ..., icon: Node? = ..., labelPosition: Orientation? = ..., wrapWidth: Double? = ..., op: Fieldset.() -> Unit = ...): Fieldset defined in tornadofx
Error:(23, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.field(text: String? = ..., orientation: Orientation = ..., forceLabelIndent: Boolean = ..., op: Field.() -> Unit = ...): Field defined in tornadofx
Error:(24, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.textfield(property: Property, converter: StringConverter, op: TextField.() -> Unit = ...): TextField defined in tornadofx
@JvmName public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(value: String? = ..., op: TextField.() -> Unit = ...): TextField defined in tornadofx
Error:(26, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.field(text: String? = ..., orientation: Orientation = ..., forceLabelIndent: Boolean = ..., op: Field.() -> Unit = ...): Field defined in tornadofx
Error:(27, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.textfield(property: Property, converter: StringConverter, op: TextField.() -> Unit = ...): TextField defined in tornadofx
@JvmName public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(value: String? = ..., op: TextField.() -> Unit = ...): TextField defined in tornadofx
Error:(29, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun EventTarget.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: ObservableValue, type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: String = ..., type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
Error:(30, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(31, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.imageview(image: ObservableValue<Image?>, op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
public fun EventTarget.imageview(url: ObservableValue, lazyload: Boolean = ..., op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
public fun EventTarget.imageview(image: Image, op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
public fun EventTarget.imageview(url: String? = ..., lazyload: Boolean = ..., op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
Error:(32, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<
>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
Error:(34, 33) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
Error:(36, 35) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\roster\LeftSideView.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(8, 22) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(13, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.tabpane(op: TabPane.() -> Unit = ...): TabPane defined in tornadofx
Error:(14, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final inline fun TabPane.tab(scope: Scope = ..., noinline op: Tab.() -> Unit = ...): Tab defined in org.alameyo.flame.views.home.roster.LeftSideView
Error:(15, 13) Kotlin: Unresolved reference: content
Error:(18, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final inline fun TabPane.tab(scope: Scope = ..., noinline op: Tab.() -> Unit = ...): Tab defined in org.alameyo.flame.views.home.roster.LeftSideView
Error:(19, 13) Kotlin: Unresolved reference: content
Error:(22, 9) Kotlin: Unresolved reference: tabClosingPolicy
Error:(22, 28) Kotlin: Unresolved reference: TabPane
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\roster\MultiUserChatView.kt
Error:(9, 27) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(14, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.scrollpane(fitToWidth: Boolean = ..., fitToHeight: Boolean = ..., op: ScrollPane.() -> Unit = ...): ScrollPane defined in tornadofx
Error:(15, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.vbox(spacing: Number? = ..., alignment: Pos? = ..., op: VBox.() -> Unit = ...): VBox defined in tornadofx
Error:(19, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.hbox(spacing: Number? = ..., alignment: Pos? = ..., op: HBox.() -> Unit = ...): HBox defined in tornadofx
Error:(20, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(21, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun EventTarget.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: ObservableValue, type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: String = ..., type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
Error:(22, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(23, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\home\roster\RosterView.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(4, 8) Kotlin: Unresolved reference: javafx
Error:(15, 20) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(21, 27) Kotlin: Unresolved reference: VBox
Error:(23, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.vbox(spacing: Number? = ..., alignment: Pos? = ..., op: VBox.() -> Unit = ...): VBox defined in tornadofx
Error:(24, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final fun EventTarget.add(uiComponent: Class): Unit defined in org.alameyo.flame.views.home.roster.RosterView public final fun EventTarget.add(child: Node): Unit defined in org.alameyo.flame.views.home.roster.RosterView public final inline fun EventTarget.add(vararg params: Pair<*, Any?>, noinline op: ???.() -> Unit = ...): Unit defined in org.alameyo.flame.views.home.roster.RosterView
public final fun EventTarget.add(type: KClass, params: Map<*, Any?>? = ..., op: ???.() -> Unit = ...): Unit defined in org.alameyo.flame.views.home.roster.RosterView
public final fun EventTarget.add(uiComponent: UIComponent): Unit defined in org.alameyo.flame.views.home.roster.RosterView
Error:(25, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.scrollpane(fitToWidth: Boolean = ..., fitToHeight: Boolean = ..., op: ScrollPane.() -> Unit = ...): ScrollPane defined in tornadofx
Error:(26, 23) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.vbox(spacing: Number? = ..., alignment: Pos? = ..., op: VBox.() -> Unit = ...): VBox defined in tornadofx
Error:(32, 29) Kotlin: Unresolved reference: VBox
Error:(34, 36) Kotlin: Cannot choose among the following candidates without completing type inference:
@HidesMembers public inline fun Iterable.forEach(action: (???) -> Unit): Unit defined in kotlin.collections @HidesMembers public inline fun Map.forEach(action: (Map.Entry) -> Unit): Unit defined in kotlin.collections
Error:(35, 31) Kotlin: Unresolved reference: it
Error:(39, 31) Kotlin: Unresolved reference: HBox
Error:(40, 16) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.hbox(spacing: Number? = ..., alignment: Pos? = ..., op: HBox.() -> Unit = ...): HBox defined in tornadofx
Error:(41, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(42, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun EventTarget.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: ObservableValue, type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: String = ..., type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
Error:(43, 29) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.imageview(image: ObservableValue<Image?>, op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
public fun EventTarget.imageview(url: ObservableValue, lazyload: Boolean = ..., op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
public fun EventTarget.imageview(image: Image, op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
public fun EventTarget.imageview(url: String? = ..., lazyload: Boolean = ..., op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
Error:(45, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(46, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<
>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
Error:(48, 29) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.imageview(image: ObservableValue<Image?>, op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
public fun EventTarget.imageview(url: ObservableValue, lazyload: Boolean = ..., op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
public fun EventTarget.imageview(image: Image, op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
public fun EventTarget.imageview(url: String? = ..., lazyload: Boolean = ..., op: ImageView.() -> Unit = ...): ImageView defined in tornadofx
Error:(57, 74) Kotlin: Unresolved reference: HBox
Error:(59, 16) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.hbox(spacing: Number? = ..., alignment: Pos? = ..., op: HBox.() -> Unit = ...): HBox defined in tornadofx
Error:(60, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(61, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun EventTarget.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: ObservableValue, type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: String = ..., type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
Error:(62, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(63, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
Error:(66, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.contextmenu(op: ContextMenu.() -> Unit = ...): ContextMenu defined in tornadofx
Error:(67, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final fun Drawer.item(uiComponent: KClass, scope: Scope = ..., vararg params: Pair<
, Any?>, expanded: Boolean = ..., showHeader: Boolean = ..., op: DrawerItem.() -> Unit = ...): Unit defined in org.alameyo.flame.views.home.roster.RosterView
public final fun Drawer.item(uiComponent: KClass, scope: Scope = ..., params: Map<, Any?>? = ..., expanded: Boolean = ..., showHeader: Boolean = ..., op: DrawerItem.() -> Unit = ...): DrawerItem defined in org.alameyo.flame.views.home.roster.RosterView
public final inline fun Drawer.item(scope: Scope = ..., vararg params: Pair<
, Any?>, expanded: Boolean = ..., showHeader: Boolean = ..., noinline op: DrawerItem.() -> Unit = ...): DrawerItem defined in org.alameyo.flame.views.home.roster.RosterView
public final inline fun Drawer.item(scope: Scope = ..., params: Map<, Any?>? = ..., expanded: Boolean = ..., showHeader: Boolean = ..., noinline op: DrawerItem.() -> Unit = ...): DrawerItem defined in org.alameyo.flame.views.home.roster.RosterView
Error:(77, 9) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
Error:(79, 11) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\login\LoginView.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(11, 19) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(16, 33) Kotlin: Unresolved reference: SimpleStringProperty
Error:(17, 33) Kotlin: Unresolved reference: SimpleStringProperty
Error:(26, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.vbox(spacing: Number? = ..., alignment: Pos? = ..., op: VBox.() -> Unit = ...): VBox defined in tornadofx
Error:(27, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(28, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.borderpane(op: BorderPane.() -> Unit = ...): BorderPane defined in tornadofx
Error:(29, 13) Kotlin: Function invocation 'center(...)' expected
Error:(29, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final inline fun BorderPane.center(): BorderPane defined in org.alameyo.flame.views.login.LoginView
public final fun BorderPane.center(nodeType: KClass): BorderPane defined in org.alameyo.flame.views.login.LoginView Error:(29, 22) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: public fun EventTarget.form(op: Form.() -> Unit = ...): Form defined in tornadofx Error:(30, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: public fun ???.addClass(vararg className: String): ??? defined in tornadofx public fun ???.addClass(vararg className: String): ??? defined in tornadofx public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx public fun TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(31, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.fieldset(text: String? = ..., icon: Node? = ..., labelPosition: Orientation? = ..., wrapWidth: Double? = ..., op: Fieldset.() -> Unit = ...): Fieldset defined in tornadofx
Error:(32, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.field(text: String? = ..., orientation: Orientation = ..., forceLabelIndent: Boolean = ..., op: Field.() -> Unit = ...): Field defined in tornadofx
Error:(33, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.textfield(property: Property, converter: StringConverter, op: TextField.() -> Unit = ...): TextField defined in tornadofx
@JvmName public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(value: String? = ..., op: TextField.() -> Unit = ...): TextField defined in tornadofx
Error:(34, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public var Region.paddingAll: Number defined in tornadofx
Error:(35, 25) Kotlin: Function invocation 'maxWidth(...)' expected
Error:(35, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun <S, T> TableColumn.maxWidth(width: Number): TableColumn defined in tornadofx
public fun <S, T> TreeTableColumn.maxWidth(width: Number): TreeTableColumn defined in tornadofx
public fun TornadoFXColumn.maxWidth(width: Number): TornadoFXColumn defined in tornadofx
Error:(37, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.field(text: String? = ..., orientation: Orientation = ..., forceLabelIndent: Boolean = ..., op: Field.() -> Unit = ...): Field defined in tornadofx
Error:(38, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.passwordfield(property: ObservableValue, op: PasswordField.() -> Unit = ...): PasswordField defined in tornadofx
public fun EventTarget.passwordfield(value: String? = ..., op: PasswordField.() -> Unit = ...): PasswordField defined in tornadofx
Error:(39, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public var Region.paddingAll: Number defined in tornadofx
Error:(40, 25) Kotlin: Function invocation 'maxWidth(...)' expected
Error:(40, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun <S, T> TableColumn.maxWidth(width: Number): TableColumn defined in tornadofx
public fun <S, T> TreeTableColumn.maxWidth(width: Number): TreeTableColumn defined in tornadofx
public fun TornadoFXColumn.maxWidth(width: Number): TornadoFXColumn defined in tornadofx
Error:(43, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun EventTarget.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: ObservableValue, type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: String = ..., type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
Error:(44, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<
>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
Error:(45, 29) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
Error:(52, 31) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies
Error:(61, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun EventTarget.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: ObservableValue, type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: String = ..., type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
Error:(62, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
Error:(71, 41) Kotlin: Unresolved reference: SimpleStringProperty
N:\Git\flame\src\main\kotlin\org\alameyo\flame\views\login\SettingsView.kt
Error:(3, 8) Kotlin: Unresolved reference: javafx
Error:(8, 22) Kotlin: Cannot access class 'javafx.scene.Node'. Check your module classpath for missing or conflicting dependencies
Error:(11, 27) Kotlin: Unresolved reference: SimpleStringProperty
Error:(12, 24) Kotlin: Unresolved reference: SimpleStringProperty
Error:(13, 28) Kotlin: Unresolved reference: SimpleStringProperty
Error:(19, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.vbox(spacing: Number? = ..., alignment: Pos? = ..., op: VBox.() -> Unit = ...): VBox defined in tornadofx
Error:(20, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(21, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.tabpane(op: TabPane.() -> Unit = ...): TabPane defined in tornadofx
Error:(22, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final inline fun TabPane.tab(scope: Scope = ..., noinline op: Tab.() -> Unit = ...): Tab defined in org.alameyo.flame.views.login.SettingsView
Error:(23, 17) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.form(op: Form.() -> Unit = ...): Form defined in tornadofx
Error:(24, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(25, 21) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.fieldset(text: String? = ..., icon: Node? = ..., labelPosition: Orientation? = ..., wrapWidth: Double? = ..., op: Fieldset.() -> Unit = ...): Fieldset defined in tornadofx
Error:(26, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.field(text: String? = ..., orientation: Orientation = ..., forceLabelIndent: Boolean = ..., op: Field.() -> Unit = ...): Field defined in tornadofx
Error:(27, 29) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.textfield(property: Property, converter: StringConverter, op: TextField.() -> Unit = ...): TextField defined in tornadofx
@JvmName public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(value: String? = ..., op: TextField.() -> Unit = ...): TextField defined in tornadofx
Error:(28, 33) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(31, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.field(text: String? = ..., orientation: Orientation = ..., forceLabelIndent: Boolean = ..., op: Field.() -> Unit = ...): Field defined in tornadofx
Error:(32, 29) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.textfield(property: Property, converter: StringConverter, op: TextField.() -> Unit = ...): TextField defined in tornadofx
@JvmName public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(value: String? = ..., op: TextField.() -> Unit = ...): TextField defined in tornadofx
Error:(33, 33) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(36, 25) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.field(text: String? = ..., orientation: Orientation = ..., forceLabelIndent: Boolean = ..., op: Field.() -> Unit = ...): Field defined in tornadofx
Error:(37, 29) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.textfield(property: Property, converter: StringConverter, op: TextField.() -> Unit = ...): TextField defined in tornadofx
@JvmName public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(property: ObservableValue, op: TextField.() -> Unit = ...): TextField defined in tornadofx
public fun EventTarget.textfield(value: String? = ..., op: TextField.() -> Unit = ...): TextField defined in tornadofx
Error:(38, 33) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg className: String): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun ???.addClass(vararg cssClass: CssRule): ??? defined in tornadofx
public fun <S, T> TableColumnBase.addClass(vararg cssClass: CssRule): TableColumnBase defined in tornadofx
public fun <S, T> TableColumnBase.addClass(className: String): TableColumnBase defined in tornadofx
public fun Iterable.addClass(vararg cssClass: String): Unit defined in tornadofx
public fun Iterable.addClass(vararg cssClass: CssRule): Unit defined in tornadofx
Error:(45, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final inline fun TabPane.tab(scope: Scope = ..., noinline op: Tab.() -> Unit = ...): Tab defined in org.alameyo.flame.views.login.SettingsView
Error:(49, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final inline fun TabPane.tab(scope: Scope = ..., noinline op: Tab.() -> Unit = ...): Tab defined in org.alameyo.flame.views.login.SettingsView
Error:(53, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public final inline fun TabPane.tab(scope: Scope = ..., noinline op: Tab.() -> Unit = ...): Tab defined in org.alameyo.flame.views.login.SettingsView
Error:(57, 9) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun EventTarget.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun EventTarget.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: ObservableValue, type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ButtonBar.button(text: String = ..., type: ButtonBar.ButtonData? = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: ObservableValue, graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
public fun ToolBar.button(text: String = ..., graphic: Node? = ..., op: Button.() -> Unit = ...): Button defined in tornadofx
Error:(58, 13) Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public fun ButtonBase.action(op: () -> Unit): Unit defined in tornadofx
public fun ChoiceBox<
>.action(op: () -> Unit): Unit defined in tornadofx
public fun MenuItem.action(op: () -> Unit): Unit defined in tornadofx
public fun TextField.action(op: () -> Unit): Unit defined in tornadofx
Error:(59, 17) Kotlin: Cannot access class 'javafx.concurrent.Task'. Check your module classpath for missing or conflicting dependencies

@Alameyo
Copy link
Owner

Alameyo commented Jul 20, 2019

OpenJDK will not work because it doesn't contain JavaFX. I would be happy to move to JDK11 + OpenJFX, but I am using TornadoFX library which isn't yet ready to use with JDK11.

I had also hit today a problem with PR #26 as Travis also stopped supporting OracleJDK8 due to licensing.

As soon as TornadoFX will be ready (though unfortunately it can still be a few months?) I will migrate it to OpenJDK11. For now I can just wait ( and maybe try help to test TornadoFX :) )

@Alameyo Alameyo added the JDK11 label Jul 20, 2019
@sschuberth
Copy link

I would be happy to move to JDK11 + OpenJFX, but I am using TornadoFX library which isn't yet ready to use with JDK11.

FYI, TornadoFX should be ready for JDK11 now, also see the "If you are using OpenJDK" section at https://edvin.gitbooks.io/tornadofx-guide/content/part1/2_Setting_Up.html.

@Alameyo
Copy link
Owner

Alameyo commented Aug 16, 2020

@sschuberth Thanks, I was a bit busy lately with other things but I will give a try as soon as I will find some time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants