blob: 649dd7db8b70345c4fccfb71af1a07d06d6d6252 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.authoring.ui.forms;
import org.eclipse.epf.authoring.ui.AuthoringUIResources;
import org.eclipse.epf.authoring.ui.AuthoringUIText;
import org.eclipse.epf.authoring.ui.filters.CategoryFilter;
import org.eclipse.epf.library.edit.IFilter;
import org.eclipse.epf.library.edit.itemsfilter.FilterConstants;
import org.eclipse.epf.library.edit.itemsfilter.VariabilityBaseElementFilter;
import org.eclipse.epf.uma.RoleSetGrouping;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IEditorSite;
import org.eclipse.ui.forms.editor.FormEditor;
/**
* The Description page for the Domain editor.
*
* @author Kelvin Low
* @author Shilpa Toraskar
* @since 1.0
*/
public class RoleSetGroupingDescriptionPage extends DescriptionFormPage {
private static final String FORM_PAGE_ID = "roleSetGroupingDescriptionPage"; //$NON-NLS-1$
private RoleSetGrouping roleSetGrouping;
/**
* Creates a new instance.
*/
public RoleSetGroupingDescriptionPage(FormEditor editor) {
super(editor, FORM_PAGE_ID, AuthoringUIText.DESCRIPTION_PAGE_TITLE);
}
/**
* @see org.eclipse.epf.authoring.ui.forms.DescriptionFormPage#init(org.eclipse.ui.IEditorSite, org.eclipse.ui.IEditorInput)
*/
public void init(IEditorSite site, IEditorInput input) {
super.init(site, input);
roleSetGrouping = (RoleSetGrouping) contentElement;
}
/**
* @see org.eclipse.epf.authoring.ui.forms.DescriptionFormPage#getContentElement()
*/
protected Object getContentElement() {
return roleSetGrouping;
}
/**
* @see org.eclipse.epf.authoring.ui.forms.DescriptionFormPage#getTabString()
*/
protected String getTabString() {
return FilterConstants.ROLESETS;
}
/**
* @see org.eclipse.epf.authoring.ui.forms.DescriptionFormPage#getFilter()
*/
protected IFilter getFilter() {
filter = new CategoryFilter() {
protected boolean childAccept(Object obj) {
return (obj instanceof RoleSetGrouping);
}
};
// set additional filter for variability base element checking
((CategoryFilter) filter)
.setAdditionalFilters(new IFilter[] { new VariabilityBaseElementFilter(
roleSetGrouping) });
return filter;
}
/**
* @see org.eclipse.epf.authoring.ui.forms.DescriptionFormPage#loadSectionDescription()
*/
public void loadSectionDescription() {
this.generalSectionDescription = AuthoringUIResources.rolesetgrouping_generalInfoSection_desc;
this.detailSectionDescription = AuthoringUIResources.rolesetgrouping_detailSection_desc;
this.variabilitySectionDescription = AuthoringUIResources.rolesetgrouping_variabilitySection_desc;
this.versionSectionDescription = AuthoringUIResources.rolesetgrouping_versionInfoSection_desc;
}
}