[lang][collections] ArrayUtils

2002-09-17 Thread scolebourne
So, which project gets ArrayUtils? [lang] or [collections]? Things on an ArrayUtils would be - a simple toString for arrays based on the ToStringBuilder. - Empty array constants for the different array types - ... Stephen -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/builder CompareToBuilder.java EqualsBuilder.java HashCodeBuilder.java

2002-09-17 Thread scolebourne
scolebourne2002/09/17 15:06:38 Modified:lang/src/java/org/apache/commons/lang/builder CompareToBuilder.java EqualsBuilder.java HashCodeBuilder.java Log: Exclude static fields from reflection based builder Revision Changes

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/builder ToStringBuilder.java ToStringStyle.java StandardToStringStyle.java

2002-09-17 Thread scolebourne
scolebourne2002/09/17 15:07:20 Added: lang/src/java/org/apache/commons/lang/builder ToStringBuilder.java ToStringStyle.java StandardToStringStyle.java Log: Initial checkin of ToStringBuilder and assistants Revision Changes

RE: [lang] Builders complete?

2002-09-18 Thread scolebourne
Yes, any change would be post-release. But we need to start thinking now. Personally, I am not certain that including [beanutils] is needed for [lang]. Extracting MethodUtils is however A Good Thing. Also up for grabs should really be the type convertor part of [beanutils]. IMHO, type

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang ObjectUtils.java

2002-09-18 Thread scolebourne
scolebourne2002/09/18 12:49:08 Modified:lang/src/java/org/apache/commons/lang ObjectUtils.java Log: Add identityToString Make constructor public in line with NumberUtils and StringUtils Javadoc tidy Revision ChangesPath 1.2 +37 -15 jakarta-commons/lang

cvs commit: jakarta-commons/lang STATUS.html

2002-09-18 Thread scolebourne
scolebourne2002/09/18 12:50:35 Modified:lang STATUS.html Log: Removed identityToString todo Removed issues Added ArrayUtils todo Revision ChangesPath 1.16 +3 -5 jakarta-commons/lang/STATUS.html Index: STATUS.html

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang CharSetUtils.java

2002-09-18 Thread scolebourne
scolebourne2002/09/18 12:55:32 Modified:lang/src/java/org/apache/commons/lang CharSetUtils.java Log: Added explicit public constructor Revision ChangesPath 1.4 +10 -1 jakarta-commons/lang/src/java/org/apache/commons/lang/CharSetUtils.java Index

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang ObjectUtils.java

2002-09-18 Thread scolebourne
scolebourne2002/09/18 13:11:53 Modified:lang/src/java/org/apache/commons/lang ObjectUtils.java Log: Add Null placeholder singleton Revision ChangesPath 1.3 +42 -3 jakarta-commons/lang/src/java/org/apache/commons/lang/ObjectUtils.java Index

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang ObjectUtilsTest.java

2002-09-18 Thread scolebourne
scolebourne2002/09/18 13:12:15 Modified:lang/src/test/org/apache/commons/lang ObjectUtilsTest.java Log: Add test for Null placeholder singleton Revision ChangesPath 1.3 +8 -1 jakarta-commons/lang/src/test/org/apache/commons/lang/ObjectUtilsTest.java

cvs commit: jakarta-commons/lang STATUS.html

2002-09-18 Thread scolebourne
scolebourne2002/09/18 13:12:43 Modified:lang STATUS.html Log: Remove Null placeholder singleton todo Revision ChangesPath 1.17 +1 -2 jakarta-commons/lang/STATUS.html Index: STATUS.html

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/builder ToStringBuilder.java

2002-09-19 Thread scolebourne
scolebourne2002/09/19 12:42:59 Modified:lang/src/java/org/apache/commons/lang/builder ToStringBuilder.java Log: Added some javadoc Revision ChangesPath 1.2 +4 -1 jakarta-commons/lang/src/java/org/apache/commons/lang/builder

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/builder ToStringStyle.java

2002-09-19 Thread scolebourne
scolebourne2002/09/19 12:44:10 Modified:lang/src/java/org/apache/commons/lang/builder ToStringStyle.java Log: Added javadoc Added protected getters and setters for fields Made fields private Revision ChangesPath 1.3 +441 -38

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/builder StandardToStringStyle.java

2002-09-19 Thread scolebourne
scolebourne2002/09/19 12:45:22 Modified:lang/src/java/org/apache/commons/lang/builder StandardToStringStyle.java Log: Superclass now specifies protected getters and setters Revision ChangesPath 1.3 +37 -73 jakarta-commons/lang/src/java

