package schedule;/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
//package jonscheduler;

import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;
import java.util.logging.Level;
import java.util.logging.Logger;
import javafx.beans.property.SimpleStringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.stage.Stage;

/**
 * FXML Controller class
 *
 * @author jmiran03
 */
public class MonthlyView_Controller implements Initializable {

    Stage stage;
           
//    private ObservableList<TimeRow> dataList = FXCollections.observableArrayList(
//            new TimeRow("7:00AM"), new TimeRow("8:00AM"), new TimeRow("9:00AM"),
//            new TimeRow("10:00AM"), new TimeRow("11:00AM"), new TimeRow("12:00PM"),
//            new TimeRow("1:00PM"), new TimeRow("2:00PM"), new TimeRow("3:00PM"),
//            new TimeRow("4:00PM"), new TimeRow("5:00PM"), new TimeRow("6:00PM"),
//            new TimeRow("7:00PM"), new TimeRow("8:00PM"), new TimeRow("9:00PM"),
//            new TimeRow("10:00PM"));

    @Override
    public void initialize(URL url, ResourceBundle rb) {
//        columnTime.setCellValueFactory(
//                new PropertyValueFactory<TimeRow, String>("time"));
//
//        tableView.setItems(dataList);
    }
}