IDEMPIERE-4124 WSearchEditor - missing public methods
This commit is contained in:
parent
23dee999a6
commit
3921f67a2d
|
@ -286,7 +286,7 @@ public class WSearchEditor extends WEditor implements ContextMenuListener, Value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void actionRefresh(Object value)
|
protected void actionRefresh(Object value)
|
||||||
{
|
{
|
||||||
// boolean mandatory = isMandatory();
|
// boolean mandatory = isMandatory();
|
||||||
// AEnv.actionRefresh(lookup, value, mandatory);
|
// AEnv.actionRefresh(lookup, value, mandatory);
|
||||||
|
@ -345,7 +345,7 @@ public class WSearchEditor extends WEditor implements ContextMenuListener, Value
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
|
||||||
private void actionText(String text)
|
protected void actionText(String text)
|
||||||
{
|
{
|
||||||
// Nothing entered
|
// Nothing entered
|
||||||
if (text == null || text.length() == 0 || text.equals("%"))
|
if (text == null || text.length() == 0 || text.equals("%"))
|
||||||
|
@ -411,7 +411,7 @@ public class WSearchEditor extends WEditor implements ContextMenuListener, Value
|
||||||
} // actionText
|
} // actionText
|
||||||
|
|
||||||
|
|
||||||
private void resetButtonState() {
|
protected void resetButtonState() {
|
||||||
getComponent().getButton().setEnabled(true);
|
getComponent().getButton().setEnabled(true);
|
||||||
if (ThemeManager.isUseFontIconForImage())
|
if (ThemeManager.isUseFontIconForImage())
|
||||||
getComponent().getButton().setIconSclass(imageUrl);
|
getComponent().getButton().setIconSclass(imageUrl);
|
||||||
|
@ -421,7 +421,7 @@ public class WSearchEditor extends WEditor implements ContextMenuListener, Value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void actionCombo (Object value)
|
protected void actionCombo (Object value)
|
||||||
{
|
{
|
||||||
if (log.isLoggable(Level.FINE))
|
if (log.isLoggable(Level.FINE))
|
||||||
log.fine("Value=" + value);
|
log.fine("Value=" + value);
|
||||||
|
@ -465,7 +465,7 @@ public class WSearchEditor extends WEditor implements ContextMenuListener, Value
|
||||||
* Action - Special Quick Entry Screen
|
* Action - Special Quick Entry Screen
|
||||||
* @param newRecord true if new record should be created
|
* @param newRecord true if new record should be created
|
||||||
*/
|
*/
|
||||||
private void actionQuickEntry (boolean newRecord)
|
protected void actionQuickEntry (boolean newRecord)
|
||||||
{
|
{
|
||||||
if(!getComponent().isEnabled())
|
if(!getComponent().isEnabled())
|
||||||
return;
|
return;
|
||||||
|
@ -538,7 +538,7 @@ public class WSearchEditor extends WEditor implements ContextMenuListener, Value
|
||||||
}
|
}
|
||||||
} // actionQuickEntry
|
} // actionQuickEntry
|
||||||
|
|
||||||
private void actionButton(String queryValue)
|
protected void actionButton(String queryValue)
|
||||||
{
|
{
|
||||||
if (lookup == null)
|
if (lookup == null)
|
||||||
return; // leave button disabled
|
return; // leave button disabled
|
||||||
|
|
Loading…
Reference in New Issue