Merge pull request #3958 from MherBaghinyan/BAEL-1638

BAEL-1638
This commit is contained in:
Loredana Crusoveanu 2018-04-09 13:17:03 +03:00 committed by GitHub
commit dca0a7c474
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 30 additions and 6 deletions

6
javafx/.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
# Created by .ignore support plugin (hsz.mobi)
.idea
classes
target
*.iml
out

3
javafx/README.md Normal file
View File

@ -0,0 +1,3 @@
### Relevant Articles:
-

15
javafx/pom.xml Normal file
View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent-modules</artifactId>
<groupId>com.baeldung</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>javafx</artifactId>
</project>

View File

@ -1,4 +1,4 @@
package com.baeldung.javafx;
package com.baeldung;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;

View File

@ -1,4 +1,4 @@
package com.baeldung.javafx.model;
package com.baeldung.model;
import javafx.beans.property.*;

View File

@ -1,7 +1,7 @@
package com.baeldung.javafx.view;
package com.baeldung.view;
import com.baeldung.javafx.model.Person;
import com.baeldung.model.Person;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.concurrent.Task;
@ -11,7 +11,6 @@ import javafx.scene.control.*;
import javafx.scene.input.KeyCode;
import javafx.scene.layout.VBox;
import java.util.List;
import java.util.stream.Collectors;
public class SearchController {

View File

@ -7,7 +7,7 @@
<?import javafx.scene.layout.*?>
<AnchorPane xmlns:fx="http://javafx.com/fxml"
xmlns="http://javafx.com/javafx"
fx:controller="com.baeldung.javafx.view.SearchController"
fx:controller="com.baeldung.view.SearchController"
prefHeight="400.0" prefWidth="600.0">
<children>

View File

@ -101,6 +101,7 @@
<module>javax-servlets</module>
<module>javaxval</module>
<module>jaxb</module>
<module>javafx</module>
<module>jgroups</module>
<module>jee-7</module>
<!-- <module>jhipster/jhipster-monolithic</module> -->