Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/mappings/details/EclipseLinkJoinFetchComposite.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/mappings/details/EclipseLinkJoinFetchComposite.java113
1 files changed, 113 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/mappings/details/EclipseLinkJoinFetchComposite.java b/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/mappings/details/EclipseLinkJoinFetchComposite.java
new file mode 100644
index 0000000000..92652d34c9
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/mappings/details/EclipseLinkJoinFetchComposite.java
@@ -0,0 +1,113 @@
+/*******************************************************************************
+ * 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.mappings.details;
+
+import java.util.Collection;
+import org.eclipse.jpt.core.internal.JptCoreMessages;
+import org.eclipse.jpt.eclipselink.core.context.EclipseLinkJoinFetch;
+import org.eclipse.jpt.eclipselink.core.context.EclipseLinkJoinFetchType;
+import org.eclipse.jpt.eclipselink.ui.internal.mappings.EclipseLinkUiMappingsMessages;
+import org.eclipse.jpt.ui.internal.widgets.EnumFormComboViewer;
+import org.eclipse.jpt.ui.internal.widgets.FormPane;
+import org.eclipse.jpt.utility.model.value.PropertyValueModel;
+import org.eclipse.swt.widgets.Composite;
+
+/**
+ * Here the layout of this pane:
+ * <pre>
+ * -----------------------------------------------------------------------------
+ * | ---------------------------------------------------------- |
+ * | Join Fetch: | |v| |
+ * | ---------------------------------------------------------- |
+ * -----------------------------------------------------------------------------</pre>
+ *
+ * @see Fetchable
+ * @see BasicMappingComposite - A container of this widget
+ * @see ManyToManyMappingComposite - A container of this widget
+ * @see ManyToOneMappingComposite - A container of this widget
+ * @see OneToManyMappingComposite - A container of this widget
+ * @see OneToOneMappingComposite - A container of this widget
+ *
+ * @version 2.1
+ * @since 2.1
+ */
+public class EclipseLinkJoinFetchComposite extends FormPane<EclipseLinkJoinFetch> {
+
+ /**
+ * Creates a new <code>JoinFetchComposite</code>.
+ *
+ * @param parentPane The parent container of this one
+ * @param parent The parent container
+ */
+ public EclipseLinkJoinFetchComposite(FormPane<?> parentPane,
+ PropertyValueModel<? extends EclipseLinkJoinFetch> subjectHolder,
+ Composite parent) {
+
+ super(parentPane, subjectHolder, parent);
+ }
+
+ @Override
+ protected void initializeLayout(Composite container) {
+ addLabeledComposite(
+ container,
+ addLabel(
+ container,
+ EclipseLinkUiMappingsMessages.EclipseLinkJoinFetchComposite_label),
+ addJoinFetchTypeCombo(container).getControl(),
+ null
+ );
+ }
+
+
+ private EnumFormComboViewer<EclipseLinkJoinFetch, EclipseLinkJoinFetchType> addJoinFetchTypeCombo(Composite container) {
+
+ return new EnumFormComboViewer<EclipseLinkJoinFetch, EclipseLinkJoinFetchType>(this, container) {
+
+ @Override
+ protected void addPropertyNames(Collection<String> propertyNames) {
+ super.addPropertyNames(propertyNames);
+ propertyNames.add(EclipseLinkJoinFetch.VALUE_PROPERTY);
+ }
+
+ @Override
+ protected EclipseLinkJoinFetchType[] getChoices() {
+ return EclipseLinkJoinFetchType.values();
+ }
+
+ @Override
+ protected EclipseLinkJoinFetchType getDefaultValue() {
+ return null;
+ }
+
+ @Override
+ protected String displayString(EclipseLinkJoinFetchType value) {
+ return buildDisplayString(
+ EclipseLinkUiMappingsMessages.class,
+ EclipseLinkJoinFetchComposite.this,
+ value
+ );
+ }
+
+ @Override
+ protected String nullDisplayString() {
+ return JptCoreMessages.NONE;
+ }
+
+ @Override
+ protected EclipseLinkJoinFetchType getValue() {
+ return getSubject().getValue();
+ }
+
+ @Override
+ protected void setValue(EclipseLinkJoinFetchType value) {
+ getSubject().setValue(value);
+ }
+ };
+ }
+}

Back to the top