aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/declarative/FieldBinder.java
diff options
context:
space:
mode:
authorMika Murtojarvi <mika@vaadin.com>2014-12-17 12:24:26 +0200
committerMatti Hosio <mhosio@vaadin.com>2014-12-17 13:25:10 +0200
commit7818595589e73b3da119d3c51e3950515f900bb6 (patch)
tree242338974fe6ec188739443329f25830e5418bb2 /server/src/com/vaadin/ui/declarative/FieldBinder.java
parentf1eb1c4bf357c9e57c129455e924d697a674aa6f (diff)
downloadvaadin-framework-7818595589e73b3da119d3c51e3950515f900bb6.tar.gz
vaadin-framework-7818595589e73b3da119d3c51e3950515f900bb6.zip
Updates for the javadocs of declarative (#7749).
Change-Id: I623ba0c17673144f0886556937d25f80ea1f3ffd
Diffstat (limited to 'server/src/com/vaadin/ui/declarative/FieldBinder.java')
-rw-r--r--server/src/com/vaadin/ui/declarative/FieldBinder.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/server/src/com/vaadin/ui/declarative/FieldBinder.java b/server/src/com/vaadin/ui/declarative/FieldBinder.java
index 4826c2be64..af82d9c58c 100644
--- a/server/src/com/vaadin/ui/declarative/FieldBinder.java
+++ b/server/src/com/vaadin/ui/declarative/FieldBinder.java
@@ -45,7 +45,7 @@ public class FieldBinder implements Serializable {
private Map<String, Field> fieldMap = new HashMap<String, Field>();
/**
- * Creates a new instance of LayoutFieldBinder
+ * Creates a new instance of LayoutFieldBinder.
*
* @param design
* the design class instance containing the fields to bind
@@ -57,7 +57,7 @@ public class FieldBinder implements Serializable {
}
/**
- * Creates a new instance of LayoutFieldBinder
+ * Creates a new instance of LayoutFieldBinder.
*
* @param design
* the instance containing the fields
@@ -76,7 +76,7 @@ public class FieldBinder implements Serializable {
}
/**
- * Returns a collection of field names that are not bound
+ * Returns a collection of field names that are not bound.
*
* @return a collection of fields assignable to Component that are not bound
*/
@@ -104,7 +104,7 @@ public class FieldBinder implements Serializable {
}
/**
- * Resolves the fields of the design class instance
+ * Resolves the fields of the design class instance.
*/
private void resolveFields(Class<?> classWithFields) {
for (Field memberField : getFieldsInDeclareOrder(classWithFields)) {
@@ -217,7 +217,7 @@ public class FieldBinder implements Serializable {
/**
* Converts the given identifier to a valid field name by stripping away
- * illegal character and setting the first letter of the name to lowercase
+ * illegal character and setting the first letter of the name to lower case.
*
* @param identifier
* the identifier to be converted to field name
@@ -242,10 +242,10 @@ public class FieldBinder implements Serializable {
}
/**
- * Returns an array containing Field objects reflecting all the fields of
- * the class or interface represented by this Class object. The elements in
- * the array returned are sorted in declare order. The fields in
- * superclasses are excluded.
+ * Returns a list containing Field objects reflecting all the fields of the
+ * class or interface represented by this Class object. The elements in the
+ * returned list are sorted in declare order. The fields in superclasses are
+ * excluded.
*
* @param searchClass
* the class to be scanned for fields