summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Englund <marc.englund@itmill.com>2009-05-12 13:38:14 +0000
committerMarc Englund <marc.englund@itmill.com>2009-05-12 13:38:14 +0000
commite4eef90084a88e49cec95f3804c7b0587170a6dd (patch)
tree4e8b51a458266e3ccf28d4e97b2bbd96944d3b2c
parent03c3e6adb59d3480564b9d541fdf65ceb0089ed0 (diff)
downloadvaadin-framework-e4eef90084a88e49cec95f3804c7b0587170a6dd.tar.gz
vaadin-framework-e4eef90084a88e49cec95f3804c7b0587170a6dd.zip
More renaming itmill->vaadin for #2904
svn changeset:7766/svn branch:6.0
-rw-r--r--src/com/vaadin/data/util/IndexedContainer.java75
-rw-r--r--src/com/vaadin/ui/BaseFieldFactory.java18
-rw-r--r--src/com/vaadin/ui/GridLayout.java10
3 files changed, 38 insertions, 65 deletions
diff --git a/src/com/vaadin/data/util/IndexedContainer.java b/src/com/vaadin/data/util/IndexedContainer.java
index 4cad9e3995..9ce00697a2 100644
--- a/src/com/vaadin/data/util/IndexedContainer.java
+++ b/src/com/vaadin/data/util/IndexedContainer.java
@@ -190,8 +190,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container#getContainerProperty(java.lang.Object,
+ * @see com.vaadin.data.Container#getContainerProperty(java.lang.Object,
* java.lang.Object)
*/
public Property getContainerProperty(Object itemId, Object propertyId) {
@@ -238,8 +237,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container#addContainerProperty(java.lang.Object,
+ * @see com.vaadin.data.Container#addContainerProperty(java.lang.Object,
* java.lang.Class, java.lang.Object)
*/
public boolean addContainerProperty(Object propertyId, Class type,
@@ -386,9 +384,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container#removeContainerProperty(java.lang.Object
- * )
+ * @see com.vaadin.data.Container#removeContainerProperty(java.lang.Object )
*/
public boolean removeContainerProperty(Object propertyId) {
@@ -456,8 +452,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.Ordered#nextItemId(java.lang.Object)
+ * @see com.vaadin.data.Container.Ordered#nextItemId(java.lang.Object)
*/
public Object nextItemId(Object itemId) {
if (filteredItemIds != null) {
@@ -483,8 +478,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.Ordered#prevItemId(java.lang.Object)
+ * @see com.vaadin.data.Container.Ordered#prevItemId(java.lang.Object)
*/
public Object prevItemId(Object itemId) {
if (filteredItemIds != null) {
@@ -512,8 +506,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.Ordered#isFirstId(java.lang.Object)
+ * @see com.vaadin.data.Container.Ordered#isFirstId(java.lang.Object)
*/
public boolean isFirstId(Object itemId) {
if (filteredItemIds != null) {
@@ -551,8 +544,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.Ordered#addItemAfter(java.lang.Object,
+ * @see com.vaadin.data.Container.Ordered#addItemAfter(java.lang.Object,
* java.lang.Object)
*/
public Item addItemAfter(Object previousItemId, Object newItemId) {
@@ -572,8 +564,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.Ordered#addItemAfter(java.lang.Object)
+ * @see com.vaadin.data.Container.Ordered#addItemAfter(java.lang.Object)
*/
public Object addItemAfter(Object previousItemId) {
@@ -611,8 +602,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.Indexed#indexOfId(java.lang.Object)
+ * @see com.vaadin.data.Container.Indexed#indexOfId(java.lang.Object)
*/
public int indexOfId(Object itemId) {
if (filteredItemIds != null) {
@@ -636,8 +626,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see com.vaadin.data.Container.Indexed#addItemAt(int,
- * java.lang.Object)
+ * @see com.vaadin.data.Container.Indexed#addItemAt(int, java.lang.Object)
*/
public Item addItemAt(int index, Object newItemId) {
@@ -737,9 +726,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.PropertySetChangeEvent#getContainer
- * ()
+ * @see com.vaadin.data.Container.PropertySetChangeEvent#getContainer ()
*/
public Container getContainer() {
return (Container) getSource();
@@ -768,8 +755,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.ItemSetChangeEvent#getContainer()
+ * @see com.vaadin.data.Container.ItemSetChangeEvent#getContainer()
*/
public Container getContainer() {
return (Container) getSource();
@@ -817,8 +803,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.PropertySetChangeNotifier#addListener
+ * @see com.vaadin.data.Container.PropertySetChangeNotifier#addListener
* (com.vaadin.data.Container.PropertySetChangeListener)
*/
public void addListener(Container.PropertySetChangeListener listener) {
@@ -831,8 +816,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.PropertySetChangeNotifier#removeListener
+ * @see com.vaadin.data.Container.PropertySetChangeNotifier#removeListener
* (com.vaadin.data.Container.PropertySetChangeListener)
*/
public void removeListener(Container.PropertySetChangeListener listener) {
@@ -844,9 +828,8 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.ItemSetChangeNotifier#addListener(com
- * .itmill.toolkit.data.Container.ItemSetChangeListener)
+ * @see com.vaadin.data.Container.ItemSetChangeNotifier#addListener(com
+ * .vaadin.data.Container.ItemSetChangeListener)
*/
public void addListener(Container.ItemSetChangeListener listener) {
if (itemSetChangeListeners == null) {
@@ -858,8 +841,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.ItemSetChangeNotifier#removeListener
+ * @see com.vaadin.data.Container.ItemSetChangeNotifier#removeListener
* (com.vaadin.data.Container.ItemSetChangeListener)
*/
public void removeListener(Container.ItemSetChangeListener listener) {
@@ -871,9 +853,8 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Property.ValueChangeNotifier#addListener(com.
- * itmill.toolkit.data.Property.ValueChangeListener)
+ * @see com.vaadin.data.Property.ValueChangeNotifier#addListener(com.
+ * vaadin.data.Property.ValueChangeListener)
*/
public void addListener(Property.ValueChangeListener listener) {
if (propertyValueChangeListeners == null) {
@@ -885,9 +866,8 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Property.ValueChangeNotifier#removeListener(com
- * .itmill.toolkit.data.Property.ValueChangeListener)
+ * @see com.vaadin.data.Property.ValueChangeNotifier#removeListener(com
+ * .vaadin.data.Property.ValueChangeListener)
*/
public void removeListener(Property.ValueChangeListener listener) {
if (propertyValueChangeListeners != null) {
@@ -1037,8 +1017,8 @@ public class IndexedContainer implements Container.Indexed,
/* Internal Item and Property implementations */
/*
- * A class implementing the com.vaadin.data.Item interface to be
- * contained in the list. @author IT Mill Ltd.
+ * A class implementing the com.vaadin.data.Item interface to be contained
+ * in the list. @author IT Mill Ltd.
*
* @version @VERSION@
*
@@ -1348,8 +1328,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Property.ValueChangeNotifier#addListener(
+ * @see com.vaadin.data.Property.ValueChangeNotifier#addListener(
* com.vaadin.data.Property.ValueChangeListener)
*/
public void addListener(Property.ValueChangeListener listener) {
@@ -1359,8 +1338,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Property.ValueChangeNotifier#removeListener
+ * @see com.vaadin.data.Property.ValueChangeNotifier#removeListener
* (com.vaadin.data.Property.ValueChangeListener)
*/
public void removeListener(Property.ValueChangeListener listener) {
@@ -1419,8 +1397,7 @@ public class IndexedContainer implements Container.Indexed,
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.data.Container.Sortable#getSortableContainerPropertyIds
+ * @see com.vaadin.data.Container.Sortable#getSortableContainerPropertyIds
* ()
*/
public Collection getSortableContainerPropertyIds() {
diff --git a/src/com/vaadin/ui/BaseFieldFactory.java b/src/com/vaadin/ui/BaseFieldFactory.java
index ea488bb538..0be76ab2b3 100644
--- a/src/com/vaadin/ui/BaseFieldFactory.java
+++ b/src/com/vaadin/ui/BaseFieldFactory.java
@@ -11,10 +11,9 @@ import com.vaadin.data.Property;
/**
* Default implementation of the the following Field types are used by default:
* <p>
- * <b>Boolean</b>: Button(switchMode:true).<br/>
- * <b>Date</b>: DateField(resolution: day).<br/>
- * <b>Item</b>: Form. <br/>
- * <b>default field type</b>: TextField.
+ * <b>Boolean</b>: Button(switchMode:true).<br/> <b>Date</b>:
+ * DateField(resolution: day).<br/> <b>Item</b>: Form. <br/> <b>default field
+ * type</b>: TextField.
* <p>
*
* @author IT Mill Ltd.
@@ -38,7 +37,7 @@ public class BaseFieldFactory implements FieldFactory {
* @param uiContext
* the context where the Field is presented.
*
- * @see com.itmill.toolkit.ui.FieldFactory#createField(Class, Component)
+ * @see com.vaadin.ui.FieldFactory#createField(Class, Component)
*/
public Field createField(Class type, Component uiContext) {
return DefaultFieldFactory.createFieldByPropertyType(type);
@@ -47,7 +46,7 @@ public class BaseFieldFactory implements FieldFactory {
/**
* Creates the field based on the datasource property.
*
- * @see com.itmill.toolkit.ui.FieldFactory#createField(Property, Component)
+ * @see com.vaadin.ui.FieldFactory#createField(Property, Component)
*/
public Field createField(Property property, Component uiContext) {
if (property != null) {
@@ -60,8 +59,7 @@ public class BaseFieldFactory implements FieldFactory {
/**
* Creates the field based on the item and property id.
*
- * @see com.itmill.toolkit.ui.FieldFactory#createField(Item, Object,
- * Component)
+ * @see com.vaadin.ui.FieldFactory#createField(Item, Object, Component)
*/
public Field createField(Item item, Object propertyId, Component uiContext) {
if (item != null && propertyId != null) {
@@ -79,8 +77,8 @@ public class BaseFieldFactory implements FieldFactory {
}
/**
- * @see com.itmill.toolkit.ui.FieldFactory#createField(com.itmill.toolkit.data.Container,
- * java.lang.Object, java.lang.Object, com.itmill.toolkit.ui.Component)
+ * @see com.vaadin.ui.FieldFactory#createField(com.vaadin.data.Container,
+ * java.lang.Object, java.lang.Object, com.vaadin.ui.Component)
*/
public Field createField(Container container, Object itemId,
Object propertyId, Component uiContext) {
diff --git a/src/com/vaadin/ui/GridLayout.java b/src/com/vaadin/ui/GridLayout.java
index fbbc0e3ffa..165b26491e 100644
--- a/src/com/vaadin/ui/GridLayout.java
+++ b/src/com/vaadin/ui/GridLayout.java
@@ -624,9 +624,8 @@ public class GridLayout extends AbstractLayout implements
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.ui.Layout.AlignmentHandler#getComponentAlignment(com
- * .itmill.toolkit.ui.Component)
+ * @see com.vaadin.ui.Layout.AlignmentHandler#getComponentAlignment(com
+ * .vaadin.ui.Component)
*/
public Alignment getComponentAlignment(Component childComponent) {
Alignment alignment = componentToAlignment.get(childComponent);
@@ -1077,9 +1076,8 @@ public class GridLayout extends AbstractLayout implements
/*
* (non-Javadoc)
*
- * @see
- * com.vaadin.ui.Layout.AlignmentHandler#setComponentAlignment(com
- * .itmill.toolkit.ui.Component, int, int)
+ * @see com.vaadin.ui.Layout.AlignmentHandler#setComponentAlignment(com
+ * .vaadin.ui.Component, int, int)
*/
public void setComponentAlignment(Component childComponent,
int horizontalAlignment, int verticalAlignment) {