Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0ddce2ee6c7b6e24fe5927b5158d433975f0e47b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/*****************************************************************************
 * Copyright (c) 2012 CEA LIST.
 *
 *
 * 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:
 *  Saadia DHOUIB (CEA LIST) - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.export.dialog;

import java.util.Comparator;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.papyrus.uml.export.messages.Messages;
import org.eclipse.papyrus.uml.export.util.ProfilesLabelProvider;
import org.eclipse.papyrus.uml.extensionpoints.Activator;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.dialogs.FilteredItemsSelectionDialog;
import org.eclipse.uml2.uml.Profile;



/**
 * The Class ProfilesToExportSelectionDialog.
 */
public class ProfilesToExportSelectionDialog extends FilteredItemsSelectionDialog {

	/** all elements that can be selected by the dialog. */
	Object[] totalInput;

	/** The imported profiles label provider. */
	private ProfilesLabelProvider importedProfilesLabelProvider;

	/** ID for this dialog preferences section. */
	protected static final String DIALOG_SETTINGS = Activator.PLUGIN_ID + "dialogs.exportedprofiles"; //$NON-NLS-1$



	/**
	 * Instantiates a new profiles to export selection dialog.
	 *
	 * @param shell
	 *            the shell
	 * @param multi
	 *            the multi
	 * @param input
	 *            the input
	 * @param title
	 *            the title
	 */
	public ProfilesToExportSelectionDialog(Shell shell, boolean multi, Object[] input, String title) {
		super(shell, multi);
		importedProfilesLabelProvider = new ProfilesLabelProvider();
		setTitle(title);
		setInitialPattern("**"); //$NON-NLS-1$
		setListLabelProvider(importedProfilesLabelProvider);
		this.totalInput = input;

	}

	/**
	 * @see org.eclipse.ui.dialogs.FilteredItemsSelectionDialog#getElementName(java.lang.Object)
	 *
	 * @param item
	 * @return
	 */

	@Override
	public String getElementName(Object item) {
		if (!(item instanceof Profile)) {
			return null;
		}
		// System.err.println(((Profile)item).getName());

		return ((Profile) item).getName();
	}



	/**
	 * @see org.eclipse.ui.dialogs.FilteredItemsSelectionDialog#createExtendedContentArea(org.eclipse.swt.widgets.Composite)
	 *
	 * @param parent
	 * @return
	 */

	@Override
	protected Control createExtendedContentArea(Composite parent) {
		// nothing
		return null;
	}

	/*
	 * (non-Javadoc)
	 *
	 * @see org.eclipse.ui.dialogs.FilteredItemsSelectionDialog#createFilter()
	 */
	/**
	 * @see org.eclipse.ui.dialogs.FilteredItemsSelectionDialog#createFilter()
	 *
	 * @return
	 */

	@Override
	protected ItemsFilter createFilter() {
		return new ProfileFilter() {
		};
	}

	/**
	 * Filter for extension points.
	 */
	private class ProfileFilter extends ItemsFilter {

		/**
		 * {@inheritDoc}
		 */
		@Override
		public boolean isConsistentItem(Object item) {
			if (item instanceof Profile) {
				return true;
			}
			return false;
		}

		/**
		 * @see org.eclipse.ui.dialogs.FilteredItemsSelectionDialog.ItemsFilter#matchItem(java.lang.Object)
		 *
		 * @param item
		 * @return
		 */

		@Override
		public boolean matchItem(Object item) {
			if ((item instanceof Profile)) {
				return true;
			}
			return false;
		}


	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	protected Comparator<Profile> getItemsComparator() {
		Comparator<Profile> comp = new Comparator<Profile>() {

			@Override
			public int compare(Profile o1, Profile o2) {
				return o1.getName().compareTo(o2.getName());
			}
		};
		return comp;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	protected IDialogSettings getDialogSettings() {
		IDialogSettings settings = Activator.getDefault().getDialogSettings().getSection(DIALOG_SETTINGS);
		if (settings == null) {
			settings = Activator.getDefault().getDialogSettings().addNewSection(DIALOG_SETTINGS);
		}
		return settings;
	}

	/**
	 * @see org.eclipse.ui.dialogs.FilteredItemsSelectionDialog#validateItem(java.lang.Object)
	 *
	 * @param item
	 * @return
	 */

	@Override
	protected IStatus validateItem(Object item) {
		// TODO Auto-generated method stub
		return new Status(IStatus.OK, Activator.PLUGIN_ID, ""); //$NON-NLS-1$
	}



	/**
	 * {@inheritDoc}
	 */
	@Override
	protected void fillContentProvider(AbstractContentProvider contentProvider, ItemsFilter itemsFilter, IProgressMonitor progressMonitor) throws CoreException {
		if (progressMonitor != null) {
			progressMonitor.beginTask(Messages.ProfilesToExportSelectionDialog_3, totalInput.length);
		}
		for (int i = 0; i < totalInput.length; i++) {
			contentProvider.add(totalInput[i], itemsFilter);
			progressMonitor.worked(1);
		}
		if (progressMonitor != null) {
			progressMonitor.done();
		}

	}


}

Back to the top