cvs commit: jakarta-commons-sandbox/lang ConstructorUtils.java ArrayUtils.java ReflectionException.java ReflectionUtils.java

2002-09-19 Thread scolebourne
scolebourne2002/09/19 16:02:51 Added: lang ConstructorUtils.java ArrayUtils.java ReflectionException.java ReflectionUtils.java Log: Initial versions of reflection code Revision ChangesPath 1.1 jakarta-commons-sandbox/lang

Re: Next stage in release

2002-09-20 Thread scolebourne
The maven site shows the exception tests don't pass. Is this right? Otherwise, its a green light to the next stage. Stephen from:Henri Yandell [EMAIL PROTECTED] date:Fri, 20 Sep 2002 08:12:27 to: [EMAIL PROTECTED] subject: Re: Next stage in release Oh, it also looks as

cvs commit: jakarta-commons/lang STATUS.html

2002-09-21 Thread scolebourne
scolebourne2002/09/21 01:11:18 Modified:lang STATUS.html Log: Added more TODOs for CharUtils and StringBuffer Revision ChangesPath 1.19 +5 -2 jakarta-commons/lang/STATUS.html Index: STATUS.html

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang ObjectUtils.java

2002-09-22 Thread scolebourne
scolebourne2002/09/22 02:18:33 Modified:lang/src/java/org/apache/commons/lang/builder CompareToBuilder.java EqualsBuilder.java ToStringBuilder.java HashCodeBuilder.java ToStringStyle.java StandardToStringStyle.java

Re: [lang] StringUtils.containsOnly

