blob: c9c6cd2dc18845e665ac6fa01c51ecf77b76e8f7 [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.Discipline;
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 Bingxue Xu
* @since 1.0
*/
public class DisciplineDescriptionPage extends DescriptionFormPage {
private static final String FORM_PAGE_ID = "disciplineDescriptionPage"; //$NON-NLS-1$
private Discipline discipline;
/**
* Creates a new instance.
*/
public DisciplineDescriptionPage(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);
discipline = (Discipline) contentElement;
}
/**
* @see org.eclipse.epf.authoring.ui.forms.DescriptionFormPage#getContentElement()
*/
protected Object getContentElement() {
return discipline;
}
/**
* @see org.eclipse.epf.authoring.ui.forms.DescriptionFormPage#getFilter()
*/
protected IFilter getFilter() {
filter = new CategoryFilter() {
protected boolean childAccept(Object obj) {
return (obj instanceof Discipline);
}
};
// set additional filter for variability base element checking
((CategoryFilter) filter)
.setAdditionalFilters(new IFilter[] { new VariabilityBaseElementFilter(
discipline) });
return filter;
}
protected String getTabString() {
return FilterConstants.DISCIPLINES;
}
/**
* @see org.eclipse.epf.authoring.ui.forms.DescriptionFormPage#loadSectionDescription()
*/
public void loadSectionDescription() {
this.generalSectionDescription = AuthoringUIResources.discipline_generalInfoSection_desc;
this.detailSectionDescription = AuthoringUIResources.discipline_detailSection_desc;
this.variabilitySectionDescription = AuthoringUIResources.discipline_variabilitySection_desc;
this.versionSectionDescription = AuthoringUIResources.discipline_versionInfoSection_desc;
}
}