blob: d63a1f475ee2022117853d8397bb03eb8577ab52 [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.eclipselink.ui.internal.details.orm;
import org.eclipse.jpt.eclipselink.core.context.orm.OrmEclipseLinkCaching;
import org.eclipse.jpt.eclipselink.ui.internal.details.EclipseLinkCachingComposite;
import org.eclipse.jpt.ui.internal.widgets.Pane;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
/**
* This pane shows the caching options.
* <p>
* Here the layout of this pane:
* <pre>
* -----------------------------------------------------------------------------
* | x Shared |
* | CacheTypeComposite |
* | CacheSizeComposite |
* | > Advanced |
* | ExpiryComposite |
* | AlwaysRefreshComposite |
* | RefreshOnlyIfNewerComposite |
* | DisableHitsComposite |
* | CacheCoordinationComposite |
* | ExistenceTypeComposite |
* -----------------------------------------------------------------------------</pre>
*
* @see Entity
* @see EclipseLinkCaching
* @see JavaEclipseLinkEntityComposite - The parent container
* @see EclipseLinkCacheTypeComposite
* @see EclipseLinkCacheSizeComposite
* @see EclipseLinkAlwaysRefreshComposite
* @see EclipseLinkRefreshOnlyIfNewerComposite
* @see EclipseLinkDisableHitsComposite
*
* @version 2.1
* @since 2.1
*/
public class OrmEclipseLinkCachingComposite extends EclipseLinkCachingComposite<OrmEclipseLinkCaching>
{
public OrmEclipseLinkCachingComposite(Pane<?> parentPane,
PropertyValueModel<OrmEclipseLinkCaching> subjectHolder,
Composite parent) {
super(parentPane, subjectHolder, parent);
}
@Override
protected void initializeExistenceCheckingComposite(Composite parent) {
new OrmEclipseLinkExistenceCheckingComposite(this, parent);
}
}