0
I Use This!
Inactive

Commits : Listings

Analyzed about 11 hours ago. based on code collected about 22 hours ago.
May 15, 2023 — May 15, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
WIP - playing around with some ideas relating to symbolic references to contexts and properties within a context hierarchy. Unclear if this will even work but it will allow some cool stuff in expressions when trying to bind complex UI hierarchies together. More... over 15 years ago
Updated prop dep mgr to expose the template processor. ---------------------------------------------------------------------- More... over 15 years ago
Added a getter to expose the dependency manager's internal template processor. More... over 15 years ago
Don't display the direction indicators for undirected edges in the test program. Added a comment about the (nominalize) edge directions. More... over 15 years ago
Added a Graph wrapper for the WordNet database. Still testing and working out the kinks, but so far it works... within certain looser semantic interpretations of the graph interface. More... over 15 years ago
Rolling the changelog for another silent release. More... over 15 years ago
getDynamicMutator will now return a null if an accessor exists for the same property for which the mutator is requested. You don't want to create a dynamic property when there is a real property with the same name. If you do, there is a good chance you will not be able to retrieve the value set with the dynamic call because any calls to retrieve the value will invoke the real accessor. More... over 15 years ago
Can retrieve the last item in a collection using empty brackets notation, e.g. lastItem="someCollection[]". More... over 15 years ago
Expanded expression language capabilities for indexed property access in 3 ways: 1) Now allows retrieval from any collection type with the someCollection[x] notation, not just lists. 2) Similarly, can now append to any collection type with the someCollection[] notation. 3) When setting a specific value on a list, (i.e. someList[2]=...), if the index is greater than the length of the list, it will append the given value to the end of the list, inserting null padding elements if required to reach the proper size. More... over 15 years ago
Fixed a bean property resolution bug (and updated the unit tests to test this case) involving a bad implementation of the property lower-casing convention. TLA was becoming "tLA" instead of following the bean convention of leaving it as "TLA". I'd quote the spec, but I can't be bothered. Basically, if the first two characters are upper-case then you leave the property name alone. More... over 15 years ago
Fixed some formatting. More... over 15 years ago
Modified EditorDialog to make it easier to make owned dialogs. More... over 15 years ago
Added a getter for the internal window used for pop-up locations. More... over 15 years ago
Rolled the changelog. More... over 15 years ago
Adding a form implementation that automatically configures itself with just the read/write properties. Useful for XML forms. More... over 15 years ago
rendering of primitive arrays and reading back in now works, as does rendering of simple object arrays as Lists. For now, the default XmlRenderingEngine has a list of basic object types that it knows it can render in array form. Hopefully there is some smoother way to do this. I'm just getting a little brain dead. More... over 15 years ago
Since we can now handle primitive arrays, return the proper class type when dealing with one rather than auto-converting it to a List More... over 15 years ago
Do not wrap the primitive arrays with their object equivalent classes because you can't assign an object array to a primitive array or visa-versa. Auto-boxing doesn't work on arrays More... over 15 years ago
last couple of edge cases More... over 15 years ago
First pass of array renderer. It's not quite done yet (does nothing for Object[]), but I need to stop it for a bit and wanted Paul to see where I was going with it so he could give any feedback. More... over 15 years ago
Added string encoding for arrays. Made primitiveMap unmodifiable and give it an accessor. More... over 15 years ago
changed array tags to be array-type to match convention More... over 15 years ago
Added capability to handle arrays. An array of primitives is marked by a <typename-array> tag. More... over 15 years ago
allow conversion from String to char, just like it does with Character. Added missing entries to the primitive type map. More... over 15 years ago
Modified Inspector to handle converting from a String to an Array of objects so long as the object values don't have commas in them. This is part of additions to be able to render and read back in arrays, at least for primitive types and easily rendered objects More... over 15 years ago
Added a short-cut for configuring meta-classes based on existing Java classes. This could be done before but with a more verbose syntax so this is really just for convenience. Before: <metaClass name="foo.Bar" templateFactory="org.progeeks.meta.beans.BeanUtils.TEMPLATE_FACTORY"/> More... over 15 years ago
Been meaning to do this for a while... Added support for constants in attributes. This kicks in if the target type is one that cannot parse strings and if the string resolves to a constant as per Inspector.getConstant(). More... over 15 years ago
Added a comment. More... over 15 years ago
Updated to include the ability to ask about the completeness of a path. More... over 15 years ago
No real change... just testing if the commit messages are making it through to the mailing list again yet. More... over 15 years ago