1 23 24 package org.infoglue.cms.treeservice.ss; 25 29 public class ManagementNodeImpl extends com.frovi.ss.Tree.BaseNode 30 { 31 33 public ManagementNodeImpl(Integer id, String title, String action) 34 { 35 setId(id); 36 setTitle(title); 37 setAction(action); 38 setChildren(false); 39 } 40 public ManagementNodeImpl(int id, String title, String action) 41 { 42 this(new Integer (id), title, action); 43 } 44 45 private String action; 46 47 51 public String getAction() 52 { 53 return action; 54 } 55 56 60 public void setAction(String action) 61 { 62 this.action = action; 63 } 64 65 } 66 | Popular Tags |