| | |
| | | * |
| | | * |
| | | * Copyright 2008-2009 Sun Microsystems, Inc. |
| | | * Portions Copyright 2013 ForgeRock AS. |
| | | * Portions Copyright 2013-2014 ForgeRock AS. |
| | | */ |
| | | |
| | | package org.opends.guitools.controlpanel.ui; |
| | |
| | | |
| | | import org.opends.guitools.controlpanel.ui.nodes.BasicNode; |
| | | import org.opends.guitools.controlpanel.util.Utilities; |
| | | import org.opends.messages.Message; |
| | | import org.forgerock.i18n.LocalizableMessage; |
| | | |
| | | /** |
| | | * A basic panel that contains a browser. It is used in general in panels that |
| | |
| | | */ |
| | | public class LDAPEntrySelectionPanel extends AbstractBrowseEntriesPanel |
| | | { |
| | | private Message title; |
| | | private LocalizableMessage title; |
| | | private Filter f; |
| | | |
| | | private String[] dns; |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public Message getTitle() |
| | | public LocalizableMessage getTitle() |
| | | { |
| | | return title; |
| | | } |
| | |
| | | * Sets the title that will be displayed in the dialog containing this panel. |
| | | * @param title the title. |
| | | */ |
| | | public void setTitle(Message title) |
| | | public void setTitle(LocalizableMessage title) |
| | | { |
| | | this.title = title; |
| | | Window w = Utilities.getParentDialog(this); |