issue:270534 applied patch for old package names
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@49 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
1c02a6168c
commit
0de1e804ef
|
@ -43,7 +43,7 @@ public class AttributesMap implements Attributes
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/*
|
||||
* @see org.eclipse.util.Attributes#removeAttribute(java.lang.String)
|
||||
* @see org.eclipse.jetty.util.Attributes#removeAttribute(java.lang.String)
|
||||
*/
|
||||
public void removeAttribute(String name)
|
||||
{
|
||||
|
@ -52,7 +52,7 @@ public class AttributesMap implements Attributes
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/*
|
||||
* @see org.eclipse.util.Attributes#setAttribute(java.lang.String, java.lang.Object)
|
||||
* @see org.eclipse.jetty.util.Attributes#setAttribute(java.lang.String, java.lang.Object)
|
||||
*/
|
||||
public void setAttribute(String name, Object attribute)
|
||||
{
|
||||
|
@ -64,7 +64,7 @@ public class AttributesMap implements Attributes
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/*
|
||||
* @see org.eclipse.util.Attributes#getAttribute(java.lang.String)
|
||||
* @see org.eclipse.jetty.util.Attributes#getAttribute(java.lang.String)
|
||||
*/
|
||||
public Object getAttribute(String name)
|
||||
{
|
||||
|
@ -73,7 +73,7 @@ public class AttributesMap implements Attributes
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/*
|
||||
* @see org.eclipse.util.Attributes#getAttributeNames()
|
||||
* @see org.eclipse.jetty.util.Attributes#getAttributeNames()
|
||||
*/
|
||||
public Enumeration getAttributeNames()
|
||||
{
|
||||
|
@ -82,7 +82,7 @@ public class AttributesMap implements Attributes
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/*
|
||||
* @see org.eclipse.util.Attributes#getAttributeNames()
|
||||
* @see org.eclipse.jetty.util.Attributes#getAttributeNames()
|
||||
*/
|
||||
public static Enumeration getAttributeNamesCopy(Attributes attrs)
|
||||
{
|
||||
|
@ -97,7 +97,7 @@ public class AttributesMap implements Attributes
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/*
|
||||
* @see org.eclipse.util.Attributes#clear()
|
||||
* @see org.eclipse.jetty.util.Attributes#clear()
|
||||
*/
|
||||
public void clearAttributes()
|
||||
{
|
||||
|
|
|
@ -161,12 +161,12 @@ public class TypeUtil
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
private static int intCacheSize=
|
||||
Integer.getInteger("org.eclipse.util.TypeUtil.IntegerCacheSize",600).intValue();
|
||||
Integer.getInteger("org.eclipse.jetty.util.TypeUtil.IntegerCacheSize",600).intValue();
|
||||
private static Integer[] integerCache = new Integer[intCacheSize];
|
||||
private static String[] integerStrCache = new String[intCacheSize];
|
||||
private static Integer minusOne = new Integer(-1);
|
||||
private static int longCacheSize=
|
||||
Integer.getInteger("org.eclipse.util.TypeUtil.LongCacheSize",64).intValue();
|
||||
Integer.getInteger("org.eclipse.jetty.util.TypeUtil.LongCacheSize",64).intValue();
|
||||
private static Long[] longCache = new Long[longCacheSize];
|
||||
private static Long minusOneL = new Long(-1);
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ import java.io.UnsupportedEncodingException;
|
|||
* communications ability, but it does assist with query string
|
||||
* formatting.
|
||||
* <P>UTF-8 encoding is used by default for % encoded characters. This
|
||||
* may be overridden with the org.eclipse.util.URI.charset system property.
|
||||
* may be overridden with the org.eclipse.jetty.util.URI.charset system property.
|
||||
* @see UrlEncoded
|
||||
*
|
||||
*/
|
||||
|
@ -38,7 +38,7 @@ public class URIUtil
|
|||
public static final String HTTPS_COLON="https:";
|
||||
|
||||
// Use UTF-8 as per http://www.w3.org/TR/html40/appendix/notes.html#non-ascii-chars
|
||||
public static final String __CHARSET=System.getProperty("org.eclipse.util.URI.charset",StringUtil.__UTF8);
|
||||
public static final String __CHARSET=System.getProperty("org.eclipse.jetty.util.URI.charset",StringUtil.__UTF8);
|
||||
|
||||
private URIUtil()
|
||||
{}
|
||||
|
|
|
@ -62,7 +62,7 @@ import org.eclipse.jetty.util.log.Log;
|
|||
* The class {@link JSON.Literal} may be used to hold pre-gnerated JSON object.
|
||||
* <p>
|
||||
* The interface {@link Convertor} may be implemented to provide static convertors for objects that may be registered
|
||||
* with {@link #registerConvertor(Class, org.eclipse.util.ajax.JSON.Convertor)}. These convertors are looked up by class, interface and
|
||||
* with {@link #registerConvertor(Class, org.eclipse.jetty.util.ajax.JSON.Convertor)}. These convertors are looked up by class, interface and
|
||||
* super class by {@link #getConvertor(Class)}.
|
||||
* </p>
|
||||
*
|
||||
|
@ -1323,7 +1323,7 @@ public class JSON
|
|||
/** Static JSON Convertor.
|
||||
* <p>
|
||||
* may be implemented to provide static convertors for objects that may be registered
|
||||
* with {@link JSON#registerConvertor(Class, org.eclipse.util.ajax.JSON.Convertor).
|
||||
* with {@link JSON#registerConvertor(Class, org.eclipse.jetty.util.ajax.JSON.Convertor).
|
||||
* These convertors are looked up by class, interface and
|
||||
* super class by {@link JSON#getConvertor(Class)}. Convertors should be used when the
|
||||
* classes to be converted cannot implement {@link Convertible} or {@link Generator}.
|
||||
|
|
|
@ -35,7 +35,7 @@ import org.eclipse.jetty.util.log.Log;
|
|||
* Handle resources of implied or explicit file type.
|
||||
* This class can check for aliasing in the filesystem (eg case
|
||||
* insensitivity). By default this is turned on, or it can be controlled with the
|
||||
* "org.eclipse.util.FileResource.checkAliases" system parameter.
|
||||
* "org.eclipse.jetty.util.FileResource.checkAliases" system parameter.
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
@ -46,7 +46,7 @@ public class FileResource extends URLResource
|
|||
{
|
||||
__checkAliases=
|
||||
"true".equalsIgnoreCase
|
||||
(System.getProperty("org.eclipse.util.FileResource.checkAliases","true"));
|
||||
(System.getProperty("org.eclipse.jetty.util.FileResource.checkAliases","true"));
|
||||
|
||||
if (__checkAliases)
|
||||
Log.debug("Checking Resource aliases");
|
||||
|
|
|
@ -46,7 +46,7 @@ public class DateCacheTest extends junit.framework.TestCase
|
|||
/* ------------------------------------------------------------ */
|
||||
public void testDateCache() throws Exception
|
||||
{
|
||||
//@WAS: Test t = new Test("org.eclipse.util.DateCache");
|
||||
//@WAS: Test t = new Test("org.eclipse.jetty.util.DateCache");
|
||||
// 012345678901234567890123456789
|
||||
DateCache dc = new DateCache("EEE, dd MMM yyyy HH:mm:ss zzz ZZZ",
|
||||
Locale.US);
|
||||
|
|
Loading…
Reference in New Issue