ref #8162 move OriginalSourceXXX to reference package
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / dialog / selection / AgentSelectionDialog.java
index afed317ecf90ac2e50ad082fba33631bd04cbb44..9b781f37e7f97d1e77f3b9e01c5585e96a1f1390 100644 (file)
@@ -13,11 +13,8 @@ import java.util.UUID;
 
 import org.eclipse.jface.viewers.LabelProvider;
 import org.eclipse.swt.events.SelectionListener;
-import org.eclipse.swt.widgets.Control;
 import org.eclipse.swt.widgets.Shell;
-import org.eclipse.swt.widgets.Text;
 
-import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
 import eu.etaxonomy.cdm.api.service.IAgentService;
 import eu.etaxonomy.cdm.model.agent.AgentBase;
 import eu.etaxonomy.cdm.model.agent.INomenclaturalAuthor;
@@ -40,12 +37,12 @@ public class AgentSelectionDialog extends
        /**
         *
         */
-       protected static final String PERSON = "Person";
+       protected static final String PERSON = "New Person";
        /**
         *
         */
-       protected static final String TEAM = "Team";
-       
+       protected static final String TEAM = "New Team";
+
        protected static boolean selectTeamMember;
 
        /**
@@ -56,8 +53,9 @@ public class AgentSelectionDialog extends
         * @param entity a {@link eu.etaxonomy.cdm.model.agent.AgentBase} object.
         * @return a {@link eu.etaxonomy.cdm.model.agent.AgentBase} object.
         */
-       public static AgentBase select(Shell shell, ConversationHolder conversation, AgentBase entity, boolean selectTeamMember) {
-               AgentSelectionDialog dialog = new AgentSelectionDialog(shell, conversation,
+       public static AgentBase select(Shell shell, //ConversationHolder conversation,
+               AgentBase entity, boolean selectTeamMember) {
+               AgentSelectionDialog dialog = new AgentSelectionDialog(shell, //conversation,
                                "Choose Agent", false, AgentSelectionDialog.class.getCanonicalName(), entity, selectTeamMember);
                return getSelectionFromDialog(dialog);
        }
@@ -72,8 +70,10 @@ public class AgentSelectionDialog extends
         * @param multi a boolean.
         * @param settings a {@link java.lang.String} object.
         */
-       protected AgentSelectionDialog(Shell shell, ConversationHolder conversation, String title, boolean multi, String settings, AgentBase agent, boolean selectTeamMember) {
-               super(shell, conversation, title, multi, settings, agent);
+       protected AgentSelectionDialog(Shell shell, //ConversationHolder conversation,
+               String title, boolean multi, String settings, AgentBase agent, boolean selectTeamMember) {
+               super(shell, //conversation,
+                       title, multi, settings, agent);
                this.selectTeamMember = selectTeamMember;
        }
 
@@ -123,33 +123,46 @@ public class AgentSelectionDialog extends
 
        /** {@inheritDoc} */
        @Override
-       protected String getNewWizardLinkText() {
+       protected String[] getNewWizardText() {
+           String[] result;
                if (this.selectTeamMember){
-                       return String.format("Create a new <a>%1s</a>", PERSON);
+                   result = new String[1];
+                   result[0] = PERSON;
+
+               }else{
+                   result = new String[2];
+            result[0] = PERSON;
+            result[1] = TEAM;
                }
-               return String.format("Create a new <a>%1s</a> or <a>%2s</a>", TEAM, PERSON);
+               return result;
        }
 
        /* (non-Javadoc)
         * @see eu.etaxonomy.taxeditor.dialogs.filteredSelection.AbstractFilteredCdmResourceSelectionDialog#getNewWizardLinkSelectionListener()
         */
        @Override
-       protected SelectionListener getNewWizardLinkSelectionListener() {
-               return super.getNewWizardLinkSelectionListener();
+       protected SelectionListener getNewWizardButtonSelectionListener() {
+               return super.getNewWizardButtonSelectionListener();
        }
 
-       /** {@inheritDoc} */
-       @Override
-       protected void initModel() {
-           Control control = getPatternControl();
-        String pattern = null;
-        if (control != null){
-            pattern = ((Text)control).getText();
-        }
-
-
-               model = CdmStore.getService(IAgentService.class).getUuidAndTitleCache(limitOfInitialElements, pattern);
-       }
+//     /** {@inheritDoc} */
+//     @Override
+//     protected void search() {
+//         Control control = getSearchField();
+//        String pattern = null;
+//        if (control != null){
+//            pattern = ((Text)control).getText();
+//        }
+//
+//     }
+
+    /* (non-Javadoc)
+     * @see eu.etaxonomy.taxeditor.ui.dialog.selection.AbstractFilteredCdmResourceSelectionDialog#callService(java.lang.String)
+     */
+    @Override
+    void callService(String pattern) {
+        model = CdmStore.getService(IAgentService.class).getUuidAndTitleCache(limitOfInitialElements, pattern);
+    }
 
 
 }