Browse Source

Add @since to isWindowsPhone(). (#14425)

Change-Id: Ia4c212ead39d7b71c56db586c0a8559935cae263
tags/7.4.0.beta1
Sauli Tähkäpää 9 years ago
parent
commit
255b4e5075

+ 1
- 0
server/src/com/vaadin/server/WebBrowser.java View File

* @return true if the user is using Windows Phone, false if the user is not * @return true if the user is using Windows Phone, false if the user is not
* using Windows Phone or if no information on the browser is * using Windows Phone or if no information on the browser is
* present * present
* @since 7.3.2
*/ */
public boolean isWindowsPhone() { public boolean isWindowsPhone() {
return browserDetails.isWindowsPhone(); return browserDetails.isWindowsPhone();

+ 1
- 0
shared/src/com/vaadin/shared/VBrowserDetails.java View File

* Tests if the browser is run on Windows Phone. * Tests if the browser is run on Windows Phone.
* *
* @return true if run on Windows Phone, false otherwise * @return true if run on Windows Phone, false otherwise
* @since 7.3.2
*/ */
public boolean isWindowsPhone() { public boolean isWindowsPhone() {
return isWindowsPhone; return isWindowsPhone;

Loading…
Cancel
Save