Engage us and get your service from professionals we’ve hand-picked for you. +(254) 729707173
Select your paper details and see how much our professional writing services will cost.
Our custom human-written papers from top essay writers are always free from plagiarism.
Your data and payment info stay secured every time you get our help from an essay writer.
Your money is safe with us. If your plans change, you can get it sent back to your card.
Our essay writing service has a nearly-perfect rating on Sitejabber that speaks for itself, but we always listen to what customers have to say about our help.
Let’s take a look at the scores of the average online writers vs. the performance of our professionals.
Based on the results of our internal research
With a team of 476 professionals, we always have a writer who can meet your highest expectations. Take a look at the profiles of our specialists to learn more about them.
We offer more than just hand-crafted papers customized for you. Here are more of our greatest perks.
Get instant answers to the questions that students ask most often.
See full FAQRequirements to get full credits in Documentation
1.A description of each method is also needed.
2.Some additional comments inside of methods to explain code that are hard to follow should be written.
You can look at the Java programs in the text book to see how comments are added to programs.
Minimal Submitted Files
You are required, but not limited, to turn in the following source files:
Assignment7.java (No need to be changed)
DrawingPane.java — to be completed.
You may add more classes or more methods than the specified ones. (You might need them.)
Skills to be Applied:
JavaFX
Classes may be needed:
Button, ComboBox, Color, Graphics, Line, ActionHandler, MouseHandler. You may use other classes.
Here is Assignment7.java:
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;public class Assignment7 extends Application
{
public void start(Stage primaryStage)
{
//create a DrawPane object. See DrawPane.java for details.
DrawingPane gui = new DrawingPane();
//put gui on top of the rootPane
StackPane rootPane = new StackPane();
rootPane.getChildren().add(gui);
// Create a scene and place rootPane in the stage
Scene scene = new Scene(rootPane, 600, 400);
primaryStage.setTitle("Line Drawing");
primaryStage.setScene(scene); // Place the scene in the stage
primaryStage.show(); // Display the stage
}
public static void main(String[] args)
{
Application.launch(args);
}
}
Here is DrawingPane.java (This is a semi-finished product, you need to add):
//import any classes necessary here
//----
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.layout.Pane;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.shape.Line;
import javafx.scene.paint.Color;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.geometry.Orientation;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.input.MouseEvent; import java.util.ArrayList;
public class DrawingPane extends BorderPane
{
private Button undoButton, eraseButton;
private ComboBox<String> colorCombo, widthCombo;
private ArrayList<Line> lineList;
private Pane canvas;
//declare any other necessary instance variables here
//----
//Constructor
public DrawingPane()
{
//Step #1: initialize instance variable and set up layout
undoButton = new Button("Undo");
eraseButton = new Button("Erase");
undoButton.setMinWidth(80.0);
eraseButton.setMinWidth(80.0);
//Create the color comboBox and width comboBox,
//----
//initialize lineList, it is a data structure we used
//to track the lines we created
//----
//topPane should contain two combo boxes and two buttons
HBox topPane = new HBox();
topPane.setSpacing(40);
topPane.setPadding(new Insets(10, 10, 10, 10));
topPane.setStyle("-fx-border-color: black");
//canvas is a Pane where we will draw lines
canvas = new Pane();
canvas.setStyle("-fx-background-color: white;");
//add the canvas at the center of the pane and top panel
//should have two combo boxes and two buttons
this.setCenter(canvas);
this.setTop(topPane);
//Step #3: Register the source nodes with its handler objects
canvas.setOnMousePressed(new MouseHandler());
//----
//----
}
//Step #2(A) - MouseHandler
private class MouseHandler implements EventHandler<MouseEvent>
{
public void handle(MouseEvent event)
{
//handle MouseEvent here
//Note: you can use if(event.getEventType()== MouseEvent.MOUSE_PRESSED)
//to check whether the mouse key is pressed, dragged or released
//write your own codes here
//----
}//end handle()
}//end MouseHandler
//Step #2(B)- A handler class used to handle events from Undo & Erase buttons
private class ButtonHandler implements EventHandler<ActionEvent>
{
public void handle(ActionEvent event)
{
//write your codes here
//----
}
}//end ButtonHandler
//Step #2(C)- A handler class used to handle colors
private class ColorHandler implements EventHandler<ActionEvent>
{
public void handle(ActionEvent event)
{
//write your own codes here
//----
}
}//end ColorHandler
//Step #2(D)- A handler class used to handle widths of lines
private class WidthHandler implements EventHandler<ActionEvent>
{
public void handle(ActionEvent event)
{
//write your own codes here
//----
}
}//end WidthHandler
}//end class DrawingPane
The remail details is in the picture file.
Unfortunately, there are many misconceptions about our industry. However, that shouldn’t prevent you from getting professional essay writing services, so let’s look at popular myths and bust them.
We admit that there are some dishonest companies that cheat customers out of their money or provide works of poor quality. There’s also plenty of legit professional essay services as well.
Our goal is to deliver quality academic help that’s tailored to your needs, so we match you with high-level professionals who get corresponding payments.
Again, some companies do that. But that will never happen if you purchase from a legitimate essay writer service like ours. We complete each order from scratch, so your papers can only contain original content and properly cited information.
We check each essay or research before we send it to you to guarantee that your paper is exclusive.
Actually, it’s entirely lawful if you’re doing it correctly. For instance, you can’t use professional essay writing assistance to cheat on a test. If you follow the rules, you won’t have anything to worry about.
Unique hand-crafted papers that match your needs can serve as excellent examples and boost your understanding of any subject.
On the contrary, anyone who wants to be an essay writer online has to go through a strict selection process. They need to be highly competent to complete this type of work, and many freelance authors on our team hold academic degrees, from Bachelor’s to PhDs.
In the end, only the best essay writers get to work for our homework writing service.