Back to project page android-sdk.
The source code is released under:
Copyright (c) 2013 Adcash OU. All rights reserved under Creative Commons Attribution 3.0 Unported http://creativecommons.org/licenses/by/3.0/ Redistribution and use in source and binary forms, with or...
If you think the Android project android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.adcash.mobileads.factories; //from w ww . j a v a 2 s .co m import com.adcash.mobileads.util.vast.VastManager; public class VastManagerFactory { protected static VastManagerFactory instance = new VastManagerFactory(); public static VastManager create() { return instance.internalCreate(); } public VastManager internalCreate() { return new VastManager(); } @Deprecated // for testing public static void setInstance(VastManagerFactory factory) { instance = factory; } }