You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by "Stephen Colebourne (JIRA)" <ji...@apache.org> on 2007/01/02 13:06:27 UTC

[jira] Created: (LANG-306) Extra StrBuilder methods

Extra StrBuilder methods
------------------------

                 Key: LANG-306
                 URL: http://issues.apache.org/jira/browse/LANG-306
             Project: Commons Lang
          Issue Type: Improvement
            Reporter: Stephen Colebourne
            Priority: Minor
             Fix For: 2.3


Append all the elements in a collection with no separator:
StrBuilder.appendAll(Collection)
StrBuilder.appendAll(Object[])
StrBuilder.appendAll(Iterator)

Append the data followed by a new line:
StrBuilder.appendln(...)

Append a separator if the buffer is not empty:
StrBuilder.appendSeparator(String)

Append a separator if the index > 0:
StrBuilder.appendSeparator(String, index)


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


[jira] Closed: (LANG-306) Extra StrBuilder methods

Posted by "Stephen Colebourne (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LANG-306?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stephen Colebourne closed LANG-306.
-----------------------------------

    Resolution: Fixed
      Assignee: Stephen Colebourne

svn commit "C:\dev\commons\lang\RELEASE-NOTES.txt" "C:\dev\commons\lang\src\java\org\apache\commons\lang\text\StrBuilder.java" "C:\dev\commons\lang\src\test\org\apache\commons\lang\text\StrBuilderAppendInsertTest.java" -N -m "LANG-306 - StrBuilder appendln/appendAll/appendSeparator" --username "scolebourne"
	M C:\dev\commons\lang\RELEASE-NOTES.txt
	M C:\dev\commons\lang\src\java\org\apache\commons\lang\text\StrBuilder.java
	M C:\dev\commons\lang\src\test\org\apache\commons\lang\text\StrBuilderAppendInsertTest.java
	  Transmitting file data: C:\dev\commons\lang\RELEASE-NOTES.txt
	  Transmitting file data: C:\dev\commons\lang\src\java\org\apache\commons\lang\text\StrBuilder.java
	  Transmitting file data: C:\dev\commons\lang\src\test\org\apache\commons\lang\text\StrBuilderAppendInsertTest.java
Committed revision 492369


> Extra StrBuilder methods
> ------------------------
>
>                 Key: LANG-306
>                 URL: https://issues.apache.org/jira/browse/LANG-306
>             Project: Commons Lang
>          Issue Type: Improvement
>            Reporter: Stephen Colebourne
>         Assigned To: Stephen Colebourne
>            Priority: Minor
>             Fix For: 2.3
>
>         Attachments: lang.patch, StrBuilder.java
>
>
> Append all the elements in a collection with no separator:
> StrBuilder.appendAll(Collection)
> StrBuilder.appendAll(Object[])
> StrBuilder.appendAll(Iterator)
> Append the data followed by a new line:
> StrBuilder.appendln(...)
> Append a separator if the buffer is not empty:
> StrBuilder.appendSeparator(String)
> Append a separator if the index > 0:
> StrBuilder.appendSeparator(String, index)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


[jira] Commented: (LANG-306) Extra StrBuilder methods

Posted by "Henri Yandell (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/LANG-306?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12462038 ] 

Henri Yandell commented on LANG-306:
------------------------------------

LANG-69 is a blocker - so things can go in until that gets fixed.

> Extra StrBuilder methods
> ------------------------
>
>                 Key: LANG-306
>                 URL: https://issues.apache.org/jira/browse/LANG-306
>             Project: Commons Lang
>          Issue Type: Improvement
>            Reporter: Stephen Colebourne
>            Priority: Minor
>             Fix For: 2.3
>
>         Attachments: lang.patch, StrBuilder.java
>
>
> Append all the elements in a collection with no separator:
> StrBuilder.appendAll(Collection)
> StrBuilder.appendAll(Object[])
> StrBuilder.appendAll(Iterator)
> Append the data followed by a new line:
> StrBuilder.appendln(...)
> Append a separator if the buffer is not empty:
> StrBuilder.appendSeparator(String)
> Append a separator if the index > 0:
> StrBuilder.appendSeparator(String, index)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


[jira] Commented: (LANG-306) Extra StrBuilder methods

