Popular posts from this blog
Filter In Javafx
package com.ibadmin.control.tablefilter; import java.util.Optional; import java.util.function.BiPredicate; import java.util.stream.Collectors; import javafx.beans.property.BooleanProperty; import javafx.beans.property.SimpleBooleanProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.collections.transformation.FilteredList; import javafx.collections.transformation.SortedList; import javafx.scene.control.CheckBox; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; /** * Applies a filtering control to a provided {@link TableView} instance. The filter will be applied immediately on construction, and can be * made visible by right-clicking the desired column to filter on. <br> * <br> * <b>Features</b><br> * -Convenient filter control holds a checklist of distinct items to include/exclude, much like an Excel filter.<br> * -New/removed records wi
Kotlin with StandAlone Complier
What is standalone compiler : standalone compiler is a complier that provide supportive files to compile and execute your program for only one language. ex : Jdk able to compile and execute only java code not php ,dotnet People who dont like to work or practice on Ides like Netbeans and Eclipse for those "StandAlone" compiler is the best option. Click on following link to download Standalone kotlin compiler : https://github.com/JetBrains/kotlin/releases/tag/v1.1.51 after downloading compiler unzip it , you get multiple folders in it. 1. Develop your kotlin file 2. compile it 3. execute it Develop Open Notepad (Windows ) / Text Editor (Linux) / Edie Text ( MAC) : type following program and save with any name with dot "kt" extension Example test.kt fun main(args:Array<String>){ println("I Love Kotlin"); } Save this test.kt file in bin folder of kotlin compiler : open ternminal or cmd
Comments
Post a Comment