-
Notifications
You must be signed in to change notification settings - Fork 614
OFBIZ-13313 #923
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: trunk
Are you sure you want to change the base?
OFBIZ-13313 #923
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| package org.apache.ofbiz.entity.util; | ||
|
|
||
| import org.apache.ofbiz.entity.Delegator; | ||
|
|
||
| /** | ||
| * Interface used for the <code>EntityQuery</code> to set the delegator to yse for the query. | ||
|
||
| * Allows easyer and shorter query instructions, like calling an <code>EntityQuery</code> with a dispatcher. | ||
| */ | ||
| public interface Queryable { | ||
|
|
||
| /** | ||
| * Gets the GenericEntityDelegator associated with this dispatcher | ||
|
||
| * @return GenericEntityDelegator associated with this dispatcher | ||
| */ | ||
| Delegator getDelegator(); | ||
|
|
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This declaration is not required since it is an inherited method.