wedroid/wrapper/src/main/java/it/unisannio/ding/ids/wedroid/wrapper/entity/LabelPrototype.java

17 lines
382 B
Java
Raw Normal View History

2019-11-24 17:48:40 +00:00
package it.unisannio.ding.ids.wedroid.wrapper.entity;
/**
* Describes the properties of the new label.
*/
public class LabelPrototype {
private Label label;
/**
* @param name The name of the new label
* @param color The color of the new label
*/
public LabelPrototype(String name, Color color) {
label = new Label(null, name, color);
}
}