Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/dialogs/ProfilePropertyPage.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/dialogs/ProfilePropertyPage.java60
1 files changed, 60 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/dialogs/ProfilePropertyPage.java b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/dialogs/ProfilePropertyPage.java
new file mode 100644
index 000000000..1ece4c65c
--- /dev/null
+++ b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/dialogs/ProfilePropertyPage.java
@@ -0,0 +1,60 @@
+/*******************************************************************************
+ * Copyright (c) 2007 IBM Corporation and others.
+ * 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:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.equinox.p2.ui.dialogs;
+
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.equinox.internal.p2.ui.ProvUIMessages;
+import org.eclipse.equinox.p2.engine.Profile;
+import org.eclipse.jface.dialogs.Dialog;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.events.ModifyEvent;
+import org.eclipse.swt.events.ModifyListener;
+import org.eclipse.swt.widgets.*;
+import org.eclipse.ui.dialogs.PropertyPage;
+
+/**
+ * PropertyPage that shows an IU's properties
+ *
+ * @since 3.4
+ */
+public class ProfilePropertyPage extends PropertyPage {
+
+ private ProfileGroup profileGroup;
+
+ protected Control createContents(Composite parent) {
+ Profile profile = (Profile) getElement().getAdapter(Profile.class);
+ if (profile == null) {
+ Label label = new Label(parent, SWT.DEFAULT);
+ label.setText(ProvUIMessages.ProfilePropertyPage_NoProfileSelected);
+ }
+ profileGroup = new ProfileGroup(parent, profile, new ModifyListener() {
+ public void modifyText(ModifyEvent event) {
+ verifyComplete();
+ }
+ });
+ Dialog.applyDialogFont(profileGroup.getComposite());
+ verifyComplete();
+ return profileGroup.getComposite();
+ }
+
+ void verifyComplete() {
+ if (profileGroup == null) {
+ return;
+ }
+ IStatus status = profileGroup.verify();
+ setValid(status.isOK());
+ }
+
+ public boolean performOk() {
+ profileGroup.updateProfile();
+ return true;
+ }
+}

Back to the top