blob: 9396af5c44a1d2dfd95e8f3e0240ce2c4c93ef6d (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.ui;
import com.vaadin.shared.ui.AbstractEmbeddedState;
import com.vaadin.terminal.Resource;
import com.vaadin.terminal.gwt.server.ResourceReference;
/**
* Abstract base for embedding components.
*
* @author Vaadin Ltd.
* @version
* @VERSION@
* @since 7.0
*/
@SuppressWarnings("serial")
public abstract class AbstractEmbedded extends AbstractComponent {
@Override
public AbstractEmbeddedState getState() {
return (AbstractEmbeddedState) super.getState();
}
/**
* Sets the object source resource. The dimensions are assumed if possible.
* The type is guessed from resource.
*
* @param source
* the source to set.
*/
public void setSource(Resource source) {
if (source == null) {
getState().setSource(null);
} else {
getState().setSource(new ResourceReference(source));
}
requestRepaint();
}
/**
* Get the object source resource.
*
* @return the source
*/
public Resource getSource() {
ResourceReference ref = ((ResourceReference) getState().getSource());
if (ref == null) {
return null;
} else {
return ref.getResource();
}
}
/**
* Sets this component's alternate text that can be presented instead of the
* component's normal content for accessibility purposes.
*
* @param altText
* A short, human-readable description of this component's
* content.
*/
public void setAlternateText(String altText) {
if (altText != getState().getAlternateText()
|| (altText != null && !altText.equals(getState()
.getAlternateText()))) {
getState().setAlternateText(altText);
requestRepaint();
}
}
/**
* Gets this component's alternate text that can be presented instead of the
* component's normal content for accessibility purposes.
*
* @returns Alternate text
*/
public String getAlternateText() {
return getState().getAlternateText();
}
}
|