BooleanField.java

10 lines | 169 B Blame History Raw Download
package com.shopizer.search.services.field;

public class BooleanField extends Field {
	
	public Boolean getValue() {
		return (Boolean)super.getValue();
	}

}