This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using BatchCat;/*Make sure you added BatchCat to your references!*/ | |
| namespace BCHandler | |
| { | |
| class BatchCatHandler |
This file contains hidden or 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 java.time.*; | |
| import javafx.animation.*; | |
| import javafx.application.*; | |
| import javafx.scene.*; | |
| import javafx.scene.control.*; | |
| import javafx.scene.layout.*; | |
| import javafx.stage.*; | |
| /** | |
| * |
This file contains hidden or 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
| Brittney ย 2 F | |
| Andra ย 3 F | |
| Elease ย 4 F | |
| Alejandrina ย 7 M | |
| Jefferey ย 11 M | |
| Gregoria ย 13 F | |
| Laquita ย 17 F | |
| Shyla ย 19 F | |
| Mona ย 23 F | |
| Joannie ย 29 F |
This file contains hidden or 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.scene.Scene; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.layout.VBox; | |
| import javafx.stage.Stage; | |
| /** | |
| * | |
| * @author blj0011 | |
| */ |
This file contains hidden or 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.beans.property.DoubleProperty; | |
| import javafx.beans.property.SimpleDoubleProperty; | |
| import javafx.scene.shape.Circle; | |
| /** | |
| * | |
| * @author sedri | |
| */ | |
| public class PVector{ |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <?import javafx.scene.control.Label?> | |
| <?import javafx.scene.layout.ColumnConstraints?> | |
| <?import javafx.scene.layout.GridPane?> | |
| <?import javafx.scene.layout.RowConstraints?> | |
| <?import javafx.scene.layout.StackPane?> | |
| <?import javafx.scene.text.Font?> | |
This file contains hidden or 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.scene.Scene; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.ComboBox; | |
| import javafx.scene.layout.VBox; | |
| import javafx.stage.Stage; | |
| /** | |
| * JavaFX App | |
| */ |
This file contains hidden or 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 java.time.LocalDate; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import javafx.application.Application; | |
| import javafx.geometry.Pos; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.layout.ColumnConstraints; | |
| import javafx.scene.layout.GridPane; |
This file contains hidden or 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
| public class Inventory { | |
| private String id; | |
| private String description; | |
| private boolean stock_status; | |
| private double item_price; | |
| public Inventory(String id, String description, boolean stock_status, double item_price) { | |
| this.id = id; | |
| this.description = description; |
This file contains hidden or 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 java.util.Optional; | |
| import javafx.application.Application; | |
| import javafx.collections.FXCollections; | |
| import javafx.collections.ObservableList; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.ListCell; | |
| import javafx.scene.control.ListView; | |
| import javafx.scene.control.TextInputDialog; | |
| import javafx.scene.input.MouseEvent; | |
| import javafx.scene.layout.VBox; |
OlderNewer