Skip to content

Commit

Permalink
Remove unnecessary full classname references
Browse files Browse the repository at this point in the history
  • Loading branch information
Teemu Suo-Anttila authored and hesara committed Mar 7, 2017
1 parent 6b4dffa commit 47beb11
Show file tree
Hide file tree
Showing 60 changed files with 308 additions and 906 deletions.
Expand Up @@ -18,8 +18,8 @@
/** /**
* Legacy ComponentConnector with {@code isReadOnly}. * Legacy ComponentConnector with {@code isReadOnly}.
* *
* @author teemusa * @since 8.0
* * @author Vaadin Ltd
*/ */
public interface ComponentConnector public interface ComponentConnector
extends com.vaadin.client.ComponentConnector { extends com.vaadin.client.ComponentConnector {
Expand Down
Expand Up @@ -101,7 +101,7 @@


/** /**
* Connects the client side {@link Grid} widget with the server side * Connects the client side {@link Grid} widget with the server side
* {@link com.vaadin.ui.components.grid.Grid} component. * <code>Grid</code> component.
* <p> * <p>
* The Grid is typed to JSONObject. The structure of the JSONObject is described * The Grid is typed to JSONObject. The structure of the JSONObject is described
* at {@link com.vaadin.shared.data.DataProviderRpc#setRowData(int, List) * at {@link com.vaadin.shared.data.DataProviderRpc#setRowData(int, List)
Expand Down
Expand Up @@ -502,7 +502,7 @@ public void setFocusedDate(Date selectedDate) {
/** /**
* For internal use only. May be removed or replaced in the future. * For internal use only. May be removed or replaced in the future.
* *
* @see com.vaadin.v7.client.ui.VTextualDate#buildDate() * @see VTextualDate#buildDate()
*/ */
@Override @Override
public void buildDate() { public void buildDate() {
Expand Down
Expand Up @@ -24,16 +24,17 @@
import com.vaadin.shared.ui.Connect; import com.vaadin.shared.ui.Connect;
import com.vaadin.shared.ui.Connect.LoadStyle; import com.vaadin.shared.ui.Connect.LoadStyle;
import com.vaadin.v7.shared.ui.colorpicker.ColorPickerServerRpc; import com.vaadin.v7.shared.ui.colorpicker.ColorPickerServerRpc;
import com.vaadin.v7.ui.ColorPickerArea;


/** /**
* A class that defines an implementation for a color picker connector. Connects * A class that defines an implementation for a color picker connector. Connects
* the server side {@link com.vaadin.ui.ColorPickerArea} with the client side * the server side {@link ColorPickerArea} with the client side counterpart
* counterpart {@link VColorPickerArea} * {@link VColorPickerArea}
* *
* @since 7.0.0 * @since 7.0.0
*/ */
@Deprecated @Deprecated
@Connect(value = com.vaadin.v7.ui.ColorPickerArea.class, loadStyle = LoadStyle.LAZY) @Connect(value = ColorPickerArea.class, loadStyle = LoadStyle.LAZY)
public class ColorPickerAreaConnector extends AbstractColorPickerConnector { public class ColorPickerAreaConnector extends AbstractColorPickerConnector {


private ColorPickerServerRpc rpc = RpcProxy private ColorPickerServerRpc rpc = RpcProxy
Expand Down
Expand Up @@ -23,16 +23,17 @@
import com.vaadin.shared.ui.Connect; import com.vaadin.shared.ui.Connect;
import com.vaadin.shared.ui.Connect.LoadStyle; import com.vaadin.shared.ui.Connect.LoadStyle;
import com.vaadin.v7.shared.ui.colorpicker.ColorPickerServerRpc; import com.vaadin.v7.shared.ui.colorpicker.ColorPickerServerRpc;
import com.vaadin.v7.ui.ColorPicker;


/** /**
* A class that defines default implementation for a color picker connector. * A class that defines default implementation for a color picker connector.
* Connects the server side {@link com.vaadin.ui.ColorPicker} with the client * Connects the server side {@link ColorPicker} with the client side counterpart
* side counterpart {@link VColorPicker} * {@link VColorPicker}
* *
* @since 7.0.0 * @since 7.0.0
*/ */
@Deprecated @Deprecated
@Connect(value = com.vaadin.v7.ui.ColorPicker.class, loadStyle = LoadStyle.LAZY) @Connect(value = ColorPicker.class, loadStyle = LoadStyle.LAZY)
public class ColorPickerConnector extends AbstractColorPickerConnector { public class ColorPickerConnector extends AbstractColorPickerConnector {


private ColorPickerServerRpc rpc = RpcProxy private ColorPickerServerRpc rpc = RpcProxy
Expand Down
Expand Up @@ -27,16 +27,16 @@
import com.vaadin.v7.client.ui.AbstractLegacyComponentConnector; import com.vaadin.v7.client.ui.AbstractLegacyComponentConnector;
import com.vaadin.v7.shared.ui.colorpicker.ColorPickerGradientServerRpc; import com.vaadin.v7.shared.ui.colorpicker.ColorPickerGradientServerRpc;
import com.vaadin.v7.shared.ui.colorpicker.ColorPickerGradientState; import com.vaadin.v7.shared.ui.colorpicker.ColorPickerGradientState;
import com.vaadin.v7.ui.components.colorpicker.ColorPickerGradient;


/** /**
* A class that defines the default implementation for a color picker gradient * A class that defines the default implementation for a color picker gradient
* connector. Connects the server side * connector. Connects the server side {@link ColorPickerGradient} with the
* {@link com.vaadin.ui.components.colorpicker.ColorPickerGradient} with the
* client side counterpart {@link VColorPickerGradient} * client side counterpart {@link VColorPickerGradient}
* *
* @since 7.0.0 * @since 7.0.0
*/ */
@Connect(value = com.vaadin.v7.ui.components.colorpicker.ColorPickerGradient.class, loadStyle = LoadStyle.LAZY) @Connect(value = ColorPickerGradient.class, loadStyle = LoadStyle.LAZY)
public class ColorPickerGradientConnector public class ColorPickerGradientConnector
extends AbstractLegacyComponentConnector implements MouseUpHandler { extends AbstractLegacyComponentConnector implements MouseUpHandler {


Expand Down
Expand Up @@ -27,16 +27,16 @@
import com.vaadin.v7.client.ui.AbstractLegacyComponentConnector; import com.vaadin.v7.client.ui.AbstractLegacyComponentConnector;
import com.vaadin.v7.shared.ui.colorpicker.ColorPickerGridServerRpc; import com.vaadin.v7.shared.ui.colorpicker.ColorPickerGridServerRpc;
import com.vaadin.v7.shared.ui.colorpicker.ColorPickerGridState; import com.vaadin.v7.shared.ui.colorpicker.ColorPickerGridState;
import com.vaadin.v7.ui.components.colorpicker.ColorPickerGrid;


/** /**
* A class that defines the default implementation for a color picker grid * A class that defines the default implementation for a color picker grid
* connector. Connects the server side * connector. Connects the server side {@link ColorPickerGrid} with the client
* {@link com.vaadin.ui.components.colorpicker.ColorPickerGrid} with the client
* side counterpart {@link VColorPickerGrid} * side counterpart {@link VColorPickerGrid}
* *
* @since 7.0.0 * @since 7.0.0
*/ */
@Connect(value = com.vaadin.v7.ui.components.colorpicker.ColorPickerGrid.class, loadStyle = LoadStyle.LAZY) @Connect(value = ColorPickerGrid.class, loadStyle = LoadStyle.LAZY)
public class ColorPickerGridConnector extends AbstractLegacyComponentConnector public class ColorPickerGridConnector extends AbstractLegacyComponentConnector
implements ClickHandler { implements ClickHandler {


Expand Down
Expand Up @@ -46,7 +46,7 @@ public class FormConnector extends AbstractComponentContainerConnector
private final ElementResizeListener footerResizeListener = new ElementResizeListener() { private final ElementResizeListener footerResizeListener = new ElementResizeListener() {
@Override @Override
public void onElementResize(ElementResizeEvent e) { public void onElementResize(ElementResizeEvent e) {
com.vaadin.v7.client.ui.VForm form = getWidget(); VForm form = getWidget();


LayoutManager lm = getLayoutManager(); LayoutManager lm = getLayoutManager();
int footerHeight = 0; int footerHeight = 0;
Expand Down
Expand Up @@ -23,26 +23,25 @@


/** /**
* A representation of the rows in each of the sections (header, body and * A representation of the rows in each of the sections (header, body and
* footer) in an {@link com.vaadin.v7.client.widgets.Escalator}. * footer) in an {@link Escalator}.
* *
* @since 7.4 * @since 7.4
* @author Vaadin Ltd * @author Vaadin Ltd
* @see com.vaadin.v7.client.widgets.Escalator#getHeader() * @see Escalator#getHeader()
* @see com.vaadin.v7.client.widgets.Escalator#getBody() * @see Escalator#getBody()
* @see com.vaadin.v7.client.widgets.Escalator#getFooter() * @see Escalator#getFooter()
* @see SpacerContainer * @see SpacerContainer
*/ */
public interface RowContainer { public interface RowContainer {


/** /**
* The row container for the body section in an * The row container for the body section in an {@link Escalator}.
* {@link com.vaadin.v7.client.widgets.Escalator}.
* <p> * <p>
* The body section can contain both rows and spacers. * The body section can contain both rows and spacers.
* *
* @since 7.5.0 * @since 7.5.0
* @author Vaadin Ltd * @author Vaadin Ltd
* @see com.vaadin.v7.client.widgets.Escalator#getBody() * @see Escalator#getBody()
*/ */
public interface BodyRowContainer extends RowContainer { public interface BodyRowContainer extends RowContainer {


Expand Down
Expand Up @@ -19,7 +19,7 @@


/** /**
* A representation of a spacer element in a * A representation of a spacer element in a
* {@link com.vaadin.v7.client.widget.escalator.RowContainer.BodyRowContainer}. * {@link RowContainer.BodyRowContainer}.
* *
* @since 7.5.0 * @since 7.5.0
* @author Vaadin Ltd * @author Vaadin Ltd
Expand Down
Expand Up @@ -744,7 +744,7 @@ public boolean setParent(Object itemId, Object newParentId)
* <p> * <p>
* The children must be first explicitly removed with * The children must be first explicitly removed with
* {@link #setParent(Object itemId, Object newParentId)}or * {@link #setParent(Object itemId, Object newParentId)}or
* {@link com.vaadin.v7.data.Container#removeItem(Object itemId)}. * {@link Container#removeItem(Object itemId)}.
* </p> * </p>
* *
* <p> * <p>
Expand All @@ -768,8 +768,9 @@ public boolean setChildrenAllowed(Object itemId,
/** /**
* Tests if the Item specified with <code>itemId</code> is a root Item. * Tests if the Item specified with <code>itemId</code> is a root Item.
* The hierarchical container can have more than one root and must have * The hierarchical container can have more than one root and must have
* at least one unless it is empty. The {@link #getParent(Object itemId)} * at least one unless it is empty. The
* method always returns <code>null</code> for root Items. * {@link #getParent(Object itemId)} method always returns
* <code>null</code> for root Items.
* *
* @param itemId * @param itemId
* ID of the Item whose root status is to be tested * ID of the Item whose root status is to be tested
Expand Down Expand Up @@ -846,8 +847,8 @@ public boolean removeItem(Object itemId)
* Adding items (if supported) to a filtered {@link Ordered} or * Adding items (if supported) to a filtered {@link Ordered} or
* {@link Indexed} container should insert them immediately after the * {@link Indexed} container should insert them immediately after the
* indicated visible item. The unfiltered position of items added at index * indicated visible item. The unfiltered position of items added at index
* 0, at index {@link com.vaadin.v7.data.Container#size()} or at an * 0, at index {@link Container#size()} or at an undefined position is up to
* undefined position is up to the implementation. * the implementation.
* </p> * </p>
* <p> * <p>
* The functionality of SimpleFilterable can be implemented using the * The functionality of SimpleFilterable can be implemented using the
Expand Down Expand Up @@ -983,8 +984,8 @@ public boolean passesFilter(Object itemId, Item item)
* Adding items (if supported) to a filtered {@link Ordered} or * Adding items (if supported) to a filtered {@link Ordered} or
* {@link Indexed} container should insert them immediately after the * {@link Indexed} container should insert them immediately after the
* indicated visible item. However, the unfiltered position of items added * indicated visible item. However, the unfiltered position of items added
* at index 0, at index {@link com.vaadin.v7.data.Container#size()} or at an * at index 0, at index {@link Container#size()} or at an undefined position
* undefined position is up to the implementation. * is up to the implementation.
* </p> * </p>
* *
* <p> * <p>
Expand Down Expand Up @@ -1267,6 +1268,7 @@ public void removePropertySetChangeListener(
* {@link #removePropertySetChangeListener(PropertySetChangeListener)} * {@link #removePropertySetChangeListener(PropertySetChangeListener)}
**/ **/
@Deprecated @Deprecated
public void removeListener(Container.PropertySetChangeListener listener); public void removeListener(
Container.PropertySetChangeListener listener);
} }
} }
Expand Up @@ -28,7 +28,7 @@
* *
* @author Vaadin Ltd. * @author Vaadin Ltd.
* @since 3.0 * @since 3.0
* @see com.vaadin.v7.data.Validator * @see Validator
*/ */
@Deprecated @Deprecated
public interface Validatable extends Serializable { public interface Validatable extends Serializable {
Expand Down
Expand Up @@ -30,9 +30,8 @@
* Interface that implements a method for validating if an {@link Object} is * Interface that implements a method for validating if an {@link Object} is
* valid or not. * valid or not.
* <p> * <p>
* Implementors of this class can be added to any * Implementors of this class can be added to any {@link Validatable}
* {@link com.vaadin.v7.data.Validatable Validatable} implementor to verify its * implementor to verify its value.
* value.
* </p> * </p>
* <p> * <p>
* {@link #validate(Object)} can be used to check if a value is valid. An * {@link #validate(Object)} can be used to check if a value is valid. An
Expand Down
Expand Up @@ -120,7 +120,7 @@ public void addReadOnlyStatusChangeListener(


/** /**
* @deprecated As of 7.0, replaced by * @deprecated As of 7.0, replaced by
* {@link #addReadOnlyStatusChangeListener(com.vaadin.v7.data.Property.ReadOnlyStatusChangeListener)} * {@link #addReadOnlyStatusChangeListener(Property.ReadOnlyStatusChangeListener)}
**/ **/
@Override @Override
@Deprecated @Deprecated
Expand All @@ -144,7 +144,7 @@ public void removeReadOnlyStatusChangeListener(


/** /**
* @deprecated As of 7.0, replaced by * @deprecated As of 7.0, replaced by
* {@link #removeReadOnlyStatusChangeListener(com.vaadin.v7.data.Property.ReadOnlyStatusChangeListener)} * {@link #removeReadOnlyStatusChangeListener(Property.ReadOnlyStatusChangeListener)}
**/ **/
@Override @Override
@Deprecated @Deprecated
Expand Down Expand Up @@ -207,7 +207,7 @@ public void addValueChangeListener(ValueChangeListener listener) {


/** /**
* @deprecated As of 7.0, replaced by * @deprecated As of 7.0, replaced by
* {@link #addValueChangeListener(com.vaadin.v7.data.Property.ValueChangeListener)} * {@link #addValueChangeListener(Property.ValueChangeListener)}
**/ **/
@Override @Override
@Deprecated @Deprecated
Expand All @@ -225,7 +225,7 @@ public void removeValueChangeListener(ValueChangeListener listener) {


/** /**
* @deprecated As of 7.0, replaced by * @deprecated As of 7.0, replaced by
* {@link #removeValueChangeListener(com.vaadin.v7.data.Property.ValueChangeListener)} * {@link #removeValueChangeListener(Property.ValueChangeListener)}
**/ **/
@Override @Override
@Deprecated @Deprecated
Expand Down
Expand Up @@ -17,6 +17,8 @@


import java.util.Collection; import java.util.Collection;


import com.vaadin.v7.data.Container;

/** /**
* An in-memory container for JavaBeans. * An in-memory container for JavaBeans.
* *
Expand All @@ -40,8 +42,8 @@
* *
* <p> * <p>
* If a bean id resolver is set using * If a bean id resolver is set using
* {@link #setBeanIdResolver(com.vaadin.v7.data.util.AbstractBeanContainer.BeanIdResolver)} * {@link #setBeanIdResolver(AbstractBeanContainer.BeanIdResolver)} or
* or {@link #setBeanIdProperty(Object)}, the methods {@link #addBean(Object)}, * {@link #setBeanIdProperty(Object)}, the methods {@link #addBean(Object)},
* {@link #addBeanAfter(Object, Object)}, {@link #addBeanAt(int, Object)} and * {@link #addBeanAfter(Object, Object)}, {@link #addBeanAt(int, Object)} and
* {@link #addAll(java.util.Collection)} can be used to add items to the * {@link #addAll(java.util.Collection)} can be used to add items to the
* container. If one of these methods is called, the resolver is used to * container. If one of these methods is called, the resolver is used to
Expand Down Expand Up @@ -79,7 +81,7 @@ public BeanContainer(Class<? super BEANTYPE> type) {
/** /**
* Adds the bean to the Container. * Adds the bean to the Container.
* *
* @see com.com.vaadin.v7.data.Container#addItem(Object) * @see Container#addItem(Object)
*/ */
@Override @Override
public BeanItem<BEANTYPE> addItem(IDTYPE itemId, BEANTYPE bean) { public BeanItem<BEANTYPE> addItem(IDTYPE itemId, BEANTYPE bean) {
Expand All @@ -93,8 +95,7 @@ public BeanItem<BEANTYPE> addItem(IDTYPE itemId, BEANTYPE bean) {
/** /**
* Adds the bean after the given item id. * Adds the bean after the given item id.
* *
* @see com.com.vaadin.v7.data.Container.Ordered#addItemAfter(Object, * @see Container.Ordered#addItemAfter(Object, Object)
* Object)
*/ */
@Override @Override
public BeanItem<BEANTYPE> addItemAfter(IDTYPE previousItemId, public BeanItem<BEANTYPE> addItemAfter(IDTYPE previousItemId,
Expand Down
Expand Up @@ -34,7 +34,7 @@
/** /**
* <p> * <p>
* A wrapper class for adding external hierarchy to containers not implementing * A wrapper class for adding external hierarchy to containers not implementing
* the {@link com.vaadin.v7.data.Container.Hierarchical} interface. * the {@link Container.Hierarchical} interface.
* </p> * </p>
* *
* <p> * <p>
Expand Down Expand Up @@ -357,7 +357,7 @@ public Collection<?> rootItemIds() {
* this method fails and <code>false</code> is returned; the children must * this method fails and <code>false</code> is returned; the children must
* be first explicitly removed with * be first explicitly removed with
* {@link #setParent(Object itemId, Object newParentId)} or * {@link #setParent(Object itemId, Object newParentId)} or
* {@link com.vaadin.v7.data.Container#removeItem(Object itemId)}. * {@link Container#removeItem(Object itemId)}.
* </p> * </p>
* *
* @param itemId * @param itemId
Expand Down Expand Up @@ -737,7 +737,7 @@ public void addItemSetChangeListener(


/** /**
* @deprecated As of 7.0, replaced by * @deprecated As of 7.0, replaced by
* {@link #addItemSetChangeListener(com.vaadin.v7.data.Container.ItemSetChangeListener)} * {@link #addItemSetChangeListener(Container.ItemSetChangeListener)}
**/ **/
@Override @Override
@Deprecated @Deprecated
Expand All @@ -762,7 +762,7 @@ public void removeItemSetChangeListener(


/** /**
* @deprecated As of 7.0, replaced by * @deprecated As of 7.0, replaced by
* {@link #removeItemSetChangeListener(com.vaadin.v7.data.Container.ItemSetChangeListener)} * {@link #removeItemSetChangeListener(Container.ItemSetChangeListener)}
**/ **/
@Override @Override
@Deprecated @Deprecated
Expand All @@ -787,7 +787,7 @@ public void addPropertySetChangeListener(


/** /**
* @deprecated As of 7.0, replaced by * @deprecated As of 7.0, replaced by
* {@link #addPropertySetChangeListener(com.vaadin.v7.data.Container.PropertySetChangeListener)} * {@link #addPropertySetChangeListener(Container.PropertySetChangeListener)}
**/ **/
@Override @Override
@Deprecated @Deprecated
Expand All @@ -812,7 +812,7 @@ public void removePropertySetChangeListener(


/** /**
* @deprecated As of 7.0, replaced by * @deprecated As of 7.0, replaced by
* {@link #removePropertySetChangeListener(com.vaadin.v7.data.Container.PropertySetChangeListener)} * {@link #removePropertySetChangeListener(Container.PropertySetChangeListener)}
**/ **/
@Override @Override
@Deprecated @Deprecated
Expand Down

0 comments on commit 47beb11

Please sign in to comment.