Skip to content

Commit 9f19b20

Browse files
author
Open Lowcode SAS
committed
Close #247
1 parent d4c5c45 commit 9f19b20

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/org/openlowcode/server/data/properties/TypedDefinition.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,12 @@ public QueryCondition getUniversalQueryCondition(String alias) {
8484

8585
@Override
8686
public FieldSchemaForDisplay<E>[] setFieldSchemaToDisplay() {
87-
// TODO Auto-generated method stub
88-
return null;
87+
@SuppressWarnings("unchecked")
88+
FieldSchemaForDisplay<E>[] returnvalue= new FieldSchemaForDisplay[1];
89+
returnvalue[0] = new FieldSchemaForDisplay<E>("Type",
90+
"Type of the object ", type, true, false, true,
91+
typechoice, 720, 25, this.parentobject);
92+
return returnvalue;
8993
}
9094

9195
@Override

0 commit comments

Comments
 (0)