Java tutorial
/** * Copyright 2006 gworks.com.au * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. (http://www.apache.org/licenses/LICENSE-2.0) * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for * the specific language governing permissions and limitations under the License. * * <dhamma-message src="Atisha (11th century Tibetan Buddhist master)"> * The greatest achievement is selflessness. The greatest worth is self-mastery. * The greatest quality is seeking to serve others. The greatest precept is continual awareness. * The greatest medicine is the emptiness of everything. The greatest action is not conforming with the worlds ways. * The greatest magic is transmuting the passions. The greatest generosity is non-attachment. * The greatest goodness is a peaceful mind. The greatest patience is humility. * The greatest effort is not concerned with results. The greatest meditation is a mind that lets go. * The greatest wisdom is seeing through appearances. * </dhamma-message> * * @author Ashin Wimalajeewa (ash) */ package au.com.gworks.gwt.petstore.client; import org.javaongems.gwk.client.SearchBar; import org.javaongems.std.client.EastWestHorizPanels; import com.google.gwt.user.client.ui.Composite; import com.google.gwt.user.client.ui.Image; import com.google.gwt.user.client.ui.Label; public class StoreSearchBar extends Composite { private EastWestHorizPanels container; private SearchBar searchBar; public StoreSearchBar() { container = new EastWestHorizPanels(); initWidget(container); setStyleName("ps-StoreSearchBar"); Image logoImg = new Image("splash.gif"); logoImg.setStyleName("ps-StoreSearchBar-logo"); container.getWest().add(logoImg); Label applName = new Label("gwt-Petstore"); container.getWest().add(applName); applName.setStyleName("ps-StoreSearchBar-title"); searchBar = new SearchBar(); container.getEast().add(searchBar); } public void setSearchListener(SearchBar.Listener lsnr) { searchBar.setListener(lsnr); } }