summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/Label.java
Commit message (Collapse)AuthorAgeFilesLines
* Migrate vaadin-server build to mavenTeemu Suo-Anttila2016-03-141-655/+0
| | | | Change-Id: I5c740f4e9cb28103bab199f9a552153d82277e7e
* Fix NPE in Label.writeDesign with NULL values #19434John Ahlroos2016-01-051-6/+25
| | | | Change-Id: If3628bc655d6cd58ab51b7400af808bdbca3dc91
* Write true boolean attibutes without ='' (#17583)Leif Åstrand2015-10-091-1/+1
| | | | | | Also add missing test for GridLayout alignments Change-Id: If553c9e254fb754cb020a63013bfcc9ecae3a056
* Rename DesignFormatter.unencodeFromTextNode to decodeFromTextNodeTeemu Suo-Anttila2015-10-071-1/+1
| | | | Change-Id: I9e20fa21ae2f503a8d34740fcef860c66b369c7b
* Support HTML entities when reading/writing declarative format #18882Maciej Przepióra2015-09-241-4/+10
| | | | Change-Id: I08099673c5dd0d688d3243e5fd169edb05f046f3
* Declarative support for Label (#7749)Matti Hosio2014-12-161-0/+1
| | | | Change-Id: Ia727763f979ad94a029c7861f13bec0c6f00b876
* SynchronizeFrom/ToDesign -> read/writeDesign (#7749)Artur Signell2014-12-151-10/+7
| | | | Change-Id: Ie5e420ac5d62a2aa3206051888e6dd0f8f30df11
* Support plain-text attribute for Label (#7749)Artur Signell2014-12-141-0/+10
| | | | Change-Id: I4ef210d131f1e616b501468cb94ea518945a3b30
* Embed DesignSynchronizable methods to Component interface (#7749)Matti Hosio2014-12-121-3/+3
| | | | Change-Id: I06de4d2065dee107da40c2a4941e7d9e22f0832b
* Declarative: handle inner html for Button and Label (#7749).Mika Murtojarvi2014-12-051-0/+49
| | | | Change-Id: Ie98d633e8583efed142a6a3d2cc980070cbc73f7
* Reading properties of components should not set state to dirty (#14060).Fabian Lange2014-06-231-5/+9
| | | | | | | | Many core vaadin components did incorrectly mark the state as dirty when reading from them. This patch fixes the problem, which should reduce the amount of server->client state updates significantly. Change-Id: I342d74129e2985a7f407e9b53a802dc0146d9992
* Merge changes from origin/7.1Artur Signell2014-04-231-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e77e73c Update copyright year to 2014 Conflicts: client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ConnectorBundle.java client/src/com/vaadin/client/ApplicationConnection.java server/src/com/vaadin/data/util/converter/StringToNumberConverter.java shared/src/com/vaadin/shared/ui/ui/PageState.java shared/src/com/vaadin/shared/ui/window/WindowState.java theme-compiler/src/com/vaadin/sass/SassCompiler.java theme-compiler/src/com/vaadin/sass/internal/ScssStylesheet.java theme-compiler/src/com/vaadin/sass/internal/expression/ArithmeticExpressionEvaluator.java theme-compiler/src/com/vaadin/sass/internal/expression/BinaryExpression.java theme-compiler/src/com/vaadin/sass/internal/expression/BinaryOperator.java theme-compiler/src/com/vaadin/sass/internal/expression/exception/ArithmeticException.java theme-compiler/src/com/vaadin/sass/internal/expression/exception/IncompatibleUnitsException.java theme-compiler/src/com/vaadin/sass/internal/handler/SCSSDocumentHandler.java theme-compiler/src/com/vaadin/sass/internal/handler/SCSSDocumentHandlerImpl.java theme-compiler/src/com/vaadin/sass/internal/handler/SCSSErrorHandler.java theme-compiler/src/com/vaadin/sass/internal/parser/CharStream.java theme-compiler/src/com/vaadin/sass/internal/parser/Generic_CharStream.java theme-compiler/src/com/vaadin/sass/internal/parser/LexicalUnitImpl.java theme-compiler/src/com/vaadin/sass/internal/parser/LocatorImpl.java theme-compiler/src/com/vaadin/sass/internal/parser/MediaListImpl.java theme-compiler/src/com/vaadin/sass/internal/parser/ParseException.java theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java theme-compiler/src/com/vaadin/sass/internal/parser/ParserConstants.java theme-compiler/src/com/vaadin/sass/internal/parser/ParserTokenManager.java theme-compiler/src/com/vaadin/sass/internal/parser/SCSSLexicalUnit.java theme-compiler/src/com/vaadin/sass/internal/parser/SCSSParseException.java theme-compiler/src/com/vaadin/sass/internal/parser/SelectorListImpl.java theme-compiler/src/com/vaadin/sass/internal/parser/Selectors.java theme-compiler/src/com/vaadin/sass/internal/parser/ThrowedParseException.java theme-compiler/src/com/vaadin/sass/internal/parser/Token.java theme-compiler/src/com/vaadin/sass/internal/parser/TokenMgrError.java theme-compiler/src/com/vaadin/sass/internal/resolver/ClassloaderResolver.java theme-compiler/src/com/vaadin/sass/internal/resolver/FilesystemResolver.java theme-compiler/src/com/vaadin/sass/internal/resolver/ScssStylesheetResolver.java theme-compiler/src/com/vaadin/sass/internal/resolver/VaadinResolver.java theme-compiler/src/com/vaadin/sass/internal/selector/SelectorUtil.java theme-compiler/src/com/vaadin/sass/internal/tree/BlockNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ExtendNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ForNode.java theme-compiler/src/com/vaadin/sass/internal/tree/FunctionNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ImportNode.java theme-compiler/src/com/vaadin/sass/internal/tree/KeyframesNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ListContainsNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ListModifyNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ListRemoveNode.java theme-compiler/src/com/vaadin/sass/internal/tree/MediaNode.java theme-compiler/src/com/vaadin/sass/internal/tree/MicrosoftRuleNode.java theme-compiler/src/com/vaadin/sass/internal/tree/MixinDefNode.java theme-compiler/src/com/vaadin/sass/internal/tree/MixinNode.java theme-compiler/src/com/vaadin/sass/internal/tree/NestPropertiesNode.java theme-compiler/src/com/vaadin/sass/internal/tree/Node.java theme-compiler/src/com/vaadin/sass/internal/tree/RuleNode.java theme-compiler/src/com/vaadin/sass/internal/tree/SimpleNode.java theme-compiler/src/com/vaadin/sass/internal/tree/VariableNode.java theme-compiler/src/com/vaadin/sass/internal/tree/controldirective/EachDefNode.java theme-compiler/src/com/vaadin/sass/internal/tree/controldirective/IfElseDefNode.java theme-compiler/src/com/vaadin/sass/internal/tree/controldirective/IfNode.java theme-compiler/src/com/vaadin/sass/internal/util/ColorUtil.java theme-compiler/src/com/vaadin/sass/internal/util/DeepCopy.java theme-compiler/src/com/vaadin/sass/internal/util/FastByteArrayInputStream.java theme-compiler/src/com/vaadin/sass/internal/util/FastByteArrayOutputStream.java theme-compiler/src/com/vaadin/sass/internal/util/StringUtil.java theme-compiler/src/com/vaadin/sass/internal/visitor/BlockNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/EachNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/ExtendNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/IfElseNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/ImportNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/MixinNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/NestedNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/VariableNodeHandler.java theme-compiler/tests/src/com/vaadin/sass/AbstractTestBase.java theme-compiler/tests/src/com/vaadin/sass/internal/expression/ArithmeticExpressionEvaluatorTest.java theme-compiler/tests/src/com/vaadin/sass/parser/ParserTest.java theme-compiler/tests/src/com/vaadin/sass/resolvers/VaadinResolverTest.java theme-compiler/tests/src/com/vaadin/sass/testcases/css/Interpolation.java theme-compiler/tests/src/com/vaadin/sass/testcases/css/Selectors.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/AbstractDirectoryScanningSassTests.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/AutomaticSassTests.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Comments.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/ControlDirectives.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Extends.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Functions.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Imports.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Mixins.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/NestedProperties.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Nesting.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/ParentImports.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/ParentSelector.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/SassLangTests.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/SassLangTestsBroken.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/SassTestRunner.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Variables.java theme-compiler/tests/src/com/vaadin/sass/tree/ImportNodeTest.java uitest/src/com/vaadin/tests/push/BasicPushTest.java uitest/src/com/vaadin/tests/push/PushConfigurationTest.java uitest/src/com/vaadin/tests/push/PushReconnectTest.java Change-Id: Ic08c4f9aecd4c684ce74408de4e0b0d0ff617273
| * Update copyright year to 2014Artur Signell2014-04-161-1/+1
| | | | | | | | Change-Id: Ic77338304dc7e58e49f27dcdaf0bab2e00f5bba6
* | Fire value change events from Label when content changes (#12414)Maciej Przepióra2014-03-101-5/+14
| | | | | | | | Change-Id: I9656025ebde0a80c913713856f5c0374e0f92c27
* | Remove dead codeJohannes Dahlström2014-01-171-4/+0
|/ | | | Change-Id: I1ac813afa47e38fb508e676d25d103a29bfada6a
* Modified the logic in setPropertyDatasource which determines if a new ↵Artur Signell2013-05-221-3/+6
| | | | | | | | | | converter is needed (#11863) The previous logic had two flaws * It allowed converter model type to be a sub type of the model type but not vice versa. Similarly for presentation type. * If the user has set a converter it should be used and not be replaced unless it is absolutely sure that it cannot in any possible way handle conversion (e.g. converter from integer to double cannot handle string to list conversion). If there is a slight chance that it can handle conversion, let it be and let the user set another converter when needed. Change-Id: I2e1c0b3aac90be63ddbc780195f8428398e28ada
* Re-added Property.toString warning messages (#10916)Artur Signell2013-04-241-0/+33
| | | | | | * Made it possible to toggle the toString() behavior using the "legacyPropertyToString" init parameter. The default value is "warning" which enables the legacy Property.toString implementation and logs a warning message when it is used. Other supported values are "true" which enables the legacy mode and "false" which disables it. Change-Id: Ife19352b86590464c8e441b7f82f4fec3b1f3235
* Added SharedUtil for helpers shared by client and serverLeif Åstrand2013-04-101-1/+2
| | | | Change-Id: Ie289e8eefd962631a43f35dbb47fa192fcf60abf
* Removed legacy toString implementations as promised in 7.0 (#10916)Artur Signell2013-02-011-17/+0
| | | | Change-Id: I0e63f4cb3480c88b2c79996e23a2e89acce95b28
* Updated copyright notices and added missing license headersArtur Signell2013-01-041-1/+1
| | | | Change-Id: I419ce4581d1a8b84d4236a85a1333d23f3423b2e
* Update value when field/label local changes (#8192)Artur Signell2012-11-221-4/+29
| | | | Change-Id: Ifbb426f7aee107db0be555c5ab1ef0b5f4948e5e
* Unified deprecation messagesArtur Signell2012-11-221-9/+9
| | | | Change-Id: If3fc2c2d9b251cbc6f2a9da2ede23ff17f7362ef
* Changed Property.setValue(Object) to setValue(T) (#8791)Artur Signell2012-10-231-7/+2
| | | | Change-Id: I9f0e6bd62102c5adc461884b1f3b2cbe69f19259
* Unified log message with other Property implementors (#9804)Artur Signell2012-10-011-1/+1
| | | | Change-Id: I0833381d7f7871d062b04ef0ed5408f1777022af
* Ensure propertyDataSource can be set back to null (#9618)Artur Signell2012-09-181-3/+8
| | | | | Added additional tests for Label with a data source. Note that the locale dependent tests still fail because of #8192
* Label.setPropertyDataSource now updates the state value (#9618)Artur Signell2012-09-181-0/+11
|
* Fixed references to XHTML and issue found in review #8294John Ahlroos2012-09-071-4/+4
|
* Removed deprecated ContenMode.XHTMLJohn Ahlroos2012-09-071-4/+3
|
* Now using HTML5 content mode. Also deprecated the XHTML content modes.John Ahlroos2012-09-071-2/+3
|
* Reformat projectLeif Åstrand2012-09-051-0/+2
|
* Remove getApplication() and add getSession() (#9402)Leif Åstrand2012-09-051-1/+1
|
* refak listeners com.vaadin.uiPetri Heinonen2012-08-301-2/+20
|
* Rename requestRepaint to markAsDirty (#9378)Leif Åstrand2012-08-231-2/+2
| | | Also remove some requestRepaint calls that are no longer needed (#9325)
* Handle requestRepaint automatically (#9325)Leif Åstrand2012-08-231-3/+0
|
* Make the (server-side) getState method protected (#9315)Leif Åstrand2012-08-221-1/+1
|
* Support using public fields in state classes (#9324)Leif Åstrand2012-08-221-5/+5
|
* Replaced license place holder with actual license (#8955)Artur Signell2012-08-161-1/+13
|
* Removed more @version included in some files but not in all (#9299)Artur Signell2012-08-161-2/+0
|
* Removed @version which is included in some files but not in all (#9299)Artur Signell2012-08-151-2/+0
|
* Moved server files to a server src folder (#9299)Artur Signell2012-08-131-0/+483