2002-09-27 Thread scolebourne
from:Steve Downey [EMAIL PROTECTED] Also, this is a case of 'fixing' the standard Java library. String.indexOf(String str) will throw a NPE if str is null. [That's where indexOfAny will throw] It also can't be called on a null string. IMO StringUtils is a different proposition to a

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang NumberUtils.java CharSet.java RandomStringUtils.java CharSetUtils.java StringUtils.java

2002-09-28 Thread scolebourne
scolebourne2002/09/28 03:34:54 Modified:lang/src/java/org/apache/commons/lang NumberUtils.java CharSet.java RandomStringUtils.java CharSetUtils.java StringUtils.java Log: Javadoc fixes and enhancements from Steve Downey Revision

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/builder CompareToBuilder.java ToStringBuilder.java

2002-09-28 Thread scolebourne
scolebourne2002/09/28 03:44:51 Modified:lang/src/java/org/apache/commons/lang/builder CompareToBuilder.java ToStringBuilder.java Log: Javadoc fixes and enhancements Revision ChangesPath 1.4 +19 -7 jakarta-commons/lang/src/java/org

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/enum EnumUtils.java

2002-09-28 Thread scolebourne
scolebourne2002/09/28 03:49:59 Modified:lang/src/java/org/apache/commons/lang/enum EnumUtils.java Log: Javadoc fixes and enhancements Revision ChangesPath 1.3 +4 -1 jakarta-commons/lang/src/java/org/apache/commons/lang/enum/EnumUtils.java Index

Re: [lang] Proposal for *NEXT* version

2002-10-04 Thread scolebourne
Amazing... We're starting to discuss stuff I've been experimenting with all year. My own Joda project started initially as a way to generate beans from interfaces, adding in other facilities like support for Maps and Lists, plus event handling. If I had the chance then I would agree that the

Re: [lang] Proposal for *NEXT* version

2002-10-04 Thread scolebourne
from:John Yu [EMAIL PROTECTED] I also wish to have your hypothetical syntax available in Java. In Java 3.0, perhaps. :-) ;-) As far as I got in practical terms was interface based beans: public interface Person extends Bean { public StringProperty surname(); public IntegerProperty

Re: [lang] Proposal for *NEXT* version

2002-10-04 Thread scolebourne
from:John Yu [EMAIL PROTECTED] I'd like to hear your comment on the idea I posted in a previous message: public class MyClass { private int fAge; private String fName; static { BeanInfoUtils.expose(MyClass.class, name, fName, setNameWithValidation);

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections ArrayStack.java

2002-10-13 Thread scolebourne
scolebourne2002/10/13 05:56:42 Modified:collections/src/java/org/apache/commons/collections ArrayStack.java Log: Enable nulls to be added to the stack Add initial size constructor Tidy javadoc and code layout Revision ChangesPath 1.10

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections UnboundedFifoBuffer.java BoundedFifoBuffer.java BinaryHeap.java

2002-10-13 Thread scolebourne
scolebourne2002/10/13 05:59:04 Modified:collections/src/java/org/apache/commons/collections UnboundedFifoBuffer.java BoundedFifoBuffer.java BinaryHeap.java Log: Tidy javadoc and code layout Revision ChangesPath 1.5

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections CollectionUtils.java

2002-10-13 Thread scolebourne
scolebourne2002/10/12 14:59:45 Modified:collections/src/java/org/apache/commons/collections CollectionUtils.java Log: Removed unused variable (patch from Steve Downey) Revision ChangesPath 1.17 +8 -8 jakarta-commons/collections/src

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections TestBinaryHeap.java

2002-10-13 Thread scolebourne
scolebourne2002/10/13 05:59:52 Modified:collections/src/test/org/apache/commons/collections TestBinaryHeap.java Log: Use field access not method for testing Revision ChangesPath 1.7 +5 -5 jakarta-commons/collections/src/test/org

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections StringStack.java

2002-10-13 Thread scolebourne
scolebourne2002/10/13 04:17:57 Modified:collections/src/java/org/apache/commons/collections StringStack.java Log: Deprecate in favour of StringUtils in [lang] Revision ChangesPath 1.3 +9 -3 jakarta-commons/collections/src/java/org

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections MultiHashMap.java

2002-10-13 Thread scolebourne
scolebourne2002/10/12 15:04:59 Modified:collections/src/java/org/apache/commons/collections MultiHashMap.java Log: Removed unused variable (patch from Steve Downey) Added class level javadoc Revision ChangesPath 1.5 +15 -8 jakarta

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections MapUtils.java BufferUtils.java ListUtils.java CollectionUtils.java BagUtils.java SetUtils.java

2002-10-13 Thread scolebourne
scolebourne2002/10/12 17:38:36 Modified:collections/src/java/org/apache/commons/collections MapUtils.java BufferUtils.java ListUtils.java CollectionUtils.java BagUtils.java SetUtils.java Log: Javadoc improvements, especially exception

cvs commit: jakarta-commons/collections RELEASE-NOTES-2.1.html

2002-10-13 Thread scolebourne
scolebourne2002/10/12 17:40:15 Modified:collections RELEASE-NOTES-2.1.html Log: Update to reflect most up to date set of changes for release Revision ChangesPath 1.3 +93 -64jakarta-commons/collections/RELEASE-NOTES-2.1.html Index: RELEASE-NOTES-2.1.html

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/comparators NullComparator.java

2002-10-13 Thread scolebourne
scolebourne2002/10/12 15:15:21 Modified:collections/src/java/org/apache/commons/collections MultiHashMap.java UniqueFilterIterator.java IteratorEnumeration.java DoubleOrderedMap.java FastTreeMap.java BagUtils.java

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/comparators TestAll.java

2002-10-13 Thread scolebourne
scolebourne2002/10/12 15:35:10 Added: collections/src/test/org/apache/commons/collections/comparators TestAll.java Log: Add whole package testing class Revision ChangesPath 1.1 jakarta-commons/collections/src/test/org/apache

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/iterators TestIteratorChain.java TestFilterListIterator.java TestFilterIterator.java TestListIteratorWrapper.java TestUniqueFilterIterator.java

2002-10-13 Thread scolebourne
scolebourne2002/10/12 15:36:24 Modified:collections/src/test/org/apache/commons/collections/primitives TestAbstractIntArrayList.java TestAbstractLongArrayList.java TestLongArrayList.java TestFloatArrayList.java

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections UniqueFilterIterator.java

2002-10-13 Thread scolebourne
scolebourne2002/10/12 16:25:27 Removed: collections/src/java/org/apache/commons/collections UniqueFilterIterator.java Log: Remove as added after 2.0, and is now in subpackage -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections MapUtils.java

2002-10-13 Thread scolebourne
scolebourne2002/10/13 15:31:35 Modified:collections/src/java/org/apache/commons/collections MapUtils.java Log: Javadoc improvement Revision ChangesPath 1.14 +11 -7 jakarta-commons/collections/src/java/org/apache/commons/collections

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang ArrayUtils.java

2002-10-13 Thread scolebourne
scolebourne2002/10/13 15:42:06 Added: lang/src/java/org/apache/commons/lang ArrayUtils.java Log: Initial version of ArrayUtils, includes toMap Revision ChangesPath 1.1 jakarta-commons/lang/src/java/org/apache/commons/lang/ArrayUtils.java Index

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang ArrayUtilsTest.java LangTestSuite.java

2002-10-13 Thread scolebourne
scolebourne2002/10/13 15:42:59 Modified:lang/src/test/org/apache/commons/lang LangTestSuite.java Added: lang/src/test/org/apache/commons/lang ArrayUtilsTest.java Log: Initial version of ArrayUtils testing, testing incomplete at present Revision ChangesPath 1.5

RE: [collections] Primitive collections

2002-10-15 Thread scolebourne
[change of plan proposed...] Thanks for the input Rodney. It sounds like you are convinced that new Interfaces and wrappers are the way to go. And you seem to be offering to code them :-) However, I believe that were I to accept them into this release as a rushed quick code, with little

