You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/kotlin/org/domaframework/doma/intellij/common/validation/result/ValidationMethodBiFunctionParamResult.kt
Copy file name to clipboardExpand all lines: src/main/resources/messages/DomaToolsBundle.properties
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,4 +32,7 @@ inspection.invalid.dao.params.require.type=When you annotate the method with @{0
32
32
inspection.invalid.dao.params.require.iterable.entity=The argument must be an Iterable subclass that has an Entity class as a parameter
33
33
inspection.invalid.dao.procedure.params.require.annotation=The parameters of the method annotated with @Function or @Procedure must be annotated with either of @In, @InOut, @Out or @ResultSet
34
34
inspection.invalid.dao.procedure.params.in.type={0} is not supported as the type of the parameter annotated with @In
35
-
inspection.invalid.dao.procedure.params.support.generic.param="{0}" is illegal as the type argument of "{1}"
35
+
inspection.invalid.dao.procedure.params.support.generic.param="{0}" is illegal as the type argument of "{1}"
36
+
inspection.invalid.dao.sqlProcessor.params.biFunction.param.first=The first type argument of BiFunction must be "{0}"
37
+
inspection.invalid.dao.sqlProcessor.params.biFunction.param.second=The second type argument of BiFunction must be "{0}"
38
+
inspection.invalid.dao.sqlProcessor.params.biFunction.param.invalid=The type argument at index {0} is not supported
Copy file name to clipboardExpand all lines: src/test/testData/src/main/java/doma/example/dao/inspection/paramtype/SqlProcessorParamTestDao.java
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,10 @@ public interface SqlProcessorParamTestDao {
15
15
16
16
@SqlProcessor
17
17
@Sql("")
18
-
<R> RexecuteBiFunctionNotConfig(BiFunction<String,PreparedSql, R> <errordescr="The first type argument of BiFunction must be org.seasar.doma.jdbc.Config">func</error>);
18
+
<R> RexecuteBiFunctionNotConfig(BiFunction<String,PreparedSql, R> <errordescr="The first type argument of BiFunction must be \"org.seasar.doma.jdbc.Config\"">func</error>);
19
19
20
20
@SqlProcessor
21
-
<R> RexecuteBiFunctionNotPreparedSql(BiFunction<Config,String, R> <errordescr="The second type argument of BiFunction must be org.seasar.doma.jdbc.PreparedSql">func</error>);
22
-
21
+
<R> RexecuteBiFunctionNotPreparedSql(BiFunction<Config,String, R> <errordescr="The second type argument of BiFunction must be \"org.seasar.doma.jdbc.PreparedSql\"">func</error>);
0 commit comments