Sha256: 1968ae868a04e1a63388e7a601736f2ea8c9b3c3ab6667bd8303e1e478f24f8d
Contents?: true
Size: 676 Bytes
Versions: 14
Compression:
Stored size: 676 Bytes
Contents
package com.rho.smartcradle; import com.rhomobile.rhodes.api.RhoApiFactory; public class SmartCradleFactory implements ISmartCradleFactory{ private SmartCradleSingleton singleton=null; @Override public ISmartCradleSingleton getApiSingleton() { if(singleton==null) { singleton=new SmartCradleSingleton(); } return singleton; } @Override public ISmartCradle getApiObject(String id) { return null; } /* @Override protected SmartcradleSingleton createSingleton() { return new SmartcradleSingleton(this); } @Override protected Smartcradle createApiObject(String id) { return new Smartcradle(id); } */ }
Version data entries
14 entries across 14 versions & 1 rubygems