]> source.dussan.org Git - vaadin-framework.git/commit
- Merged SQLContainer with Vaadin 6.7.
authorJohn Alhroos <john.ahlroos@itmill.com>
Wed, 10 Aug 2011 07:35:47 +0000 (07:35 +0000)
committerJohn Alhroos <john.ahlroos@itmill.com>
Wed, 10 Aug 2011 07:35:47 +0000 (07:35 +0000)
commit111d9c2f9a87b4954c30aa5736bf86b9d504bbb1
tree2b5990d8582ea3afb1b6492456fea9b60b0fb3d7
parent44011d913afb6e6131b3ff5c53773f99294b64d6
- Merged SQLContainer with Vaadin 6.7.
- Updated EasyMock to version 3.0 (SQLContainer requirement)

svn changeset:20252/svn branch:6.7
59 files changed:
src/com/vaadin/data/util/CacheFlushNotifier.java [new file with mode: 0644]
src/com/vaadin/data/util/CacheMap.java [new file with mode: 0644]
src/com/vaadin/data/util/ColumnProperty.java [new file with mode: 0644]
src/com/vaadin/data/util/OptimisticLockException.java [new file with mode: 0644]
src/com/vaadin/data/util/ReadOnlyRowId.java [new file with mode: 0644]
src/com/vaadin/data/util/Reference.java [new file with mode: 0644]
src/com/vaadin/data/util/RowId.java [new file with mode: 0644]
src/com/vaadin/data/util/RowItem.java [new file with mode: 0644]
src/com/vaadin/data/util/SQLContainer.java [new file with mode: 0644]
src/com/vaadin/data/util/SQLUtil.java [new file with mode: 0644]
src/com/vaadin/data/util/TemporaryRowId.java [new file with mode: 0644]
src/com/vaadin/data/util/connection/J2EEConnectionPool.java [new file with mode: 0644]
src/com/vaadin/data/util/connection/JDBCConnectionPool.java [new file with mode: 0644]
src/com/vaadin/data/util/connection/SimpleJDBCConnectionPool.java [new file with mode: 0644]
src/com/vaadin/data/util/filter/Between.java [new file with mode: 0644]
src/com/vaadin/data/util/filter/Like.java [new file with mode: 0644]
src/com/vaadin/data/util/query/FreeformQuery.java [new file with mode: 0644]
src/com/vaadin/data/util/query/FreeformQueryDelegate.java [new file with mode: 0644]
src/com/vaadin/data/util/query/FreeformStatementDelegate.java [new file with mode: 0644]
src/com/vaadin/data/util/query/OrderBy.java [new file with mode: 0644]
src/com/vaadin/data/util/query/QueryDelegate.java [new file with mode: 0644]
src/com/vaadin/data/util/query/TableQuery.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/DefaultSQLGenerator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/MSSQLGenerator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/OracleGenerator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/SQLGenerator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/StatementHelper.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/AndTranslator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/BetweenTranslator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/CompareTranslator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/FilterTranslator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/IsNullTranslator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/LikeTranslator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/NotTranslator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/OrTranslator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/QueryBuilder.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/SimpleStringTranslator.java [new file with mode: 0644]
src/com/vaadin/data/util/query/generator/filter/StringDecorator.java [new file with mode: 0644]
tests/src/com/vaadin/tests/containers/sqlcontainer/CheckboxUpdateProblem.java [new file with mode: 0644]
tests/src/com/vaadin/tests/containers/sqlcontainer/MassInsertMemoryLeakTestApp.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/AllTests.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/ColumnPropertyTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/DataGenerator.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/FreeformQueryUtil.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/ReadOnlyRowIdTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/RowIdTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/SQLContainerTableQueryTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/SQLContainerTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/TicketTests.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/UtilTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/connection/J2EEConnectionPoolTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/connection/MockInitialContextFactory.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/connection/SimpleJDBCConnectionPoolTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/filters/BetweenTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/filters/LikeTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/generator/SQLGeneratorsTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/query/FreeformQueryTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/query/QueryBuilderTest.java [new file with mode: 0644]
tests/src/com/vaadin/tests/server/container/sqlcontainer/query/TableQueryTest.java [new file with mode: 0644]