Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ public class ViewConst {
public static final String DESIGN_TYPE = "designType";
public static final String DESIGN_TYPE_GEM = "gem";
public static final String DESIGN_TYPE_GEM_AGGREGATION = "gem_aggregation";
public static final String DESIGN_TYPE_GEM_SPREADSHEET = "gem_spreadsheet";

}
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/AutoNumberPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/AutoNumberPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/AutoNumberPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterAutoNumberPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class AutoNumberPropertyEditor extends PrimitivePropertyEditor implements LabelablePropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@
*/
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/BooleanPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/BooleanPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/BooleanPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterBooleanPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class BooleanPropertyEditor extends PrimitivePropertyEditor implements LabelablePropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/DatePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/DatePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/DatePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterDatePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class DatePropertyEditor extends DateTimePropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/DecimalPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/DecimalPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/DecimalPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterDecimalPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.

})
public class DecimalPropertyEditor extends NumberPropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/ExpressionPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/ExpressionPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/ExpressionPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterExpressionPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class ExpressionPropertyEditor extends PrimitivePropertyEditor implements LabelablePropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/NumberPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/NumberPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/NumberPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterNumberPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class FloatPropertyEditor extends NumberPropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/NumberPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/NumberPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/NumberPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterNumberPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class IntegerPropertyEditor extends NumberPropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/StringPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/StringPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/StringPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterStringPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
@IgnoreField({ "searchInRange", "hideSearchConditionFrom", "hideSearchConditionTo", "hideSearchConditionRangeSymbol", "searchExactMatchCondition" })
public class LongTextPropertyEditor extends StringPropertyEditor {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/ReferencePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/ReferencePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/ReferencePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterReferencePropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class ReferencePropertyEditor extends PropertyEditor implements HasNestProperty, LabelablePropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/SelectPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/SelectPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/SelectPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterSelectPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class SelectPropertyEditor extends PrimitivePropertyEditor implements LabelablePropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@
@XmlSeeAlso({ LongTextPropertyEditor.class })
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/StringPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/StringPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/StringPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterStringPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class StringPropertyEditor extends PrimitivePropertyEditor implements LabelablePropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/TimePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/TimePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/TimePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterTimePropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class TimePropertyEditor extends DateTimePropertyEditor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@
@XmlAccessorType(XmlAccessType.FIELD)
@Jsps({
@Jsp(path = "/jsp/gem/generic/editor/TimestampPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM),
@Jsp(path = "/jsp/gem/aggregation/unit/editor/TimestampPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION)
@Jsp(path = "/jsp/gem/aggregation/unit/editor/TimestampPropertyEditor.jsp", key = ViewConst.DESIGN_TYPE_GEM_AGGREGATION),
@Jsp(
path = "/jsp/gem/spreadsheet/element/section/editor/SpreadSheetFilterTimestampPropertyEditor.jsp",
key = ViewConst.DESIGN_TYPE_GEM_SPREADSHEET)
Comment thread
CHENHAOWEN0105 marked this conversation as resolved.
})
public class TimestampPropertyEditor extends DateTimePropertyEditor {

Expand Down
Loading