Here you can find the source of isBiggerThan0(int num)
public static boolean isBiggerThan0(int num)
//package com.java2s; //License from project: Apache License public class Main { public static boolean isBiggerThan0(int num) { if (0 >= num) return false; return true; }/* w w w .j a v a 2 s . co m*/ }