Package com.clowtown.mealplanner.policy

Examples of com.clowtown.mealplanner.policy.Category.build()


  public void build(String guts) {
    String del = MySerialize.delim;
    StringTokenizer t = new StringTokenizer(guts,del);
    Category c = new Category();
    c.build(t.nextToken());
    this.category = c;
   
    name = t.nextToken();
    MenuPolicy p = new MenuPolicy();
    p.build(t.nextToken());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.