cvs commit: jakarta-commons/collections STATUS.html

2002-10-15 Thread scolebourne
scolebourne2002/10/15 14:44:24 Modified:collections STATUS.html Log: Add to todo list Revision ChangesPath 1.18 +13 -1 jakarta-commons/collections/STATUS.html Index: STATUS.html === RCS

cvs commit: jakarta-commons/collections RELEASE-NOTES-2.1.html

2002-10-15 Thread scolebourne
scolebourne2002/10/15 14:45:17 Modified:collections RELEASE-NOTES-2.1.html Log: Delay primitives to 2.2 release Revision ChangesPath 1.5 +0 -29 jakarta-commons/collections/RELEASE-NOTES-2.1.html Index: RELEASE-NOTES-2.1.html

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections TestAll.java

2002-10-15 Thread scolebourne
scolebourne2002/10/15 14:51:22 Modified:collections/src/test/org/apache/commons/collections TestAll.java Log: Delay primitives to 2.2 release Revision ChangesPath 1.36 +5 -5 jakarta-commons/collections/src/test/org/apache/commons

[vfs] Recent commits

2002-10-23 Thread scolebourne
Recent commits in VFS appear to have the short form of the Apache licence, which is not allowed apparantly. Can this be fixed please? Stephen -- To unsubscribe, e-mail: mailto:commons-dev-unsubscribe;jakarta.apache.org For additional commands, e-mail:

Re: Proposal: httpd-like PMC organisation

2002-10-23 Thread scolebourne
from:Costin Manolache [EMAIL PROTECTED] I would like to propose changing this number to include more people - I think the right solution is more closer to what httpd and apr projects are doing, where the PMC is composed of most active commiters. (plus)1 My proposal is to modify the

Re: [collections] ClassMap and others

2002-10-23 Thread scolebourne
from:Henri Yandell [EMAIL PROTECTED] On Wed, 23 Oct 2002, Michael A. Smith wrote: LimitedList - A List which maintains a fixed max length. usefulness? Maybe an LRUList? Already exists. ListUtils.fixedSizeList(List) typed.* a Map/List/Set wrapper which enforces the Type of the

Re: License and copyright issues

