blob: 757444aaef7e8067bfd77283bf4aefb48e688239 [file] [log] [blame]
/*****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.apache.cayenne.modeler.layout;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.cayenne.modeler.adapters.DataMapAdapter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javafx.fxml.FXML;
import javafx.scene.control.CheckBox;
import javafx.scene.control.TextField;
public class DataMapLayout
extends AbstractViewLayout
implements DetailEditorSupport<DataMapAdapter>
{
private static final Logger LOGGER = LoggerFactory.getLogger(DataMapLayout.class);
// private MainWindowLayout mainWindow;
@FXML
private TextField dataMapNameTextField;
@FXML
private CheckBox quoteSqlIdentifiersCheckBox;
private DataMapAdapter dataMapAdapter;
private List<Binding<?>> bindings;
public DataMapLayout(final MainWindowSupport parentComponent) throws IOException
{
super(parentComponent, "/layouts/DataMapLayout.fxml");
}
@Override
public void setPropertyAdapter(final DataMapAdapter dataMapAdapter)
{
this.dataMapAdapter = dataMapAdapter;
}
@Override
public void initializeBindings()
{
bindings = new ArrayList<>();
bindings.add(new Binding<>(dataMapNameTextField.textProperty(), dataMapAdapter.nameProperty()));
bindings.add(new Binding<>(quoteSqlIdentifiersCheckBox.selectedProperty(), dataMapAdapter.quoteSQLIdentifiersProperty()));
}
@Override
public List<Binding<?>> getBindings()
{
return bindings;
}
// @Override
// public void beginEditing()
// {
// LOGGER.debug("begin editing " + this);
//
// DetailEditorSupport.super.beginEditing();
//// dataMapNameTextField.textProperty().bindBidirectional(dataMapAdapter.nameProperty());
//// quoteSqlIdentifiersCheckBox.selectedProperty().bindBidirectional(dataMapAdapter.quoteSQLIdentifiersProperty());
// }
//
// @Override
// public void endEditing()
// {
// LOGGER.debug("end editing " + this);
//
// DetailEditorSupport.super.endEditing();
//// dataMapNameTextField.textProperty().unbindBidirectional(dataMapAdapter.nameProperty());
//// quoteSqlIdentifiersCheckBox.selectedProperty().unbindBidirectional(dataMapAdapter.quoteSQLIdentifiersProperty());
// }
}