Searched defs:agent (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/app/
H A DModuleManagerImpl.java44 public void registerModule(ModuleAgent agent) { argument
45 if (agent == null) {
48 final int moduleId = agent.getModuleId();
56 mRegisteredModuleAgents.put(moduleId, agent);
105 ModuleAgent agent = mRegisteredModuleAgents.get(moduleId);
106 if (agent == null) {
109 return agent;
H A DModuleManager.java35 * The module agent which is responsible for maintaining the static
68 * Registers a module. A module will be available only if its agent is
71 * @param agent The {@link com.android.camera.app.ModuleManager.ModuleAgent}
73 * @throws java.lang.NullPointerException if the {@code agent} is null.
78 void registerModule(ModuleAgent agent); argument
120 * @return The agent.

Completed in 64 milliseconds