BrightSide Workbench Full Report + Source Code
OverrideDouble.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2012 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 package org.turro.zkoss.input;
20 
21 import org.zkoss.zul.Doublebox;
22 import org.zkoss.zul.impl.InputElement;
23 
28 public class OverrideDouble extends OverrideInput {
29 
30  private double calculated, value;
31  private Doublebox editor;
32 
33  public double getEstimated() {
34  return calculated;
35  }
36 
37  public void setEstimated(double estimated) {
38  this.calculated = estimated;
39  }
40 
41  public double getValue() {
42  return editor.getValue();
43  }
44 
45  public void setValue(double value) {
46  this.value = value;
48  }
49 
50  @Override
51  protected InputElement getEditor() {
52  if(editor == null) {
53  editor = new Doublebox(value != 0.0 ?
54  value : calculated);
55  }
56  return editor;
57  }
58 
59  @Override
60  public boolean isCalculated() {
61  return editor.getValue().compareTo(calculated) == 0;
62  }
63 
64  @Override
65  protected void resetValue() {
66  editor.setValue(calculated);
67  }
68 
69  @Override
70  protected void setEditorValue() {
71  getEditor();
72  editor.setValue(value != 0.0 ?
73  value : calculated);
74  }
75 
76 }