update notnull default to false

master
yihua.huang 2013-08-08 13:10:05 +08:00
parent f76def231d
commit c78de7bcbb
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ public @interface ExtractBy {
Type type() default Type.XPath;
boolean notNull() default true;
boolean notNull() default false;
boolean multi() default false;

View File

@ -20,7 +20,7 @@ public @interface ExtractByRaw {
Type type() default Type.XPath;
boolean notNull() default true;
boolean notNull() default false;
boolean multi() default false;

View File

@ -16,7 +16,7 @@ public @interface ExtractByUrl{
String value() default "";
boolean notNull() default true;
boolean notNull() default false;
boolean multi() default false;