64 lines
2.0 KiB
Java
Executable File
64 lines
2.0 KiB
Java
Executable File
/*
|
|
* Copyright (C) 2002-2004 Red Hat Inc. All Rights Reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation; either version 2.1 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
package com.arsdigita.cms.ui;
|
|
|
|
import com.arsdigita.bebop.Label;
|
|
import com.arsdigita.bebop.Page;
|
|
import com.arsdigita.bebop.form.Submit;
|
|
import com.arsdigita.bebop.form.TextField;
|
|
import com.arsdigita.bebop.parameters.StringParameter;
|
|
import com.arsdigita.util.Assert;
|
|
|
|
/**
|
|
* Form to search for parties to be added to a staff group.
|
|
*
|
|
* @author Scott Seago <sseago@redhat.com>
|
|
* @version $Id: PartySearchForm.java 1942 2009-05-29 07:53:23Z terry $
|
|
*/
|
|
public class PartySearchForm extends BaseForm {
|
|
|
|
private final static String SEARCH_LABEL = "Search";
|
|
|
|
private final TextField m_search;
|
|
|
|
public PartySearchForm() {
|
|
super("SearchParties", gz("cms.ui.search"));
|
|
|
|
addComponent(new Label(gz("cms.ui.search_prompt")));
|
|
|
|
m_search = new TextField(new StringParameter("query"));
|
|
m_search.setSize(40);
|
|
addComponent(m_search);
|
|
|
|
addAction(new Submit("finish", gz("cms.ui.search")));
|
|
addAction(new Cancel());
|
|
|
|
}
|
|
|
|
public final void register(final Page page) {
|
|
super.register(page);
|
|
|
|
Assert.isTrue(page.stateContains(this));
|
|
}
|
|
|
|
public TextField getSearchWidget() {
|
|
return m_search;
|
|
}
|
|
}
|