diff --git a/ccm-sci-types-organization/src/com/arsdigita/cms/contenttypes/ui/SciProjectPublicationsStep.java b/ccm-sci-types-organization/src/com/arsdigita/cms/contenttypes/ui/SciProjectPublicationsStep.java index 41b38615d..4f835eaba 100644 --- a/ccm-sci-types-organization/src/com/arsdigita/cms/contenttypes/ui/SciProjectPublicationsStep.java +++ b/ccm-sci-types-organization/src/com/arsdigita/cms/contenttypes/ui/SciProjectPublicationsStep.java @@ -4,11 +4,9 @@ */ package com.arsdigita.cms.contenttypes.ui; -import com.arsdigita.bebop.FormSection; import com.arsdigita.cms.ContentType; import com.arsdigita.cms.ItemSelectionModel; import com.arsdigita.cms.contentassets.ui.RelatedLinkPropertiesStep; -import com.arsdigita.cms.contentassets.ui.RelatedLinkPropertyForm; import com.arsdigita.cms.ui.authoring.AuthoringKitWizard; /** @@ -17,17 +15,12 @@ import com.arsdigita.cms.ui.authoring.AuthoringKitWizard; */ public class SciProjectPublicationsStep extends RelatedLinkPropertiesStep { + protected String m_linkListName = "SciProjectPublications"; + protected ContentType m_contentType = ContentType.findByAssociatedObjectType( + "com.arsdigita.cms.contenttypes.Publication"); + public SciProjectPublicationsStep(ItemSelectionModel itemModel, - AuthoringKitWizard parent) { + AuthoringKitWizard parent) { super(itemModel, parent); } - - @Override - protected FormSection getEditSheet() { - return new RelatedLinkPropertyForm(getItemSelectionModel(), - getLinkSelectionModel(), - ContentType. - findByAssociatedObjectType( - "com.arsdigita.cms.contenttypes.Publication")); - } }