blob: afe83b5a10fecb277181a584812bc6b1306e8aa4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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.jpa.eclipselink.ui.internal.persistence.logging;
import org.eclipse.jpt.common.ui.internal.JptCommonUiMessages;
import org.eclipse.jpt.common.ui.internal.widgets.Pane;
import org.eclipse.jpt.common.utility.internal.model.value.PropertyAspectAdapter;
import org.eclipse.jpt.common.utility.internal.model.value.TransformationPropertyValueModel;
import org.eclipse.jpt.common.utility.model.value.PropertyValueModel;
import org.eclipse.jpt.common.utility.model.value.WritablePropertyValueModel;
import org.eclipse.jpt.jpa.eclipselink.core.context.persistence.logging.Logging;
import org.eclipse.jpt.jpa.eclipselink.ui.internal.EclipseLinkHelpContextIds;
import org.eclipse.jpt.jpa.eclipselink.ui.internal.EclipseLinkUiMessages;
import org.eclipse.osgi.util.NLS;
import org.eclipse.swt.widgets.Composite;
/**
* TimestampComposite
*/
public class TimestampComposite extends Pane<Logging>
{
/**
* Creates a new <code>TimestampComposite</code>.
*
* @param parentController
* The parent container of this one
* @param parent
* The parent container
*/
public TimestampComposite(
Pane<? extends Logging> parentComposite,
Composite parent) {
super(parentComposite, parent);
}
@Override
protected void initializeLayout(Composite container) {
this.addTriStateCheckBoxWithDefault(
container,
EclipseLinkUiMessages.PersistenceXmlLoggingTab_timestampLabel,
this.buildTimestampHolder(),
this.buildTimestampStringHolder(),
EclipseLinkHelpContextIds.PERSISTENCE_LOGGING_TIMESTAMP
);
}
private WritablePropertyValueModel<Boolean> buildTimestampHolder() {
return new PropertyAspectAdapter<Logging, Boolean>(getSubjectHolder(), Logging.TIMESTAMP_PROPERTY) {
@Override
protected Boolean buildValue_() {
return this.subject.getTimestamp();
}
@Override
protected void setValue_(Boolean value) {
this.subject.setTimestamp(value);
}
};
}
private PropertyValueModel<String> buildTimestampStringHolder() {
return new TransformationPropertyValueModel<Boolean, String>(buildDefaultTimestampHolder()) {
@Override
protected String transform(Boolean value) {
if (value != null) {
String defaultStringValue = value.booleanValue() ? JptCommonUiMessages.Boolean_True : JptCommonUiMessages.Boolean_False;
return NLS.bind(EclipseLinkUiMessages.PersistenceXmlLoggingTab_timestampLabelDefault, defaultStringValue);
}
return EclipseLinkUiMessages.PersistenceXmlLoggingTab_timestampLabel;
}
};
}
private PropertyValueModel<Boolean> buildDefaultTimestampHolder() {
return new PropertyAspectAdapter<Logging, Boolean>(
getSubjectHolder(),
Logging.TIMESTAMP_PROPERTY)
{
@Override
protected Boolean buildValue_() {
if (this.subject.getTimestamp() != null) {
return null;
}
return this.subject.getDefaultTimestamp();
}
};
}
}