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

17 lines
382 B
Java

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);
}
}