All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.terapico.menu.Menu Maven / Gradle / Ivy

The newest version!
package com.terapico.menu;

import java.util.List;

public class Menu {
  private String code;
  private String name;
  private String action;
  private String icon;
  private List children;

  public String getCode() {
    return code;
  }

  public void setCode(String pCode) {
    code = pCode;
  }

  public String getName() {
    return name;
  }

  public void setName(String pName) {
    name = pName;
  }

  public String getAction() {
    return action;
  }

  public void setAction(String pAction) {
    action = pAction;
  }

  public String getIcon() {
    return icon;
  }

  public void setIcon(String pIcon) {
    icon = pIcon;
  }

  public List getChildren() {
    return children;
  }

  public void setChildren(List pChildren) {
    children = pChildren;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy