package org.simantics.db.testing.common; public class CommandSpec { public Class clazz; public double weight; private CommandSpec(Class clazz, double weight) { this.clazz = clazz; this.weight = weight; } public static CommandSpec make(Class clazz, double weight) { return new CommandSpec(clazz, weight); } }