This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
*/ | |
package com.bugabinga.widgets; | |
import com.google.gwt.dom.client.Style.Unit; | |
import com.google.gwt.resources.client.DataResource; | |
import com.google.gwt.resources.client.ImageResource; | |
import com.google.gwt.user.client.DOM; | |
import com.google.gwt.user.client.Element; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.bugabinga.net.client.widget.dialog; | |
import com.google.gwt.event.shared.HandlerRegistration; | |
import com.google.gwt.user.client.ui.HTML; | |
import com.google.gwt.user.client.ui.HasHTML; | |
import com.google.gwt.user.client.ui.HasText; | |
import com.googlecode.mgwt.dom.client.event.tap.HasTapHandlers; | |
import com.googlecode.mgwt.dom.client.event.tap.TapEvent; | |
import com.googlecode.mgwt.dom.client.event.tap.TapHandler; | |
import com.googlecode.mgwt.ui.client.dialog.Dialog; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package application; | |
import javafx.animation.RotateTransition; | |
import javafx.application.Application; | |
import javafx.scene.Scene; | |
import javafx.scene.control.ContentDisplay; | |
import javafx.scene.control.Label; | |
import javafx.scene.control.TextArea; | |
import javafx.scene.control.TextField; | |
import javafx.scene.image.ImageView; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package application; | |
import java.util.function.Supplier; | |
import javafx.animation.Animation; | |
import javafx.animation.FadeTransition; | |
import javafx.animation.Interpolator; | |
import javafx.animation.RotateTransition; | |
import javafx.animation.ScaleTransition; | |
import javafx.application.Application; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package application; | |
import java.text.MessageFormat; | |
import javafx.animation.FadeTransition; | |
import javafx.animation.Interpolator; | |
import javafx.application.Application; | |
import javafx.beans.property.DoubleProperty; | |
import javafx.beans.property.Property; | |
import javafx.beans.property.SimpleDoubleProperty; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MaybeBaby { | |
public final Optional<String> data; | |
public MaybeBaby(String data) { | |
this.data = Optional.of(data) ; | |
} | |
public MaybeBaby() { | |
data = Optional.empty() ; | |
} | |
public static main(String[] args) { | |
MaybeBaby no = new MaybeBaby() ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.isp.lpt.progress; | |
import java.util.Random; | |
import java.util.concurrent.CountDownLatch; | |
import java.util.concurrent.Executors; | |
import java.util.stream.IntStream; | |
import java.util.stream.Stream; | |
import javafx.application.Application; | |
import javafx.application.Platform; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.application.Application; | |
import javafx.geometry.Pos; | |
import javafx.scene.Scene; | |
import javafx.scene.control.Button; | |
import javafx.scene.layout.HBox; | |
import javafx.scene.layout.Priority; | |
import javafx.stage.Stage; | |
public class ToolbarCustomExample extends Application |
OlderNewer