Back to project page notes.
The source code is released under:
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> Everyone is permitted to copy and distribute verbatim or...
If you think the Android project notes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.iliakplv.notes.notes; /*from w ww .j a v a 2s. co m*/ import com.iliakplv.notes.utils.StringUtils; import java.io.Serializable; public class Label { private Serializable id = NotesUtils.DEFAULT_ID; private String name; private int color; public Label(String name, int color) { setName(name); setColor(color); } public String getName() { return name; } public void setName(String name) { this.name = StringUtils.getNotNull(name); } public int getColor() { return color; } public void setColor(int color) { this.color = color; } public Serializable getId() { return id; } public void setId(Serializable id) { this.id = NotesUtils.getValidNoteId(id); } }