Subversion Repositories SmartDukaan

Rev

Rev 9269 | Rev 9314 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9269 Rev 9281
Line 8... Line 8...
8
import java.util.ArrayList;
8
import java.util.ArrayList;
9
import java.util.List;
9
import java.util.List;
10
 
10
 
11
import org.apache.commons.lang.StringUtils;
11
import org.apache.commons.lang.StringUtils;
12
 
12
 
-
 
13
import com.google.gson.Gson;
-
 
14
 
13
public class PojoPopulator {
15
public class PojoPopulator {
-
 
16
	
-
 
17
	public static Gson gson = new Gson();
14
 
18
 
15
    public static List<MenuPojo> getCurrentMenu() {
19
    public static List<MenuPojo> getCurrentMenu() {
16
        List<MenuPojo> finalList = new ArrayList<MenuPojo>();
20
        List<MenuPojo> finalList = new ArrayList<MenuPojo>();
17
        List<MenuPojo> children = new ArrayList<MenuPojo>();
21
        List<MenuPojo> children = new ArrayList<MenuPojo>();
18
 
22