blob: 17821ab3f0b66b41ab47c28069ab6aea73e610de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client.ui;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.vaadin.terminal.gwt.client.ApplicationConnection;
import com.vaadin.terminal.gwt.client.Paintable;
import com.vaadin.terminal.gwt.client.SimpleTree;
import com.vaadin.terminal.gwt.client.UIDL;
import com.vaadin.terminal.gwt.client.VUIDLBrowser;
public class VUnknownComponent extends Composite implements Paintable {
com.google.gwt.user.client.ui.Label caption = new com.google.gwt.user.client.ui.Label();;
SimpleTree uidlTree;
private VerticalPanel panel;
private String serverClassName = "unkwnown";
public VUnknownComponent() {
panel = new VerticalPanel();
panel.add(caption);
initWidget(panel);
setStyleName("vaadin-unknown");
caption.setStyleName("vaadin-unknown-caption");
}
public void setServerSideClassName(String serverClassName) {
this.serverClassName = serverClassName;
}
public void updateFromUIDL(UIDL uidl, ApplicationConnection client) {
if (client.updateComponent(this, uidl, false)) {
return;
}
setCaption("Widgetset does not contain implementation for "
+ serverClassName
+ ". Check its @ClientWidget mapping, widgetsets "
+ "GWT module description file and re-compile your"
+ " widgetset. In case you have downloaded a vaadin"
+ " add-on package, you might want to refer to "
+ "<a href='http://vaadin.com/using-addons'>add-on "
+ "instructions</a>. Unrendered UIDL:");
if (uidlTree != null) {
uidlTree.removeFromParent();
}
uidlTree = new VUIDLBrowser(uidl, client.getConfiguration());
uidlTree.open(true);
uidlTree.setText("Unrendered UIDL");
panel.add(uidlTree);
}
public void setCaption(String c) {
caption.getElement().setInnerHTML(c);
}
}
|