blob: bd9e689b982c47a320b6e757bc47532425c746da [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.connection;
import org.eclipse.jpt.eclipselink.core.internal.context.connection.Connection;
import org.eclipse.jpt.ui.internal.widgets.AbstractPane;
import org.eclipse.swt.widgets.Composite;
/** .
* CacheStatementsPropertiesComposite
*/
public class CacheStatementsPropertiesComposite extends AbstractPane<Connection>
{
public CacheStatementsPropertiesComposite(AbstractPane<Connection> parentComposite, Composite parent) {
super(parentComposite, parent);
}
@Override
protected void initializeLayout(Composite container) {
new CacheStatementsComposite(this, container);
new CacheStatementsSizeComposite(this, container);
}
}