par.winzell
5f047c124c
Make histogram resolution configurable. From Jamie.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2521 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2009-01-23 18:36:13 +00:00
par.winzell
e262fc29d9
Indexes are not really constraints. Primary key dropping is its own thing, too.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2519 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2009-01-08 22:48:52 +00:00
samskivert
eeaa8be638
Fixed javadoc.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2518 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2009-01-08 22:13:30 +00:00
samskivert
0d0787348e
Don't pop a disabled radial menu down when it's clicked. That makes it look
...
like we're taking the menu's action.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2517 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-29 22:57:56 +00:00
samskivert
cc88420aa2
More widening.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2516 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-29 20:08:08 +00:00
samskivert
6b21917b25
Widening.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2515 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-29 20:05:28 +00:00
samskivert
077b3be839
We need to configure antialiasing before getting our FRC.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2514 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-18 19:49:13 +00:00
samskivert
15cbab50b1
No longer need to special case text antialiasing here.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2513 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-18 01:56:20 +00:00
samskivert
409fe74196
Deprecated MultilineLabel.setAntiAliased(), made Label honor
...
SwingUtil.getDefaultTextAntiAliased(), tidied up some bits related to
SwingUtil.restoreAntiAliasing().
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2512 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-18 01:54:55 +00:00
samskivert
0f359f3f21
Widening.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2511 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-18 01:45:43 +00:00
samskivert
edb6f304e4
If text antialiasing is the desired defaul, honor it in LabelSausage.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2510 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-18 01:36:56 +00:00
samskivert
e6740260c9
Widening.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2509 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-18 01:34:19 +00:00
samskivert
c5504d6857
Added getDefaultTextAntialiasing(), use it to configure the default for
...
MultilineLabel.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2508 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-18 01:33:26 +00:00
samskivert
b7e85472f4
Widening.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2507 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-18 01:29:32 +00:00
samskivert
c1f89f9227
Widening, and switch to KEY_TEXT_ANTIALIASING when laying out instead of
...
KEY_ANTIALIASING, since labels are all about text.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2506 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-18 01:20:31 +00:00
samskivert
31bc42b5aa
Activate text antialiasing as well as 2D primitive antialiasing, as requested
...
by Matt.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2505 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-17 17:48:35 +00:00
samskivert
87a4c07ce5
Provide better class documentation.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2504 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-16 00:31:37 +00:00
samskivert
0b560d885b
Nixed Google Collections usage, fixed bug in uColSet checking.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2503 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-10 01:12:28 +00:00
par.winzell
796d870beb
HSQL support:
...
- HSQL largely follows SQL92, thus to preserve case we have to enclose identifiers such as column and table names in quotes.
- HSQL has a method for auto-generating primary key values, but its syntax is different from MySQL and PostgreSQL -- just when we got to celebrate that those two giants had agreed on a convenient alias.
- HSQL can't handle uniqueness as a column-level constraint. It can certainly handle unique columns, it just seems to feel that's a table level constraint and thus to be specified as a prologue during table creation. Thus we override createTableIfMissing to strip uniqueness from column definitions and append those instead to the table-level unique constraints. We might want to switch to this approach for all the databases.
- We override expandDefinition() to magically translate a default value of IDENTITY into a HSQL-specific column mark-up that triggers the primary key value auto-generation. This is for Depot's benefit, and I would not be surprised if this method was soon moved to that project.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2501 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-09 23:15:58 +00:00
par.winzell
4b82d4dee1
I am increasingly dissatisfied with ColumnDefinition's existence. As a step towards its phasing out, make it a mutable datadump for Depot's nefarious benefit.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2500 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-09 23:08:57 +00:00
par.winzell
c06098c71d
Null should give us unrestricted searches on all databases.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2498 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-09 23:05:53 +00:00
samskivert
7e2eddbe80
Let's check that these actually run.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2497 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-08 23:19:04 +00:00
samskivert
0d05720af9
Added Runnables.NOOP.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2496 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-08 20:18:13 +00:00
samskivert
8146d78a39
Poor man's method references. Might create Callables.asCallable() as well just
...
for kicks.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2495 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-08 19:51:20 +00:00
samskivert
79f1528e7b
Nixed unused imports.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2494 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-12-08 19:50:13 +00:00
samskivert
662e389d11
Let's use the real exception here.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2493 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-25 20:25:28 +00:00
samskivert
d08f130606
Nixed unused import.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2492 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-25 20:12:52 +00:00
samskivert
8a298764e1
The beginnings of support for HSQLDB (a JDBC driver that can be used as a
...
purely in-memory database which is very handy for unit testing). It's not done
yet and doesn't work, but some day I hope to finish integrating it.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2491 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-25 20:12:40 +00:00
samskivert
19dee7226e
Don't require a non-blank password.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2490 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-25 20:03:45 +00:00
samskivert
a8b7908a64
Beans/frank.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2489 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-19 23:33:15 +00:00
samskivert
9ca07c08df
Fixed some StringBuilder wonkiness.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2488 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-19 23:32:59 +00:00
samskivert
d7321d2c20
Widening and actually implement Cloneable.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2487 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-18 22:14:42 +00:00
samskivert
893e5ca9dd
Let's pass the triggering exception in there as well.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2486 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-18 22:13:13 +00:00
samskivert
52dc3731c3
Implement clone().
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2485 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-18 21:58:02 +00:00
samskivert
74c1a9c776
The truth comes out, my Tuple related machinations were inspired by the need
...
for Triple and I couldn't very well "properly" implement Triple without first
fixing Tuple.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2484 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-18 21:18:15 +00:00
samskivert
9f69792fc5
I'm overcome with a feeling of propriety and am thus making Tuple immutable and
...
changing create() to newTuple() to perpetuate "best practices".
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2483 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-18 21:12:08 +00:00
samskivert
30d558785a
Widening and also NPE immediately if someone tries to add a null observer.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2482 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-18 20:45:31 +00:00
samskivert
7f76e4f876
Depot now lives in its own project.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2480 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-16 07:49:17 +00:00
samskivert
206433c80b
Unified Query and Modifier under Operation which cleans up some niggles in
...
PersistenceContext.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2479 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-13 23:35:12 +00:00
samskivert
b9005b1aa8
Pedantry.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2478 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-13 21:16:47 +00:00
samskivert
ac64f8df4a
A connection provider that obtains connections from a DataSource, which
...
supports pooling.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2477 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-13 21:16:24 +00:00
samskivert
184aa88660
If a looping thread does terminate due to a runtime exception, log it on the
...
way out rather than letting it propagate up to the JVM where it'll get written
to stderr which isn't always useful.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2475 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-11 00:34:38 +00:00
samskivert
24f1fb611a
Added isRunning() to RunQueue, made BasicRunQueue work both in separate-thread
...
mode and in just-call-run()-yourself mode.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2473 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-08 00:05:57 +00:00
samskivert
f2ff2491f5
Added Queue.newQueue().
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2472 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-07 01:16:22 +00:00
par.winzell
405fa50a48
Don't fill the array with zeroes when we reinitialize the Throttle with the same number of operations as we already had, as that allows a potentially dangerous burst of operations.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2471 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-05 17:16:59 +00:00
par.winzell
0415bf7502
That was broken code-in-progress and not meant to be commnitted.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2470 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-05 00:19:59 +00:00
par.winzell
2045c0d563
When we reinitialize the Throttle with a smaller number of allowed operations within a time period, we should preserve the oldest rather than the newest ones, or we'll most likely be in immediate and unfair violation of the limit.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2469 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-05 00:18:21 +00:00
par.winzell
26ca5335c6
Change these hard-coded defaults. Should also be made configurable.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2468 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-04 19:20:33 +00:00
samskivert
dbbf679cc7
Nixed unused import, commented out others that go with commented out code.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2467 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-11-01 05:39:27 +00:00
samskivert
afbf6c1ea9
Make the 1.5 compiler happy.
...
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2466 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2008-10-31 00:42:53 +00:00