1 /* 2 3 This software is OSI Certified Open Source Software. 4 OSI Certified is a certification mark of the Open Source Initiative. 5 6 The license (Mozilla version 1.0) can be read at the MMBase site. 7 See http://www.MMBase.org/license 8 9 */ 10 package net.sf.mmapps.commons.beans; 11 12 import net.sf.mmapps.commons.beans.NodeBean; 13 14 /*** 15 * @author Wouter Heijke 16 * @version $Revision: 1.1 $ 17 */ 18 public class NodetypeBean extends NodeBean { 19 public String name; 20 21 public String getName() { 22 return name; 23 } 24 25 public void setName(String name) { 26 this.name = name; 27 } 28 }