Skip to content

Commit de000c0

Browse files
committed
added comments
1 parent b149ad1 commit de000c0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

jbbp/src/main/java/com/igormaznitsa/jbbp/mapper/BinFieldFilter.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@
1919
import java.lang.reflect.Field;
2020

2121
/**
22-
* Filter to check allowed marked fields during mapping.
22+
* Filter allows cheeking Bin annotation and fields during mapping or writing operations.
2323
*
2424
* @see com.igormaznitsa.jbbp.io.JBBPOut
25-
* @see JBBPMapper
26-
* @since 2.0.4
25+
* @see JBBPMapper#map
26+
* @see com.igormaznitsa.jbbp.io.JBBPOut#Bin
2727
* @since 2.0.4
2828
*/
2929
public interface BinFieldFilter {
3030
/**
3131
* Check annotation and field that they allowed.
3232
*
3333
* @param annotation bin annotation, must not be null
34-
* @param field marked field, can be null if checked class
35-
* @return true if allowed, false otherwise
34+
* @param field marked field, can be null
35+
* @return true if field allowed, false otherwise
3636
*/
3737
boolean isAllowed(Bin annotation, Field field);
3838
}

0 commit comments

Comments
 (0)