blob: 9114ad1edcbbd3da91678ae3f7dae81ccf9f2930 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.eclipselink.ui.internal.v2_0.persistence.options;
import org.eclipse.jpt.eclipselink.core.v2_0.context.persistence.options.Options2_0;
import org.eclipse.jpt.ui.internal.jpa2.Jpt2_0UiMessages;
import org.eclipse.jpt.ui.internal.widgets.IntegerCombo;
import org.eclipse.jpt.ui.internal.widgets.Pane;
import org.eclipse.jpt.utility.internal.model.value.PropertyAspectAdapter;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.jpt.utility.model.value.WritablePropertyValueModel;
import org.eclipse.swt.widgets.Composite;
/**
* QueryConfigurationComposite
*/
public class QueryConfigurationComposite extends Pane<Options2_0>
{
/**
* Creates a new <code>QueryConfigurationComposite</code>.
*
* @param parentController
* The parent container of this one
* @param parent
* The parent container
*/
public QueryConfigurationComposite(
Pane<Options2_0> parentComposite,
Composite parent) {
super(parentComposite, parent);
}
@Override
protected void initializeLayout(Composite container) {
this.addQueryTimeoutCombo(container);
}
private void addQueryTimeoutCombo(Composite container) {
new IntegerCombo<Options2_0>(this, container) {
@Override
protected String getLabelText() {
return Jpt2_0UiMessages.QueryConfigurationComposite_queryTimeoutLabel;
}
@Override
protected String getHelpId() {
return null; // TODO
}
@Override
protected PropertyValueModel<Integer> buildDefaultHolder() {
return new PropertyAspectAdapter<Options2_0, Integer>(this.getSubjectHolder()) {
@Override
protected Integer buildValue_() {
return this.subject.getDefaultQueryTimeout();
}
};
}
@Override
protected WritablePropertyValueModel<Integer> buildSelectedItemHolder() {
return new PropertyAspectAdapter<Options2_0, Integer>(this.getSubjectHolder(), Options2_0.QUERY_TIMEOUT_PROPERTY) {
@Override
protected Integer buildValue_() {
return this.subject.getQueryTimeout();
}
@Override
protected void setValue_(Integer value) {
this.subject.setQueryTimeout(value);
}
};
}
};
}
}