summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyFactory.java
blob: 51f407e581309cd7343fb79230b2b706597375a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Copyright (c) 2013 Ford Motor Company
//
package com.smartdevicelink.proxy;

import com.smartdevicelink.exception.SmartDeviceLinkException;

public class SmartDeviceLinkProxyFactory {
	
	public static SmartDeviceLinkProxy buildSmartDeviceLinkProxy(IProxyListener listener) {
		SmartDeviceLinkProxy ret = null;
		try {
			ret = new SmartDeviceLinkProxy(listener);
		} catch (SmartDeviceLinkException e) {
			e.printStackTrace();
		}
		return ret;
	}
}