]> source.dussan.org Git - gwtquery.git/blob
50ffb209b6659cb70e1cb8bcd6972167f7f04137
[gwtquery.git] /
1 /*
2  * Copyright 2011, The gwtquery team.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * the License at
7  * 
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */
16 package com.google.gwt.query.client.plugins.widgets;
17
18 import com.google.gwt.dom.client.Element;
19 import com.google.gwt.dom.client.InputElement;
20 import com.google.gwt.query.client.plugins.widgets.WidgetFactory;
21 import com.google.gwt.query.client.plugins.widgets.WidgetsUtils;
22 import com.google.gwt.user.client.ui.TextBoxBase;
23
24 /**
25  * 
26  * 
27  */
28 public abstract class TextBoxBaseWidgetFactory<T extends TextBoxBase>
29     implements WidgetFactory<T> {
30
31   public T create(Element e) {
32     T textBox = createWidget();
33
34     if (getEquivalentTagName().equalsIgnoreCase(e.getTagName())) {
35       copyAttributes((InputElement) e.cast(),
36           (InputElement) textBox.getElement().cast());
37     } else {
38       textBox.setValue(e.getInnerText());
39     }
40     WidgetsUtils.replaceOrAppend(e, textBox);
41
42     return (T) textBox;
43   }
44   
45   protected String getEquivalentTagName(){
46     return "input";
47   }
48
49   protected void copyAttributes(Element src, Element dest) {
50     InputElement source = src.cast();
51     InputElement destination = dest.cast();
52     
53     destination.setAccessKey(source.getAccessKey());
54     destination.setDefaultValue(source.getDefaultValue());
55     destination.setDisabled(source.isDisabled());
56     destination.setMaxLength(source.getMaxLength());
57     destination.setReadOnly(source.isReadOnly());
58     destination.setSize(source.getSize());
59     destination.setName(source.getName());
60     destination.setValue(source.getValue());
61     
62   }
63
64   protected abstract T createWidget();
65 }