small parameterizing
This commit is contained in:
parent
e76ad68c72
commit
8a65680e40
|
|
@ -887,7 +887,7 @@ public class GridController extends CPanel
|
||||||
{
|
{
|
||||||
GridField changedField = m_mTab.getField(col);
|
GridField changedField = m_mTab.getField(col);
|
||||||
String columnName = changedField.getColumnName();
|
String columnName = changedField.getColumnName();
|
||||||
ArrayList dependants = m_mTab.getDependantFields(columnName);
|
ArrayList<GridField> dependants = m_mTab.getDependantFields(columnName);
|
||||||
log.config("(" + m_mTab.toString() + ") "
|
log.config("(" + m_mTab.toString() + ") "
|
||||||
+ columnName + " - Dependents=" + dependants.size());
|
+ columnName + " - Dependents=" + dependants.size());
|
||||||
// No Dependents and no Callout - Set just Background
|
// No Dependents and no Callout - Set just Background
|
||||||
|
|
@ -917,7 +917,7 @@ public class GridController extends CPanel
|
||||||
log.config(m_mTab.toString() + " - Rows=" + m_mTab.getRowCount());
|
log.config(m_mTab.toString() + " - Rows=" + m_mTab.getRowCount());
|
||||||
// All Components in vPanel (Single Row)
|
// All Components in vPanel (Single Row)
|
||||||
|
|
||||||
Set hiddens = new HashSet<String>();
|
Set<String> hiddens = new HashSet<String>();
|
||||||
Component[] comps = vPanel.getComponentsRecursive();
|
Component[] comps = vPanel.getComponentsRecursive();
|
||||||
for (int i = 0; i < comps.length; i++)
|
for (int i = 0; i < comps.length; i++)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue