Java tutorial
/* * Copyright (c) 2008-2017 Haulmont. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * 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. */ package com.haulmont.cuba.web.widgets; import com.haulmont.cuba.web.widgets.client.tokenlistlabel.CubaTokenListLabelServerRpc; import com.haulmont.cuba.web.widgets.client.tokenlistlabel.CubaTokenListLabelState; import com.vaadin.ui.Panel; import java.util.ArrayList; import java.util.List; public class CubaTokenListLabel extends Panel { private List<RemoveTokenListener> listeners; private ClickListener clickListener; public CubaTokenListLabel() { CubaTokenListLabelServerRpc rpc = new CubaTokenListLabelServerRpc() { @Override public void removeToken() { fireRemoveListeners(); } @Override public void itemClick() { fireClick(); } }; registerRpc(rpc); } @Override protected CubaTokenListLabelState getState() { return (CubaTokenListLabelState) super.getState(); } @Override protected CubaTokenListLabelState getState(boolean markAsDirty) { return (CubaTokenListLabelState) super.getState(markAsDirty); } public void addListener(RemoveTokenListener listener) { if (listeners == null) { listeners = new ArrayList<>(); } listeners.add(listener); } public void removeListener(RemoveTokenListener listener) { if (listeners != null) { listeners.remove(listener); if (listeners.isEmpty()) { listeners = null; } } } public void setClickListener(ClickListener clickListener) { this.clickListener = clickListener; getState().canOpen = clickListener != null; } private void fireRemoveListeners() { if (listeners != null) { for (final RemoveTokenListener listener : listeners) { listener.removeToken(this); } } } private void fireClick() { if (clickListener != null) { clickListener.onClick(this); } } public interface RemoveTokenListener { void removeToken(CubaTokenListLabel source); } public interface ClickListener { void onClick(CubaTokenListLabel source); } public void setText(String text) { getState().text = text; } public String getText() { return getState(false).text; } public boolean isEditable() { return getState(false).editable; } public void setEditable(boolean editable) { getState().editable = editable; } }