2002-10-21 Thread scolebourne
from:Costin Manolache [EMAIL PROTECTED] But we need to find a solution and find this code - and to be able to handle this better in the future. ( i.e. find some better policy or mechanisms, have more information for everyone about who should be contacted and when and what to look for -

Re: [Lang] Assertions?

2002-10-21 Thread scolebourne
The code basically replaces: public void foo(List list) { if (list == null) { throw new IllegalArgumentException(The list must not be null); } with: public void foo(List list) { Validate.isNotNull(arg, list); 3 lines to 1. Simpler to type. More consistent errors. etc.etc. Sure its not earth

Re: [Lang] Assertions?

2002-10-21 Thread scolebourne
from:Paul Cantrell [EMAIL PROTECTED] How does Validate.isNotNull() know that it's an IllegalArgumentException? That's not the only kind of precondition exception (see (2) below). Actually, I think I throw all of these as IAEs. Being overly clever about the type of exception just

[ANNOUNCE] Commons collections 2.1 released

2002-10-22 Thread scolebourne
The Apache Jakarta Commons Collections team is proud to announce the 2.1 release. Collections aims to add functionality around the Java collections API. This version includes Queue/Buffer implementations and many collection decorators. Release notes, binary and source distributions are

Re: [ANNOUNCE] Commons collections 2.1 released

2002-10-22 Thread scolebourne
And a special thanks to Henri for doing the 'release' parts of the release. So, freeze over, and on to primitives. ;-) Stephen from:[EMAIL PROTECTED] The Apache Jakarta Commons Collections team is proud to announce the 2.1 release. Collections aims to add functionality around the Java

Re: [Lang] Validate

2002-10-23 Thread scolebourne
Basic design decision... Do we : 1) only deal with IAEs 2) put IAEs and IStateE (ISEs) in the same class, thus prefixing each method by argument and stateCheck 3) Name the classes ValidateArgument and ValidateState. (I think I favour #3) For your interface, I would name the type method

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/reflect - New directory

2002-10-24 Thread scolebourne
scolebourne2002/10/24 16:11:01 jakarta-commons/lang/src/java/org/apache/commons/lang/reflect - New directory -- To unsubscribe, e-mail: mailto:commons-dev-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:commons-dev-help;jakarta.apache.org

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang ClassUtils.java

2002-10-24 Thread scolebourne
scolebourne2002/10/24 16:12:54 Added: lang/src/java/org/apache/commons/lang/reflect MethodUtils.java FieldUtils.java ConstructorUtils.java ReflectionException.java ReflectionUtils.java lang/src/java

cvs commit: jakarta-commons-sandbox/lang FieldUtils.java ConstructorUtils.java ArrayUtils.java ClassUtils.java MethodUtils.java ReflectionException.java ReflectionUtils.java

2002-10-24 Thread scolebourne
scolebourne2002/10/24 16:13:47 Removed: lang FieldUtils.java ConstructorUtils.java ArrayUtils.java ClassUtils.java MethodUtils.java ReflectionException.java ReflectionUtils.java Log: Moved to commons proper -- To unsubscribe, e

cvs commit: jakarta-commons-sandbox/clazz/src/java/org/apache/commons/clazz MethodUtils.java

2002-10-27 Thread scolebourne
scolebourne2002/10/27 13:02:32 Removed: clazz/src/java/org/apache/commons/clazz MethodUtils.java Log: Removed, as should be in [lang] -- To unsubscribe, e-mail: mailto:commons-dev-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:commons-dev-help

cvs commit: jakarta-commons-sandbox/clazz/src/java/org/apache/commons/clazz MetaUnit.java MetaProperty.java Bean.java MetaOperation.java Unit.java Property.java MetaBean.java Operation.java MetaModifiers.java

2002-10-27 Thread scolebourne
scolebourne2002/10/27 14:45:24 Added: clazz/src/java/org/apache/commons/clazz MetaUnit.java MetaProperty.java Bean.java MetaOperation.java Unit.java Property.java MetaBean.java Operation.java MetaModifiers.java

Re: Time for more mailing lists ?

2003-01-28 Thread scolebourne
I am 1 for more commons mailing lists. I've said before that [jelly] ought to have the confidence in itself to break out. Also a 'core'/'util' group could easily break out- [lang] [collections] [beanutil] Stephen from:Henri Yandell [EMAIL PROTECTED] On Tue, 28 Jan 2003, Nicola Ken

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/iterators FilterIterator.java

2003-01-30 Thread scolebourne
scolebourne2003/01/30 15:10:29 Modified:collections/src/java/org/apache/commons/collections/iterators FilterIterator.java Log: Enable remove() from Ralph Wagner Revision ChangesPath 1.3 +16 -7 jakarta-commons/collections/src/java/org

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/enum Enum.java

2003-02-04 Thread scolebourne
scolebourne2003/02/04 08:56:09 Modified:lang/src/java/org/apache/commons/lang/enum Enum.java Log: Update to output more nicely formatted toString() that converts $ to . Revision ChangesPath 1.7 +2 -1 jakarta-commons/lang/src/java/org/apache/commons/lang/enum

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang ArrayUtilsTest.java

2003-02-04 Thread scolebourne
scolebourne2003/02/04 14:06:24 Modified:lang/src/java/org/apache/commons/lang ArrayUtils.java lang/src/test/org/apache/commons/lang ArrayUtilsTest.java Log: Add support for indexOf, lastIndexOf and contains for ArrayUtils from Nikolay Metchev, bug ref 15438

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/time FastDateFormat.java

2003-02-04 Thread scolebourne
scolebourne2003/02/04 14:12:09 Modified:lang/src/java/org/apache/commons/lang/time FastDateFormat.java Log: Change scope of static constant for performance from Gary Gregory, bug ref 16622 Revision ChangesPath 1.3 +5 -3 jakarta

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang BooleanUtils.java

2003-02-04 Thread scolebourne
scolebourne2003/02/04 14:50:31 Modified:lang/src/java/org/apache/commons/lang BooleanUtils.java Log: Fix javadoc from checkstyle Revision ChangesPath 1.4 +2 -4 jakarta-commons/lang/src/java/org/apache/commons/lang/BooleanUtils.java Index

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/enum Enum.java

2003-02-06 Thread scolebourne
scolebourne2003/02/06 12:13:07 Modified:lang/src/java/org/apache/commons/lang/enum Enum.java Log: Use default HashMap sizes as this is better across JDK versions Revision ChangesPath 1.10 +7 -4 jakarta-commons/lang/src/java/org/apache/commons/lang/enum

Re: [VOTE}[net] Steve Cohen as committer

2003-02-17 Thread scolebourne
Steve Cohen commiter for Commons/Net 1 Stephen 1 jb Steve Cohen [EMAIL PROTECTED] writes: Do I have vote? If so, 1. -Original Message- From: Jeffrey D. Brekke [mailto:[EMAIL PROTECTED]] Sent: Sun 2/16/2003 10:31 PM To: Jakarta Commons

Re: [VOTE}[net] Release 1.0.0 of Commons/Net

2003-02-17 Thread scolebourne
1 Vote: Commons/Net 1.0.0 Release [X] 1 I am in favor of the release, and will help support it. [ ] 0 I am in favor of the release, but am unable to help support it. [ ] -0 I am not in favor of the release. [ ] -1 I am against this proposal (must include a reason). --

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/comparators TestComparator.java

2003-02-19 Thread scolebourne
scolebourne2003/02/19 12:33:21 Modified:collections/src/test/org/apache/commons/collections/iterators TestArrayIterator2.java TestFilterListIterator.java TestSingletonIterator.java TestArrayIterator.java

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections BagUtils.java

2003-02-20 Thread scolebourne
scolebourne2003/02/20 15:14:03 Modified:collections/src/java/org/apache/commons/collections BagUtils.java Log: Use correct internal method, from Andrew Freeman Update licence and javadoc Revision ChangesPath 1.8 +62 -47 jakarta

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections BeanMap.java

2003-03-03 Thread scolebourne
scolebourne2003/03/03 11:41:30 Modified:collections/src/java/org/apache/commons/collections BeanMap.java Log: Improve javadoc to clatify role of read-only properties noted by [EMAIL PROTECTED] Revision ChangesPath 1.17 +163 -152 jakarta

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/enum EnumUtils.java

2003-03-06 Thread scolebourne
scolebourne2003/03/06 14:50:21 Modified:lang/src/java/org/apache/commons/lang/enum EnumUtils.java Log: Remove unused import from Gary Gregory Revision ChangesPath 1.6 +1 -2 jakarta-commons/lang/src/java/org/apache/commons/lang/enum/EnumUtils.java Index

Re: [OT] timers

2003-03-11 Thread scolebourne
See also [lang]'s time package (unreleased) where there is a StopWatch class. Stephen from:Jeff Mesnil [EMAIL PROTECTED] date:Tue, 11 Mar 2003 18:05:06 to: [EMAIL PROTECTED], [EMAIL PROTECTED] subject: Re: [OT] timers Hi, Robert McIntosh wrote: Does anyone know of a

Re: [VOTE RESULT] Nominate Alex Chaffee as Commons committer

2003-03-13 Thread scolebourne
Lots of plus ones and no dissenters, so welcome Alex. Can someone grant Alex karma to commons proper? Thanks Stephen from:robert burrell donkin [EMAIL PROTECTED] date:Wed, 12 Mar 2003 18:33:40 to: [EMAIL PROTECTED] subject: Re: [VOTE] Nominate Alex Chaffee as Commons

Re: [LANG] Bugzilla id 17882

2003-03-14 Thread scolebourne
from:Henning P. Schmiedehausen [EMAIL PROTECTED] Henri Yandell [EMAIL PROTECTED] writes: Personally I'm against them. If we do this method, why are we not adding a char override for every method that takes a String as an argument in that way? ie) countMatches, chomp/chompLast[after

[VOTE] Nominate Gary Gregory as commons committer

2003-03-14 Thread scolebourne
I nominate Gary Gregory as a commons committer. Gary has provided a number of useful patches to [lang], which also indicate a good oversight role. In addition he has a spotted a number of bugs and possible enhancements that he is willing to fix. Votes plus or minus one please... Stephen

Re: [VOTE] Nominate Gary Gregory as commons committer

2003-03-14 Thread scolebourne
Heres my plus one. Stephen from:[EMAIL PROTECTED] date:Fri, 14 Mar 2003 14:07:49 to: [EMAIL PROTECTED] subject: Re: [VOTE] Nominate Gary Gregory as commons committer I nominate Gary Gregory as a commons committer. Gary has provided a number of useful patches to [lang],

Re: chop/chomp/slice - how to deprecate?

2003-03-17 Thread scolebourne
I don't know perl at all, so I can't comment on the detail of the changes. However, we must provide a deprecation route as best we can. Either: 1) deprecate methods within StringUtils 2) create a new utils class - StringPerlUtils to provide Perl-like string functions The Gump route doesn't