Posted by "Henri Yandell (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/LANG-306?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12461777 ] 

Henri Yandell commented on LANG-306:
------------------------------------

I presume this is a blocker for 2.3 rather than an enhancement for 3.0? [was going to build 2.3 today].

> Extra StrBuilder methods
> ------------------------
>
>                 Key: LANG-306
>                 URL: http://issues.apache.org/jira/browse/LANG-306
>             Project: Commons Lang
>          Issue Type: Improvement
>            Reporter: Stephen Colebourne
>            Priority: Minor
>             Fix For: 2.3
>
>         Attachments: StrBuilder.java
>
>
> Append all the elements in a collection with no separator:
> StrBuilder.appendAll(Collection)
> StrBuilder.appendAll(Object[])
> StrBuilder.appendAll(Iterator)
> Append the data followed by a new line:
> StrBuilder.appendln(...)
> Append a separator if the buffer is not empty:
> StrBuilder.appendSeparator(String)
> Append a separator if the index > 0:
> StrBuilder.appendSeparator(String, index)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


[jira] Commented: (LANG-306) Extra StrBuilder methods

Posted by "Stephen Colebourne (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/LANG-306?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12461869 ] 

Stephen Colebourne commented on LANG-306:
-----------------------------------------

Decision of the Release Manager. I wasn't expecting that they would make it in. Especially as they don't have tests yet, and its late...

> Extra StrBuilder methods
> ------------------------
>
>                 Key: LANG-306
>                 URL: http://issues.apache.org/jira/browse/LANG-306
>             Project: Commons Lang
>          Issue Type: Improvement
>            Reporter: Stephen Colebourne
>            Priority: Minor
>             Fix For: 2.3
>
>         Attachments: StrBuilder.java
>
>
> Append all the elements in a collection with no separator:
> StrBuilder.appendAll(Collection)
> StrBuilder.appendAll(Object[])
> StrBuilder.appendAll(Iterator)
> Append the data followed by a new line:
> StrBuilder.appendln(...)
> Append a separator if the buffer is not empty:
> StrBuilder.appendSeparator(String)
> Append a separator if the index > 0:
> StrBuilder.appendSeparator(String, index)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


[jira] Updated: (LANG-306) Extra StrBuilder methods

Posted by "Stephen Colebourne (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LANG-306?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stephen Colebourne updated LANG-306:
------------------------------------

    Attachment: lang.patch

> Extra StrBuilder methods
> ------------------------
>
>                 Key: LANG-306
>                 URL: https://issues.apache.org/jira/browse/LANG-306
>             Project: Commons Lang
>          Issue Type: Improvement
>            Reporter: Stephen Colebourne
>            Priority: Minor
>             Fix For: 2.3
>
>         Attachments: lang.patch, StrBuilder.java
>
>
> Append all the elements in a collection with no separator:
> StrBuilder.appendAll(Collection)
> StrBuilder.appendAll(Object[])
> StrBuilder.appendAll(Iterator)
> Append the data followed by a new line:
> StrBuilder.appendln(...)
> Append a separator if the buffer is not empty:
> StrBuilder.appendSeparator(String)
> Append a separator if the index > 0:
> StrBuilder.appendSeparator(String, index)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


[jira] Updated: (LANG-306) Extra StrBuilder methods

Posted by "Stephen Colebourne (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/LANG-306?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stephen Colebourne updated LANG-306:
------------------------------------

    Attachment: StrBuilder.java

> Extra StrBuilder methods
> ------------------------
>
>                 Key: LANG-306
>                 URL: http://issues.apache.org/jira/browse/LANG-306
>             Project: Commons Lang
>          Issue Type: Improvement
>            Reporter: Stephen Colebourne
>            Priority: Minor
>             Fix For: 2.3
>
>         Attachments: StrBuilder.java
>
>
> Append all the elements in a collection with no separator:
> StrBuilder.appendAll(Collection)
> StrBuilder.appendAll(Object[])
> StrBuilder.appendAll(Iterator)
> Append the data followed by a new line:
> StrBuilder.appendln(...)
> Append a separator if the buffer is not empty:
> StrBuilder.appendSeparator(String)
> Append a separator if the index > 0:
> StrBuilder.appendSeparator(String, index)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org