mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
CE-1402 Make consistent naming 'behaviors', not 'fieldBehaviors'
This commit is contained in:
@ -57,7 +57,7 @@ public class QFrontendFieldMetaData
|
|||||||
private List<FieldAdornment> adornments;
|
private List<FieldAdornment> adornments;
|
||||||
private List<QHelpContent> helpContents;
|
private List<QHelpContent> helpContents;
|
||||||
|
|
||||||
private List<FieldBehaviorForFrontend> fieldBehaviors;
|
private List<FieldBehaviorForFrontend> behaviors;
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////
|
||||||
// do not add setters. take values from the source-object in the constructor!! //
|
// do not add setters. take values from the source-object in the constructor!! //
|
||||||
@ -86,11 +86,11 @@ public class QFrontendFieldMetaData
|
|||||||
{
|
{
|
||||||
if(behavior instanceof FieldBehaviorForFrontend fbff)
|
if(behavior instanceof FieldBehaviorForFrontend fbff)
|
||||||
{
|
{
|
||||||
if(fieldBehaviors == null)
|
if(behaviors == null)
|
||||||
{
|
{
|
||||||
fieldBehaviors = new ArrayList<>();
|
behaviors = new ArrayList<>();
|
||||||
}
|
}
|
||||||
fieldBehaviors.add(fbff);
|
behaviors.add(fbff);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -222,8 +222,8 @@ public class QFrontendFieldMetaData
|
|||||||
** Getter for fieldBehaviors
|
** Getter for fieldBehaviors
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public List<FieldBehaviorForFrontend> getFieldBehaviors()
|
public List<FieldBehaviorForFrontend> getBehaviors()
|
||||||
{
|
{
|
||||||
return fieldBehaviors;
|
return behaviors;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user