Re: [LANG][UTIL] Where did WordWrapUtils go?

2003-03-18 Thread scolebourne
[util] got closed down (no possibility of release). I think I would support a StringWordUtils class in [lang] if it contains resonable methods (not too high level functionality). Stephen from:Henning P. Schmiedehausen [EMAIL PROTECTED] date:Tue, 18 Mar 2003 09:19:33 to:

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang/builder ToStringBuilderTest.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 09:35:52 Modified:lang/src/test/org/apache/commons/lang/builder ToStringBuilderTest.java Log: Update licence date to 2003 Revision ChangesPath 1.6 +2 -2 jakarta-commons/lang/src/test/org/apache/commons/lang

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang/exception ExceptionUtilsTestCase.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 09:36:16 Modified:lang/src/test/org/apache/commons/lang/exception ExceptionUtilsTestCase.java Log: Update licence date to 2003 Revision ChangesPath 1.8 +2 -3 jakarta-commons/lang/src/test/org/apache/commons/lang

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/exception NestableError.java Nestable.java NestableException.java NestableRuntimeException.java ExceptionUtils.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 09:47:51 Modified:lang/src/java/org/apache/commons/lang/exception NestableError.java Nestable.java NestableException.java NestableRuntimeException.java ExceptionUtils.java Log: Update

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/functor Factory.java Predicate.java ExecutorException.java TransformerUtils.java TransformerException.java PredicateUtils.java Executor.java ExecutorUtils.java PredicateException.java FactoryException.java Transformer.java FactoryUtils.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 09:50:02 Modified:lang/src/java/org/apache/commons/lang/functor Factory.java Predicate.java ExecutorException.java TransformerUtils.java TransformerException.java PredicateUtils.java

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/math Range.java IntRange.java NumberRange.java FloatRange.java LongRange.java DoubleRange.java Fraction.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 09:51:15 Modified:lang/src/java/org/apache/commons/lang/math Range.java IntRange.java NumberRange.java FloatRange.java LongRange.java DoubleRange.java Fraction.java Log: Update licence date to 2003 Revision

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/util BitField.java IdentifierUtils.java Validate.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 09:52:25 Modified:lang/src/java/org/apache/commons/lang/util BitField.java IdentifierUtils.java Validate.java Log: Update licence date to 2003 Revision ChangesPath 1.4 +2 -2 jakarta-commons/lang/src/java/org

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/builder CompareToBuilder.java ToStringBuilder.java ToStringStyle.java HashCodeBuilder.java EqualsBuilder.java StandardToStringStyle.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 09:54:16 Modified:lang/src/java/org/apache/commons/lang/builder CompareToBuilder.java ToStringBuilder.java ToStringStyle.java HashCodeBuilder.java EqualsBuilder.java StandardToStringStyle.java

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang ArrayUtils.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 09:57:43 Modified:lang/src/java/org/apache/commons/lang ArrayUtils.java Log: Remove reverseArray as reverse already exists! Revision ChangesPath 1.10 +1 -22 jakarta-commons/lang/src/java/org/apache/commons/lang/ArrayUtils.java Index

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang CharSetUtils.java CharSet.java CharRange.java ClassUtils.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 09:59:09 Modified:lang/src/java/org/apache/commons/lang CharSetUtils.java CharSet.java CharRange.java ClassUtils.java Log: Update licence date to 2003 Revision ChangesPath 1.10 +2 -2 jakarta-commons/lang/src/java

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang RandomStringUtils.java NumberRange.java NumberUtils.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 10:00:59 Modified:lang/src/java/org/apache/commons/lang RandomStringUtils.java NumberRange.java NumberUtils.java Log: Update licence date to 2003 Revision ChangesPath 1.9 +14 -14 jakarta-commons/lang/src/java/org

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang SystemUtils.java SerializationException.java SerializationUtils.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 10:02:29 Modified:lang/src/java/org/apache/commons/lang SystemUtils.java SerializationException.java SerializationUtils.java Log: Update licence date to 2003 Revision ChangesPath 1.8 +2 -2 jakarta-commons/lang/src

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang StringUtils.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 10:05:44 Modified:lang/src/java/org/apache/commons/lang StringUtils.java Log: Update licence date to 2003 Javadoc fixes Revision ChangesPath 1.36 +10 -10 jakarta-commons/lang/src/java/org/apache/commons/lang/StringUtils.java Index

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang LangTestSuite.java NumberUtilsTest.java NumberRangeTest.java ObjectUtilsTest.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 13:49:13 Modified:lang/src/test/org/apache/commons/lang LangTestSuite.java NumberUtilsTest.java NumberRangeTest.java ObjectUtilsTest.java Log: Update licence date to 2003 Revision ChangesPath 1.13

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang SerializationUtilsTest.java StringUtilsEqualsIndexOfTest.java RandomStringUtilsTest.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 13:50:58 Modified:lang/src/test/org/apache/commons/lang SerializationUtilsTest.java StringUtilsEqualsIndexOfTest.java RandomStringUtilsTest.java Log: Update licence date to 2003

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang StringUtilsTrimEmptyTest.java StringUtilsTest.java StringUtilsSubstringTest.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 13:51:19 Modified:lang/src/test/org/apache/commons/lang StringUtilsTrimEmptyTest.java StringUtilsTest.java StringUtilsSubstringTest.java Log: Update licence date to 2003 Revision ChangesPath 1.6

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang StringUtilsIsTest.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 13:51:51 Modified:lang/src/test/org/apache/commons/lang StringUtilsIsTest.java Log: Update licence date to 2003 Revision ChangesPath 1.5 +2 -2 jakarta-commons/lang/src/test/org/apache/commons/lang/StringUtilsIsTest.java Index

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang StringUtils.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 13:52:31 Modified:lang/src/java/org/apache/commons/lang StringUtils.java Log: Update containsOnly Add containsNone Revision ChangesPath 1.37 +82 -31 jakarta-commons/lang/src/java/org/apache/commons/lang/StringUtils.java Index

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang StringUtils.java

