diff options
author | Artur Signell <artur@vaadin.com> | 2012-01-27 14:17:08 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-01-27 14:17:08 +0200 |
commit | 8cc1ee0aa018012e6644723860a353d41d6af7f8 (patch) | |
tree | 65ce329c2b82a498be734cb94b5c0f7caaa33379 /src/com/vaadin/ui/Component.java | |
parent | 08aef8e80937b3c81d8a6761827f72b65c25e71c (diff) | |
parent | 9d8b8ee4376b14ca91c9fbc20506f88943116807 (diff) | |
download | vaadin-framework-8cc1ee0aa018012e6644723860a353d41d6af7f8.tar.gz vaadin-framework-8cc1ee0aa018012e6644723860a353d41d6af7f8.zip |
Merge remote-tracking branch 'origin/6.8'
Conflicts:
WebContent/VAADIN/themes/base/table/table.css
WebContent/release-notes.html
build/build.xml
src/com/vaadin/terminal/gwt/client/ApplicationConnection.java
src/com/vaadin/terminal/gwt/client/ui/VFormLayout.java
src/com/vaadin/terminal/gwt/client/ui/VPopupCalendar.java
src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java
src/com/vaadin/terminal/gwt/client/ui/VSlider.java
src/com/vaadin/terminal/gwt/client/ui/VTextualDate.java
src/com/vaadin/terminal/gwt/client/ui/VWindow.java
src/com/vaadin/ui/Table.java
tests/integration_tests.xml
tests/test.xml
tests/testbench/com/vaadin/tests/components/orderedlayout/OrderedLayoutCases.java
Diffstat (limited to 'src/com/vaadin/ui/Component.java')
-rw-r--r-- | src/com/vaadin/ui/Component.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/com/vaadin/ui/Component.java b/src/com/vaadin/ui/Component.java index 53fdfdb4ff..1289b57bd9 100644 --- a/src/com/vaadin/ui/Component.java +++ b/src/com/vaadin/ui/Component.java @@ -11,7 +11,6 @@ import java.util.EventObject; import java.util.Locale; import com.vaadin.Application; -import com.vaadin.data.Property; import com.vaadin.event.FieldEvents; import com.vaadin.terminal.ErrorMessage; import com.vaadin.terminal.Paintable; @@ -363,12 +362,6 @@ public interface Component extends Paintable, VariableOwner, Sizeable, * </p> * * <p> - * The read-only status affects only the user; the value can still be - * changed programmatically, for example, with - * {@link Property#setValue(Object)}. - * </p> - * - * <p> * The method will return {@code true} if the component or any of its * parents is in the read-only mode. * </p> @@ -396,12 +389,6 @@ public interface Component extends Paintable, VariableOwner, Sizeable, * </p> * * <p> - * The read-only status affects only the user; the value can still be - * changed programmatically, for example, with - * {@link Property#setValue(Object)}. - * </p> - * - * <p> * This method will trigger a * {@link com.vaadin.terminal.Paintable.RepaintRequestEvent * RepaintRequestEvent}. |