提交 afa209af 编写于 作者: D Devin Nusbaum

Add new ToolDescriptor constructor to allow subclasses to be in a separate...

Add new ToolDescriptor constructor to allow subclasses to be in a separate file from their describable
上级 d6ff7647
......@@ -54,6 +54,14 @@ public abstract class ToolDescriptor<T extends ToolInstallation> extends Descrip
private T[] installations;
protected ToolDescriptor() {
super();
}
protected ToolDescriptor(Class<T> clazz) {
super(clazz);
}
/**
* Configured instances of {@link ToolInstallation}s.
*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册