2003-03-23 Thread scolebourne
scolebourne2003/03/23 16:47:03 Modified:lang/src/test/org/apache/commons/lang StringUtilsTrimEmptyTest.java lang/src/java/org/apache/commons/lang StringUtils.java Log: Add trimToNull Add trimToEmpty Revision ChangesPath 1.7

[lang] Functor debate [was re: [lang] scope for version 2]

2003-03-24 Thread scolebourne
from:Arnd Kohrs [EMAIL PROTECTED] I suggest to do the following renamings in for Lang 2.0: - Executor-- UnaryProcedure - Executor.execute(..)-- UnaryProcedure.run(..) - Factory -- Function - Factory.create() -- Function.apply() - Transformer -- UnaryFunction -

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang StringUtils.java

2003-03-24 Thread scolebourne
scolebourne2003/03/24 16:15:58 Modified:lang/src/java/org/apache/commons/lang StringUtils.java Log: Deprecate clean() now trimToEmpty() is added Revision ChangesPath 1.39 +2 -1 jakarta-commons/lang/src/java/org/apache/commons/lang/StringUtils.java Index

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections TestPredicatedCollection.java

2003-04-04 Thread scolebourne
scolebourne2003/04/04 14:20:44 Modified:collections/src/test/org/apache/commons/collections TestPredicatedCollection.java Log: Add licence Revision ChangesPath 1.2 +56 -2 jakarta-commons/collections/src/test/org/apache/commons

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections SetUtils.java MapUtils.java ListUtils.java CollectionUtils.java BagUtils.java

2003-04-04 Thread scolebourne
scolebourne2003/04/04 14:22:29 Modified:collections/src/test/org/apache/commons/collections TestListUtils.java TestSetUtils.java TestMapUtils.java TestCollectionUtils.java collections/src/java/org/apache/commons/collections

Re: [lang] What's left for 2.0 (WAS: [collections] Primitive collecti ons (was Entities and LGPL))

2003-06-06 Thread scolebourne
While I agree with the sentiments of layering [collections] on [lang], my experience tells me that there are others opposed to this (for various reasons). At present there are no real needs to share code between the two. IntHashMap will be private in [lang] and public in [collections].

  1   2   3   4   5   6   7   8   9   10   >