blob: d3a0b13f4abf99942345f577275471002fb25421 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 Sybase, Inc. 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:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.facesconfig.ui.pageflow.properties;
import org.eclipse.core.resources.IProject;
import org.eclipse.jface.window.Window;
import org.eclipse.jst.jsf.facesconfig.ui.pageflow.model.PageflowPage;
import org.eclipse.jst.jsf.facesconfig.ui.util.WebrootUtil;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
/**
* Dialog Cell Editor for Page path browser.
*
* @author Xiao-guang Zhang
*/
public class PagePathDialogCellEditor extends EditableDialogCellEditor {
PageflowPage element;
/*
* (non-Javadoc)
*
* @see DialogCellEditor#DialogCellEditor()
*/
public PagePathDialogCellEditor() {
super();
}
/*
* (non-Javadoc)
*
* @see DialogCellEditor#DialogCellEditor(Composite parent)
*/
public PagePathDialogCellEditor(Composite parent, PageflowPage element) {
super(parent);
this.element = element;
}
/*
* (non-Javadoc)
*
* @see DialogCellEditor#DialogCellEditor(Composite parent, int style)
*/
public PagePathDialogCellEditor(Composite parent, int style) {
super(parent, style);
}
/*
* (non-Javadoc)
*
* @see DialogCellEditor#openDialogBox(Control)
*/
protected Object openDialogBox(Control cellEditorWindow) {
String jsfSelection = "";
if (getDefaultText() != null && getDefaultText().getText().length() > 0) {
jsfSelection = getDefaultText().getText();
IProject project = WebrootUtil.getProject(element);
ProjectWebPageSelectionDialog dlg = new ProjectWebPageSelectionDialog(
cellEditorWindow.getShell(), project);
if (dlg.open() == Window.OK) {
jsfSelection = dlg.getResultFilePath();
}
}
return jsfSelection;
}
}