Skip to content
Snippets Groups Projects
Commit f7197834 authored by Simon Barner's avatar Simon Barner
Browse files

Fix some raw type warnings

parent bcadd2dd
No related branches found
No related tags found
1 merge request!1134003: ModelElementHandler: avoid duplicated warnings for missing icons
......@@ -11,7 +11,7 @@ ModelEditorBindingBase.java b9b1a1c5a48a6e677d1f57ad55a6126d9703c4b5 GREEN
ModelElementHandlerBase.java fbd38bcaec6615bcc95be7fdb847f85577c8cd47 YELLOW
MultiEObjectActionBase.java 9e237d8ea640c4194e4877af4a9cfce88698e543 GREEN
NamedCommentedModelElementHandlerBase.java 681b98b50b362f01abb7a36f108f4f11b9e51829 GREEN
PropertySectionBase.java 20fb1daea544123ea941743aafeb9ac59daf5356 GREEN
PropertySectionBase.java a768b0b8f833999d31bdca1cf727f6bc48acc837 YELLOW
TutorialStepUIAtomicBase.java cea2a158158b476de2108d2309afcf47f217b6d9 GREEN
TutorialStepUIAtomicWithWhitelistBase.java a9788ae514f62d27169c737ef59fb583234b5d43 GREEN
TutorialStepUICompositeBase.java 8225210eacb5b88de47d78280c5819f572f00ffa GREEN
......
......@@ -374,7 +374,7 @@ public abstract class PropertySectionBase extends AbstractPropertySection {
* digits to be used in the String representation.
*/
private void bindBigDecimalValue(Control text, IObservableValue<?> observedValue,
IValidator numberValidator, NumberFormat nf) {
IValidator<?> numberValidator, NumberFormat nf) {
nf.setGroupingUsed(false);
performComplexTextBinding(dbc, text, observedValue, fromBigDecimal(nf), toBigDecimal(nf),
......@@ -386,7 +386,7 @@ public abstract class PropertySectionBase extends AbstractPropertySection {
* digits to be used in the String representation.
*/
protected void bindBigDecimalValue(Control text, IObservableValue<?> observedValue,
IValidator numberValidator) {
IValidator<?> numberValidator) {
NumberFormat nf = getNumberInstance();
bindBigDecimalValue(text, observedValue, numberValidator, nf);
......@@ -397,7 +397,7 @@ public abstract class PropertySectionBase extends AbstractPropertySection {
* used in the String representation.
*/
protected void bindBigDecimalValue(Control text, IObservableValue<?> observedValue,
IValidator numberValidator, int maxFractionDigits) {
IValidator<?> numberValidator, int maxFractionDigits) {
NumberFormat nf = getNumberInstance();
nf.setMaximumFractionDigits(maxFractionDigits);
......@@ -426,7 +426,7 @@ public abstract class PropertySectionBase extends AbstractPropertySection {
* to be used in the String representation.
*/
protected void bindDoubleValue(Control text, IObservableValue<?> observedValue,
IValidator numberValidator) {
IValidator<?> numberValidator) {
performComplexTextBinding(dbc, text, observedValue, fromDouble(false), toDouble(false),
FLOAT_VALIDATOR, numberValidator);
}
......@@ -436,7 +436,7 @@ public abstract class PropertySectionBase extends AbstractPropertySection {
* used in the String representation.
*/
protected void bindDoubleValue(Control text, IObservableValue<?> observedValue,
IValidator numberValidator, int maxFractionDigits) {
IValidator<?> numberValidator, int maxFractionDigits) {
NumberFormat nf = getNumberInstance();
nf.setMaximumFractionDigits(maxFractionDigits);
......@@ -456,7 +456,7 @@ public abstract class PropertySectionBase extends AbstractPropertySection {
/** Binds a integer value. */
protected void bindIntegerValue(Control text, IObservableValue<?> observedValue,
IValidator numberValidator) {
IValidator<?> numberValidator) {
performComplexTextBinding(dbc, text, observedValue, fromInteger(false), toInteger(false),
INT_VALIDATOR, numberValidator);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment