blob: 28fa175ee91fd58a047b8d59470456b1f007f690 [file] [log] [blame]
/*
* Category.java
*
* Created on September 21, 2006, 9:00 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*
* To understand this class, see https://platform.netbeans.org/tutorials/nbm-nodesapi3.html
*/
package org.netbeans.shapesample.palette;
/**
*
* @author Geertjan Wielenga
*/
public class Category {
private String name;
/** Creates a new instance of Category */
public Category() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}