Browse Source

Javadoc fixes

tags/8.2.0.alpha2
Ahmed Ashour 6 years ago
parent
commit
229792f642

+ 1
- 1
client/src/main/java/com/vaadin/client/WidgetUtil.java View File

@@ -1336,7 +1336,7 @@ public class WidgetUtil {
* @param e
* element for enabling or disabling text selection
* @param enable
* <code>true</code> if selection is enabled; </code>false</code>
* <code>true</code> if selection is enabled; <code>false</code>
* if not
*/
public native static void setTextSelectionEnabled(Element e, boolean enable)

+ 3
- 3
client/src/main/java/com/vaadin/client/widget/grid/EventCellReference.java View File

@@ -87,7 +87,7 @@ public class EventCellReference<T> extends CellReference<T> {
* Is the cell reference for a cell in the header of the Grid.
*
* @since 7.5
* @return <code>true</true> if referenced cell is in the header,
* @return <code>true</code> if referenced cell is in the header,
* <code>false</code> if not
*/
public boolean isHeader() {
@@ -98,7 +98,7 @@ public class EventCellReference<T> extends CellReference<T> {
* Is the cell reference for a cell in the body of the Grid.
*
* @since 7.5
* @return <code>true</true> if referenced cell is in the body,
* @return <code>true</code> if referenced cell is in the body,
* <code>false</code> if not
*/
public boolean isBody() {
@@ -109,7 +109,7 @@ public class EventCellReference<T> extends CellReference<T> {
* Is the cell reference for a cell in the footer of the Grid.
*
* @since 7.5
* @return <code>true</true> if referenced cell is in the footer,
* @return <code>true</code> if referenced cell is in the footer,
* <code>false</code> if not
*/
public boolean isFooter() {

+ 2
- 2
compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java View File

@@ -5388,8 +5388,8 @@ public class VScrollTable extends FlowPanel

/**
* This method exists for the needs of {@link VTreeTable} only. May be
* removed or replaced in the future.</br>
* </br>
* removed or replaced in the future.<br>
* <br>
* Calculates the maximum indent of the hierarcyColumn, if applicable.
*/
protected void calculateMaxIndent() {

+ 3
- 3
compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/EventCellReference.java View File

@@ -87,7 +87,7 @@ public class EventCellReference<T> extends CellReference<T> {
* Is the cell reference for a cell in the header of the Grid.
*
* @since 7.5
* @return <code>true</true> if referenced cell is in the header,
* @return <code>true</code> if referenced cell is in the header,
* <code>false</code> if not
*/
public boolean isHeader() {
@@ -98,7 +98,7 @@ public class EventCellReference<T> extends CellReference<T> {
* Is the cell reference for a cell in the body of the Grid.
*
* @since 7.5
* @return <code>true</true> if referenced cell is in the body,
* @return <code>true</code> if referenced cell is in the body,
* <code>false</code> if not
*/
public boolean isBody() {
@@ -109,7 +109,7 @@ public class EventCellReference<T> extends CellReference<T> {
* Is the cell reference for a cell in the footer of the Grid.
*
* @since 7.5
* @return <code>true</true> if referenced cell is in the footer,
* @return <code>true</code> if referenced cell is in the footer,
* <code>false</code> if not
*/
public boolean isFooter() {

+ 1
- 1
compatibility-server/src/main/java/com/vaadin/v7/data/util/IndexedContainer.java View File

@@ -39,7 +39,7 @@ import com.vaadin.v7.data.util.filter.UnsupportedFilterException;
/**
* An implementation of the <code>{@link Container.Indexed}</code> interface
* with all important features.
* </p>
* <p>
*
* Features:
* <ul>

+ 0
- 1
compatibility-server/src/main/java/com/vaadin/v7/data/util/converter/DefaultConverterFactory.java View File

@@ -26,7 +26,6 @@ import com.vaadin.server.VaadinSession;
/**
* Default implementation of {@link ConverterFactory}. Provides converters for
* standard types like {@link String}, {@link Double} and {@link Date}.
* </p>
* <p>
* Custom converters can be provided by extending this class and using
* {@link VaadinSession#setConverterFactory(ConverterFactory)}.

+ 1
- 1
compatibility-server/src/main/java/com/vaadin/v7/ui/Calendar.java View File

@@ -783,7 +783,7 @@ public class Calendar extends AbstractLegacyComponent
}

/**
* Example: <code>setTimeFormat(TimeFormat.Format12H);</code></br>
* Example: <code>setTimeFormat(TimeFormat.Format12H);</code><br>
* Set to null, if you want the format being defined by the locale.
*
* @param format

+ 6
- 6
compatibility-server/src/main/java/com/vaadin/v7/ui/components/calendar/event/CalendarEvent.java View File

@@ -69,13 +69,13 @@ public interface CalendarEvent extends Serializable {
* Gets style name of event. In the client, style name will be set to the
* event's element class name and can be styled by CSS
* </p>
* Styling example:</br>
* <code>Java code: </br>
* Styling example:<br>
* <code>Java code: <br>
* event.setStyleName("color1");
* </br></br>
* CSS:</br>
* .v-calendar-event-color1 {</br>
* &nbsp;&nbsp;&nbsp;background-color: #9effae;</br>}</code>
* <br><br>
* CSS:<br>
* .v-calendar-event-color1 {<br>
* &nbsp;&nbsp;&nbsp;background-color: #9effae;<br>}</code>
*
* @return Style name.
*/

+ 0
- 1
server/src/main/java/com/vaadin/ui/Window.java View File

@@ -59,7 +59,6 @@ import com.vaadin.util.ReflectTools;
* A component that represents a floating popup window that can be added to a
* {@link UI}. A window is added to a {@code UI} using
* {@link UI#addWindow(Window)}.
* </p>
* <p>
* The contents of a window is set using {@link #setContent(Component)} or by
* using the {@link #Window(String, Component)} constructor.

Loading…
Cancel
Save