public abstract class

Query

extends Object
java.lang.Object
   ↳ com.neomades.content.Query
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Base Query.

A Query is a request that could be handled by ContentManager through an EventBus.

See Also

Summary

Public Constructors
Query()
Public Methods
void setContentManager(String name)
Sets the associated ContentManager name if there is many ContentManager instances.
Protected Methods
final ContentManager getContentManager()
Returns the ContentManager that contains this Query.
abstract void onExecute()
Called when Query has been posted to ContentManager to be executed.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Query ()

Public Methods

public void setContentManager (String name)

Sets the associated ContentManager name if there is many ContentManager instances.

Protected Methods

protected final ContentManager getContentManager ()

Returns the ContentManager that contains this Query.

Returns
  • the ContentManager

protected abstract void onExecute ()

Called when Query has been posted to ContentManager to be executed.