feat(jdk8): move files to new folder to avoid resources compiled.
This commit is contained in:
43
jdkSrc/jdk8/sun/net/www/content/audio/aiff.java
Normal file
43
jdkSrc/jdk8/sun/net/www/content/audio/aiff.java
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Basic .aiff audio handler.
|
||||
* @author Jeff Nisewanger
|
||||
*/
|
||||
package sun.net.www.content.audio;
|
||||
|
||||
import java.net.*;
|
||||
import java.io.IOException;
|
||||
import sun.applet.AppletAudioClip;
|
||||
|
||||
/**
|
||||
* Returns an AppletAudioClip object.
|
||||
*/
|
||||
public class aiff extends ContentHandler {
|
||||
public Object getContent(URLConnection uc) throws IOException {
|
||||
return new AppletAudioClip(uc);
|
||||
}
|
||||
}
|
||||
45
jdkSrc/jdk8/sun/net/www/content/audio/basic.java
Normal file
45
jdkSrc/jdk8/sun/net/www/content/audio/basic.java
Normal file
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Basic .au and .snd audio handler.
|
||||
* @author Jeff Nisewanger
|
||||
*/
|
||||
package sun.net.www.content.audio;
|
||||
|
||||
import java.net.*;
|
||||
import java.io.IOException;
|
||||
import sun.applet.AppletAudioClip;
|
||||
|
||||
/**
|
||||
* Returns an AppletAudioClip object.
|
||||
* This provides backwards compatibility with the behavior
|
||||
* of ClassLoader.getResource().getContent() on JDK1.1.
|
||||
*/
|
||||
public class basic extends ContentHandler {
|
||||
public Object getContent(URLConnection uc) throws IOException {
|
||||
return new AppletAudioClip(uc);
|
||||
}
|
||||
}
|
||||
43
jdkSrc/jdk8/sun/net/www/content/audio/wav.java
Normal file
43
jdkSrc/jdk8/sun/net/www/content/audio/wav.java
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Basic .wav audio handler.
|
||||
* @author Jeff Nisewanger
|
||||
*/
|
||||
package sun.net.www.content.audio;
|
||||
|
||||
import java.net.*;
|
||||
import java.io.IOException;
|
||||
import sun.applet.AppletAudioClip;
|
||||
|
||||
/**
|
||||
* Returns an AppletAudioClip object.
|
||||
*/
|
||||
public class wav extends ContentHandler {
|
||||
public Object getContent(URLConnection uc) throws IOException {
|
||||
return new AppletAudioClip(uc);
|
||||
}
|
||||
}
|
||||
43
jdkSrc/jdk8/sun/net/www/content/audio/x_aiff.java
Normal file
43
jdkSrc/jdk8/sun/net/www/content/audio/x_aiff.java
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Basic .aiff audio handler.
|
||||
* @author Jeff Nisewanger
|
||||
*/
|
||||
package sun.net.www.content.audio;
|
||||
|
||||
import java.net.*;
|
||||
import java.io.IOException;
|
||||
import sun.applet.AppletAudioClip;
|
||||
|
||||
/**
|
||||
* Returns an AppletAudioClip object.
|
||||
*/
|
||||
public class x_aiff extends ContentHandler {
|
||||
public Object getContent(URLConnection uc) throws IOException {
|
||||
return new AppletAudioClip(uc);
|
||||
}
|
||||
}
|
||||
43
jdkSrc/jdk8/sun/net/www/content/audio/x_wav.java
Normal file
43
jdkSrc/jdk8/sun/net/www/content/audio/x_wav.java
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Basic .wav audio handler.
|
||||
* @author Jeff Nisewanger
|
||||
*/
|
||||
package sun.net.www.content.audio;
|
||||
|
||||
import java.net.*;
|
||||
import java.io.IOException;
|
||||
import sun.applet.AppletAudioClip;
|
||||
|
||||
/**
|
||||
* Returns an AppletAudioClip object.
|
||||
*/
|
||||
public class x_wav extends ContentHandler {
|
||||
public Object getContent(URLConnection uc) throws IOException {
|
||||
return new AppletAudioClip(uc);
|
||||
}
|
||||
}
|
||||
54
jdkSrc/jdk8/sun/net/www/content/image/gif.java
Normal file
54
jdkSrc/jdk8/sun/net/www/content/image/gif.java
Normal file
@@ -0,0 +1,54 @@
|
||||
/*
|
||||
* Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package sun.net.www.content.image;
|
||||
|
||||
import java.net.*;
|
||||
import sun.awt.image.*;
|
||||
import java.io.IOException;
|
||||
import java.awt.Image;
|
||||
import java.awt.Toolkit;
|
||||
|
||||
|
||||
public class gif extends ContentHandler {
|
||||
public Object getContent(URLConnection urlc) throws java.io.IOException {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Object getContent(URLConnection urlc, Class[] classes) throws IOException {
|
||||
Class<?>[] cls = classes;
|
||||
for (int i = 0; i < cls.length; i++) {
|
||||
if (cls[i].isAssignableFrom(URLImageSource.class)) {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
if (cls[i].isAssignableFrom(Image.class)) {
|
||||
Toolkit tk = Toolkit.getDefaultToolkit();
|
||||
return tk.createImage(new URLImageSource(urlc));
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
53
jdkSrc/jdk8/sun/net/www/content/image/jpeg.java
Normal file
53
jdkSrc/jdk8/sun/net/www/content/image/jpeg.java
Normal file
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package sun.net.www.content.image;
|
||||
|
||||
import java.net.*;
|
||||
import sun.awt.image.*;
|
||||
import java.io.IOException;
|
||||
import java.awt.Image;
|
||||
import java.awt.Toolkit;
|
||||
|
||||
public class jpeg extends ContentHandler {
|
||||
public Object getContent(URLConnection urlc) throws java.io.IOException {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Object getContent(URLConnection urlc, Class[] classes) throws IOException {
|
||||
Class<?>[] cls = classes;
|
||||
for (int i = 0; i < cls.length; i++) {
|
||||
if (cls[i].isAssignableFrom(URLImageSource.class)) {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
if (cls[i].isAssignableFrom(Image.class)) {
|
||||
Toolkit tk = Toolkit.getDefaultToolkit();
|
||||
return tk.createImage(new URLImageSource(urlc));
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
53
jdkSrc/jdk8/sun/net/www/content/image/png.java
Normal file
53
jdkSrc/jdk8/sun/net/www/content/image/png.java
Normal file
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package sun.net.www.content.image;
|
||||
|
||||
import java.net.*;
|
||||
import java.io.IOException;
|
||||
import sun.awt.image.*;
|
||||
import java.awt.Image;
|
||||
import java.awt.Toolkit;
|
||||
|
||||
public class png extends ContentHandler {
|
||||
public Object getContent(URLConnection urlc) throws java.io.IOException {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Object getContent(URLConnection urlc, Class[] classes) throws IOException {
|
||||
Class<?>[] cls = classes;
|
||||
for (int i = 0; i < cls.length; i++) {
|
||||
if (cls[i].isAssignableFrom(URLImageSource.class)) {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
if (cls[i].isAssignableFrom(Image.class)) {
|
||||
Toolkit tk = Toolkit.getDefaultToolkit();
|
||||
return tk.createImage(new URLImageSource(urlc));
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
52
jdkSrc/jdk8/sun/net/www/content/image/x_xbitmap.java
Normal file
52
jdkSrc/jdk8/sun/net/www/content/image/x_xbitmap.java
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package sun.net.www.content.image;
|
||||
|
||||
import java.net.*;
|
||||
import sun.awt.image.*;
|
||||
import java.awt.Image;
|
||||
import java.awt.Toolkit;
|
||||
|
||||
public class x_xbitmap extends ContentHandler {
|
||||
public Object getContent(URLConnection urlc) throws java.io.IOException {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Object getContent(URLConnection urlc, Class[] classes) throws java.io.IOException {
|
||||
Class<?>[] cls = classes;
|
||||
for (int i = 0; i < cls.length; i++) {
|
||||
if (cls[i].isAssignableFrom(URLImageSource.class)) {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
if (cls[i].isAssignableFrom(Image.class)) {
|
||||
Toolkit tk = Toolkit.getDefaultToolkit();
|
||||
return tk.createImage(new URLImageSource(urlc));
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
52
jdkSrc/jdk8/sun/net/www/content/image/x_xpixmap.java
Normal file
52
jdkSrc/jdk8/sun/net/www/content/image/x_xpixmap.java
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package sun.net.www.content.image;
|
||||
|
||||
import java.net.*;
|
||||
import sun.awt.image.*;
|
||||
import java.awt.Image;
|
||||
import java.awt.Toolkit;
|
||||
|
||||
public class x_xpixmap extends ContentHandler {
|
||||
public Object getContent(URLConnection urlc) throws java.io.IOException {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Object getContent(URLConnection urlc, Class[] classes) throws java.io.IOException {
|
||||
Class<?>[] cls = classes;
|
||||
for (int i = 0; i < cls.length; i++) {
|
||||
if (cls[i].isAssignableFrom(URLImageSource.class)) {
|
||||
return new URLImageSource(urlc);
|
||||
}
|
||||
if (cls[i].isAssignableFrom(Image.class)) {
|
||||
Toolkit tk = Toolkit.getDefaultToolkit();
|
||||
return tk.createImage(new URLImageSource(urlc));
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
33
jdkSrc/jdk8/sun/net/www/content/text/Generic.java
Normal file
33
jdkSrc/jdk8/sun/net/www/content/text/Generic.java
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
* Copyright (c) 1994, 1995, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Generic text file handler
|
||||
*/
|
||||
package sun.net.www.content.text;
|
||||
|
||||
public class Generic extends plain {
|
||||
/* nothing to do since Generic is identical to plain! */
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Copyright (c) 1996, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package sun.net.www.content.text;
|
||||
import java.io.InputStream;
|
||||
import java.io.FilterInputStream;
|
||||
|
||||
/**
|
||||
* PlainTextInputStream class extends the FilterInputStream class.
|
||||
* Currently all calls to the PlainTextInputStream object will call
|
||||
* the corresponding methods in the FilterInputStream class. Hence
|
||||
* for now its use is more semantic.
|
||||
*
|
||||
* @author Sunita Mani
|
||||
*/
|
||||
public class PlainTextInputStream extends FilterInputStream {
|
||||
|
||||
/**
|
||||
* Calls FilterInputStream's constructor.
|
||||
* @param an InputStream
|
||||
*/
|
||||
PlainTextInputStream(InputStream is) {
|
||||
super(is);
|
||||
}
|
||||
}
|
||||
48
jdkSrc/jdk8/sun/net/www/content/text/plain.java
Normal file
48
jdkSrc/jdk8/sun/net/www/content/text/plain.java
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Copyright (c) 1994, 1996, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Plain text file handler.
|
||||
* @author Steven B. Byrne
|
||||
*/
|
||||
package sun.net.www.content.text;
|
||||
import java.net.*;
|
||||
import java.io.InputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
public class plain extends ContentHandler {
|
||||
/**
|
||||
* Returns a PlainTextInputStream object from which data
|
||||
* can be read.
|
||||
*/
|
||||
public Object getContent(URLConnection uc) {
|
||||
try {
|
||||
InputStream is = uc.getInputStream();
|
||||
return new PlainTextInputStream(uc.getInputStream());
|
||||
} catch (IOException e) {
|
||||
return "Error reading document:\n" + e.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user