
Replaced gel with grel in other places in the code base while maintaining backward compatibility. Changed layout in expression preview dialog to accommodate long GREL name. git-svn-id: http://google-refine.googlecode.com/svn/trunk@1442 7d457c2a-affb-35e4-300a-418c747d4874
14 lines
271 B
Java
14 lines
271 B
Java
package com.google.refine.grel.controls;
|
|
|
|
public class IsNull extends IsTest {
|
|
@Override
|
|
protected String getDescription() {
|
|
return "Returns whether o is null";
|
|
}
|
|
|
|
@Override
|
|
protected boolean test(Object o) {
|
|
return o == null;
|
|
}
|
|
}
|