0
I Use This!
Inactive

Commits : Listings

Analyzed 12 days ago. based on code collected 13 days ago.
May 29, 2023 — May 29, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Apparently just whitespace changes. More... about 16 years ago
Added an edge iterator traverser adapter that will pass close() calls on through to the delegate closable iterator. More... about 16 years ago
Added a method for LogLevel comparison: isGreaterOrEqual More... about 16 years ago
Added some additional utility methods to LogLevel. Added a custom log4j level for TRACE functionality. Modified everything else to take advantage of it. In theory, it is possible to automatically detect log4j support for TRACE and switch to that internally but I have not implemented that yet. More... about 16 years ago
Synching with the 0.10.1 version tag. More... about 16 years ago
Retroactively applied a v_0_10_1 tag for a tag-only 0.10.1 version from April 5th. This coincides with another product version that beat me to the punch on cutting a release. When I get a chance, a 0.11.1 release will supercede this one for any new development. 0.10.1 is there for posterity. More... about 16 years ago
Fixed a bug from some left-over debug code. More... about 16 years ago
Added some more tone generation to the switchboard. Upped the priority of the input and output threads and added some additional debugging. Added a scroll bar to sound display 2. More... about 16 years ago
Added a tone generator that can be pushed on the output channels. More... about 16 years ago
Some small updates before fixing a buffer overrun bug. More... about 16 years ago
-forgot to add a serial version ID. Thanks Ray More... about 16 years ago
-implement Serializable More... about 16 years ago
Modified the default factories to pass on the view context if the constructor will take it. More... about 16 years ago
Looks like just whitespace changes. More... about 16 years ago
Added an ObjectConfigurator implementation for instantiating meta-objects. More... about 16 years ago
All primary functionality that is non-implementation specific has been moved into the abstract class. More... about 16 years ago
Removed some FIXMEs that are not accurate. More... about 16 years ago
Moved the factory initialization to after some checks are done that don't require it. No reason to resolve a bunch of factories if the values are just going to be tossed away. More... about 16 years ago
Moved the object creation logic into the base class. Only thing left is the configureBean/configureObject logic. Unit tests still pass for BeanConfigurator. Functional tests show exactly the same results so far. More... about 16 years ago
Moving some more functionality out of BeanConfigurator and into the abstract base class and a new configurator utilities class. More... about 16 years ago
Work in progress... rearranging the BeanConfigurator hierarchy such that we might create non-bean-specific configurators (like, for meta-objects). Still not there yet as more code needs to move into the base class. More... about 16 years ago
Added a predicate for doing a PropertyType.instanceof check. More... about 16 years ago
Modified SimpleExpressionLanguage to have a more robust internal parser. The old one was based on a tricky regex... and it handled \-style escaping, etc... which is a real pain in one regex. The new version is more flexible, clearer, and as it turns out quite a bit faster. 100000 iterations of the internal test strings on my machine: New way:844 ms Old way:11015 ms A pretty significant improvement, actually. More... about 16 years ago
Removed some test code that I accidentially left in. More... about 16 years ago
Pulled back out my evaluate changes for now. There is some underlying type conversion work that has to happen before a general evaluate is useful. And because generics are kind of brain-dead, we can't ever access the <T> class and will require the user to pass it in for proper conversion. All generic-related runtime typing is obliterated by the compiler... which means that Meta-JB can't even use it to do better reflection. More... about 16 years ago
TemplateExpression is now a generic type so that the type of thing it represents can be better specified. I also added an evaluate() method that can be used to auto-eval the expression... but it has limited utility at the moment. More... about 16 years ago
Fixed some bugs in FileSetHandler's pattern matching. Pretty serious ones. The new code is 1000 times simpler anyway... one learns a lot in three years, I guess. (Class was created 2005/02/09 and barely touched since.) The new logic relies on the fact that Matcher will tell us good information about partial matches which lets us clue in on which directories we need to traverse and which we don't. Furthermore, I fixed the ** and * patterns to work like one would expect. I could barely spell regex three years ago and now I speak it more or less conversationally... big difference. More... about 16 years ago
Modified the test runner to fork into a separate process and to have a larger heap (which only works when forked). I was running out of memory running some tests... and I now know why but I couldn't tell until the tests were running. ;) More... about 16 years ago
Fixed a typo in a comment. More... about 16 years ago
Exposed some previously private or protected functionality. More... about 16 years ago