aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/AbstractComponent.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved server files to a server src folder (#9299)Artur Signell2012-08-131-1382/+0
|
* Add shorthand for avoiding null-checks with ResourceReference (#9211)Leif Åstrand2012-08-031-11/+2
|
* Move classes common to client and server to com.vaadin.shared.* (#8934)Leif Åstrand2012-07-271-1/+1
|
* Add Java 6 @Override annotations to all methods from interfacesLeif Åstrand2012-07-231-0/+35
|
* Add missing call to super.detach() (#6690)Leif Åstrand2012-06-061-0/+1
|
* Initial extension support (#6690)Leif Åstrand2012-06-061-355/+40
|
* Initial support for sending difference in state (#8419)Artur Signell2012-05-111-9/+16
| | | | | | | | Forces the shared state to be the type declared by getStateType (#8677) Creates an empty object for reference when doing a full repaint, causing only the differences between a freshly created object and the current state to be sent.
* Method for finding the first ancestor of a given type (#8182)Artur Signell2012-04-191-27/+26
|
* Simplified RPC handling for client to server RPCArtur2012-04-181-1/+1
| | | | | | Target connector validity (enabled) is checked for all RPC calls ClientConnector is always an RpcTarget Removed unused RpcManager.target
* Use declared RPC parameter types (#8666)Artur Signell2012-04-181-3/+3
|
* Button, NativeButton and CheckBox are no longer Vaadin6ComponentsArtur Signell2012-04-121-3/+12
| | | | Added FocusAndBlurServerRpc for sending focus and blur events to any component.
* Component no longer implements PaintableArtur Signell2012-04-121-118/+5
|
* Automatically create state on server side based on getState return typeArtur Signell2012-04-051-6/+28
|
* Simplified Rpc registration on server side (#8591)Artur Signell2012-04-051-2/+22
|
* Replaced "defer" status with "cached" to be more Vaadin 6 compatibleArtur Signell2012-03-301-4/+3
|
* Fixed Serialization issues and cleaned up RPC invocation handler codeArtur Signell2012-03-221-16/+26
|
* #8555 Listener for modifying state before it is sent to the clientArtur Signell2012-03-221-9/+15
|
* Transfer required attribute in shared state (#8436).Henri Sara2012-03-211-0/+1
| | | | | The flag should be used directly from shared state, but that requires error message etc. related updates to be done in a listener before sending states.
* Convert hide errors flag to shared state (#8437).Henri Sara2012-03-211-0/+2
|
* Refactor error messages not to use UIDL (#8437).Henri Sara2012-03-211-4/+5
| | | | This change removes support for error messages on tabs of a tabsheet or an accordion. Those should be implemented differently if needed.
* Unified logic in getting dirty connectors to ensure invisible connectors are ↵Artur Signell2012-03-211-11/+9
| | | | never sent to the client. Also fixed isVisibleInContext to take parent restrictions into account and removed extra code.
* Code cleanupArtur Signell2012-03-211-8/+10
|
* #8515 Avoid painting invisible children, also through old style paintArtur Signell2012-03-211-0/+4
| | | | calls
* Removed extra check as Component extends RpcTargetArtur Signell2012-03-211-7/+2
|
* #8500 Properly repaint parent (hierarchy) when the visibility of a childArtur Signell2012-03-211-40/+10
| | | | changes
* #8438 Event handler registration is now a Set in the shared stateArtur Signell2012-03-211-17/+2
|
* Made debug id:s work againArtur Signell2012-03-211-4/+2
|
* repaintRequestListenersNotified and "cached" are no longer neededArtur Signell2012-03-211-34/+21
|
* Moved Connector -> Connector Id mapping to AbstractComponentArtur Signell2012-03-211-2/+12
| | | | | Moved Connector Id -> Connector mapping to Application Moved dirty connector tracking to Root Removed adding of
* Better support for adding multiple styles through addStyleNameArtur Signell2012-03-161-0/+8
|
* Moved server side ResourceReference to gwt.server packageArtur Signell2012-03-161-1/+1
|
* Separated Component.isEnabled/isVisible from Connector enabled state.Artur Signell2012-03-141-17/+56
| | | | | | Connector.isConnectorEnabled determines if the Connector can receive messages from its counter part. Component isEnabled/isVisible only returns the state of the component. Made Table implement HasComponents.
* Made TabSheet work again and removed TabSheet tab caching for nowArtur Signell2012-03-141-2/+11
|
* NPE fix for getIcon()Artur Signell2012-03-141-1/+6
|
* All components are RPCTargetsArtur Signell2012-03-141-2/+2
|
* Moved styles list to shared state, replacing the previous String hack.Artur Signell2012-03-141-22/+12
|
* #8510 Support using Resources through URLReference/ResourceReference inArtur Signell2012-03-131-17/+7
| | | shared state and RPC calls
* Use ComponentState for storing the state, not just as a communicationArtur Signell2012-03-131-82/+23
| | | | mechanism. Changed isDisabled to more logical isEnabled in state.
* #8429 Made shortcuts in sub window work againArtur Signell2012-03-021-5/+49
|
* Implement server to client RPC (#8426).Henri Sara2012-02-291-2/+96
|
* Enable changing size back to undefined (#8304)Leif Åstrand2012-02-281-1/+6
|
* #8434 Renamed *Paintable classes to *Connector and updated ConnectorMapArtur Signell2012-02-271-2/+2
| | | accordingly
* Communicate caption of components in shared state (#8304).Henri Sara2012-02-231-8/+3
|
* Communicate component description (tooltip) in shared state (#8304).Henri Sara2012-02-231-12/+3
|
* Communicate disabled flag in shared state (#8304).Henri Sara2012-02-231-9/+2
|
* Communicate component style names in shared state (#8304).Henri Sara2012-02-231-11/+5
|
* Transfer read-only and immediate flags via shared state (#8304).Henri Sara2012-02-221-16/+3
|
* Cleanup, javadoc etc. for shared state serialization (#8304). Henri Sara2012-02-221-3/+0
|
* #8304 First steps towards supporting serialization of any beanArtur Signell2012-02-211-5/+5
|
* Convert some literal strings of UIDL attributes to use constants.Henri Sara2012-02-211-11/+22
|