001 /*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005
006 package com.kitfox.svg.app.data;
007
008 import java.net.URLStreamHandler;
009 import java.net.URLStreamHandlerFactory;
010
011 /**
012 *
013 * @author kitfox
014 */
015 public class HandlerFactory implements URLStreamHandlerFactory
016 {
017 static Handler handler = new Handler();
018
019 public URLStreamHandler createURLStreamHandler(String protocol)
020 {
021 if ("data".equals(protocol))
022 {
023 return handler;
024 }
025 return null;
026 }
027 }