| | package org.ntlab.amaryllis.client.entities; |
---|
| | |
---|
| | |
---|
| | |
---|
| | public class Category { |
---|
| | private String cid; |
---|
| | private String name; |
---|
| | /** |
---|
| | * 文字列表現された色情報 |
---|
| | */ |
---|
| | private String color; |
---|
| | public Category(String cid,String name,String color){ |
---|
| | this.cid=cid; |
---|
| | this.name=name; |
---|
| | this.color=color; |
---|
| | } |
---|
| | |
---|
| | public String getcId() { |
---|
| | return cid; |
---|
| | } |
---|
| | |
---|
| | public String getName() { |
---|
| | return name; |
---|
| | } |
---|
| | public String getColor(){ |
---|
| | return color; |
---|
| | } |
---|
| | public void setCid(String cid) { |
---|
| | this.cid = cid; |
---|
| | } |
---|
| | |
---|
| | public void setName(String name) { |
---|
| | this.name = name; |
---|
| | } |
---|
| | |
---|
| | public void setColor(String color) { |
---|
| | this.color = color; |
---|
| | } |
---|
| | |
---|
| | |
---|
| | } |
---|
| | |
---|
| | |