add media bulk editor see #4730
[taxeditor.git] / eu.etaxonomy.taxeditor.bulkeditor / src / main / java / eu / etaxonomy / taxeditor / bulkeditor / command / BulkEditorPropertyTester.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.bulkeditor.command;
12
13 import org.apache.log4j.Logger;
14 import org.eclipse.core.expressions.PropertyTester;
15 import org.eclipse.ui.IEditorInput;
16
17 import eu.etaxonomy.taxeditor.bulkeditor.BulkEditor;
18 import eu.etaxonomy.taxeditor.bulkeditor.input.AbstractBulkEditorInput;
19 import eu.etaxonomy.taxeditor.bulkeditor.input.GroupEditorInput;
20 import eu.etaxonomy.taxeditor.bulkeditor.input.MediaEditorInput;
21 import eu.etaxonomy.taxeditor.bulkeditor.input.OccurrenceEditorInput;
22 import eu.etaxonomy.taxeditor.bulkeditor.input.TaxonEditorInput;
23
24 /**
25 * <p>BulkEditorPropertyTester class.</p>
26 *
27 * @author p.ciardelli
28 * @created 21.09.2009
29 * @version 1.0
30 */
31 public class BulkEditorPropertyTester extends PropertyTester {
32
33 @SuppressWarnings("unused")
34 private static final Logger logger = Logger
35 .getLogger(BulkEditorPropertyTester.class);
36
37 private static final String IS_MERGING_ENABLED = "isMergingEnabled";
38
39 public static final String IS_GROUP_EDITOR = "isGroupEditor";
40 public static final String IS_DERIVED_UNIT_EDITOR = "isDerivedUnitEditor";
41 public static final String IS_TAXON_EDITOR = "isTaxonEditor";
42 public static final String IS_CONVERT_ENABLED = "isConvertingEnabled";
43 public static final String IS_PERSON = "isPerson";
44 public static final String IS_TEAM = "isTeam";
45 public static final String IS_MEDIA_EDITOR = "isMediaEditor";
46 /* (non-Javadoc)
47 * @see org.eclipse.core.expressions.IPropertyTester#test(java.lang.Object, java.lang.String, java.lang.Object[], java.lang.Object)
48 */
49 /** {@inheritDoc} */
50 @Override
51 public boolean test(Object receiver, String property, Object[] args,
52 Object expectedValue) {
53 BulkEditor bulkEditor = null;
54
55
56 bulkEditor = (BulkEditor) receiver;
57 if (IS_MERGING_ENABLED.equals(property)) {
58 IEditorInput input = bulkEditor.getEditorInput();
59 if (input instanceof AbstractBulkEditorInput) {
60 return ((AbstractBulkEditorInput<?>) input).isMergingEnabled();
61 }
62 }
63 if (IS_CONVERT_ENABLED.equals(property)) {
64 IEditorInput input = bulkEditor.getEditorInput();
65 if (input instanceof AbstractBulkEditorInput) {
66 return ((AbstractBulkEditorInput<?>) input).isConvertingEnabled();
67 }
68 }
69 else if(IS_GROUP_EDITOR.equals(property)){
70 return bulkEditor.getEditorInput() instanceof GroupEditorInput;
71 }
72 else if (IS_DERIVED_UNIT_EDITOR.equals(property)){
73 return bulkEditor.getEditorInput() instanceof OccurrenceEditorInput;
74 }
75 else if(IS_TAXON_EDITOR.equals(property)){
76 return bulkEditor.getEditorInput() instanceof TaxonEditorInput;
77 } else if(IS_MEDIA_EDITOR.equals(property)){
78 return bulkEditor.getEditorInput() instanceof MediaEditorInput;
79 }
80
81 // if (("isPublishFlagEditingEnabled").equals(property)) {
82 // IEditorInput input = bulkEditor.getEditorInput();
83 // if (input instanceof NameEditorInput) {
84 // return ((NameEditorInput) input).isPublishFlagEnabled();
85 // }
86 // }
87 return false;
88 }
89 }