Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRoope Jourio
7,308 PointsIncompatible types?
Code not working whenever I run it.
Error message:
http://i.imgur.com/3ULJ8sY.png
Home.java
package com.teamtreehouse.pomodoro.controllers;
import com.teamtreehouse.pomodoro.model.Attempt;
import com.teamtreehouse.pomodoro.model.AttemptKind;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.Label;
import javafx.scene.layout.VBox;
public class Home {
@FXML
private VBox container;
@FXML
private Label title;
private Attempt mCurrentAttempt;
private void prepareAttempt(AttemptKind kind) {
clearAttemptStyles();
mCurrentAttempt = new Attempt(kind, "");
addAttemptStyle(kind);
title.setText(kind.getDisplayName());
}
private void addAttemptStyle(AttemptKind kind) {
container.getStyleClass().add(kind.toString().toLowerCase());
}
private void clearAttemptStyles() {
for (AttemptKind kind : AttemptKind.values()) {
container.getStyleClass().remove(kind.toString().toLowerCase());
}
}
public void DEBUG(ActionEvent actionEvent) {
System.out.println("HI MOM");
}
}
package com.teamtreehouse.pomodoro.model;
public enum AttemptKind {
FOCUS(25 * 60, "Focus time"),
BREAK(5 * 60, "Break time");
private int mTotalSeconds;
private String mDisplayName;
AttemptKind(int totalSeconds, String displayName) {
mTotalSeconds = totalSeconds;
mDisplayName = displayName;
}
public int getTotalSeconds() {
return mTotalSeconds;
}
public String getDisplayName() {
return mDisplayName;
}
}
3 Answers
David Jonsson
4,895 PointsCraig auto-generates the Attempt class constructor 5:20 into "build-a-javafx-application/build-a-pomodoro-app/the-model" If you also auto-generated the constructor the order might have been reversed without you noticing it. It should be (AttemptKind kind, String message)
Roope Jourio
7,308 Pointsbump
Tee Abdul
8,411 PointsHow does your Attempt Constructor look like? Make sure you have AttemptKind and String as parameters.