Skip to content

Commit

Permalink
Add missing @SInCE for 8.0.5 and 7.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pleku authored and hesara committed Mar 30, 2017
1 parent f91410e commit 1f83a7d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 2 additions & 0 deletions client/src/main/java/com/vaadin/client/ComputedStyle.java
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ public double getMarginWidth() {
* Returns the current height, padding and border from the DOM.
*
* @return the computed height including padding and borders
* @since 8.0.5
*/
public double getHeightIncludingBorderPadding() {
double h = getHeight();
Expand All @@ -385,6 +386,7 @@ public double getHeightIncludingBorderPadding() {
* Returns the current width, padding and border from the DOM.
*
* @return the computed width including padding and borders
* @since 8.0.5
*/
public double getWidthIncludingBorderPadding() {
double w = getWidth();
Expand Down
2 changes: 1 addition & 1 deletion client/src/main/java/com/vaadin/client/ui/VFlash.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,11 @@ public void setEmbedParams(Map<String, String> params) {
*
* Triggers embed resizing if percentage sizes are in use.
*
* @since 7.7.8
* @param slotOffsetHeight
* offset height of the layout slot
* @param slotOffsetWidth
* offset width of the layout slot
* @since 7.7.8
*/
public void setSlotHeightAndWidth(int slotOffsetHeight,
int slotOffsetWidth) {
Expand Down
8 changes: 5 additions & 3 deletions server/src/main/java/com/vaadin/ui/themes/ValoTheme.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ public class ValoTheme {
* Styles the notification to look like {@link Type#ERROR_MESSAGE}, without
* setting the position and delay and without the close button. Can be
* combined with any other Notification style.
*
* @since 8.0.5
*/
public static final String NOTIFICATION_CRITICAL_ERROR = "critical-error";

Expand Down Expand Up @@ -1041,9 +1043,9 @@ public class ValoTheme {
*
* <p>
* The text content of the logo should be very short, since the logo area
* only shows approximately three letters. Using one of the
* Vaadin Icons is a good way to quickly create a logo for your
* application. Vaadin Icons are included in the Valo theme.
* only shows approximately three letters. Using one of the Vaadin Icons is
* a good way to quickly create a logo for your application. Vaadin Icons
* are included in the Valo theme.
* <p>
*
* <h4>Example</h4>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public class ApplicationConstants implements Serializable {
/**
* Configuration parameter giving the (in some cases relative) URL to the
* web application context root.
*
*
* @since 8.0.3
*/
public static final String CONTEXT_ROOT_URL = "contextRootUrl";
Expand Down Expand Up @@ -174,6 +174,8 @@ public class ApplicationConstants implements Serializable {

/**
* Content type to use for text/html responses (should always be UTF-8).
*
* @since 7.7.8
*/
public static final String CONTENT_TYPE_TEXT_HTML_UTF_8 = "text/html; charset=utf-8";

Expand Down

0 comments on commit 1f83a7d

Please sign in to comment.