/* * Copyright (c) 2011 PonySDK * Owners: * Luciano Broussal <luciano.broussal AT gmail.com> * Mathieu Barbier <mathieu.barbier AT gmail.com> * Nicolas Ciaravola <nicolas.ciaravola.pro AT gmail.com> * * WebSite: * http://code.google.com/p/pony-sdk/ * * 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.ponysdk.core.ui.basic; import java.util.Objects; import com.ponysdk.core.model.ServerToClientModel; import com.ponysdk.core.ui.basic.event.PHasHTML; import com.ponysdk.core.writer.ModelWriter; /** * Abstract base class for {@link PButton}, {@link PCheckBox}. */ abstract class PButtonBase extends PFocusWidget implements PHasHTML { private String text; private String html; PButtonBase() { } PButtonBase(final String text) { this.text = text; } PButtonBase(final String text, final String html) { this.text = text; this.html = html; } @Override protected void enrichOnInit(final ModelWriter writer) { super.enrichOnInit(writer); if (text != null) writer.write(ServerToClientModel.TEXT, text); if (html != null) writer.write(ServerToClientModel.HTML, html); } @Override public String getHTML() { return html; } @Override public void setHTML(final String html) { if (Objects.equals(this.html, html)) return; this.html = html; this.text = null; saveUpdate(ServerToClientModel.HTML, html); } @Override public String getText() { return text; } @Override public void setText(final String text) { if (Objects.equals(this.text, text)) return; this.text = text; this.html = null; saveUpdate(ServerToClientModel.TEXT, this.text); } @Override public String toString() { return super.toString() + ", text=" + text + ", html=" + html; } }