提交 d6e8befb 编写于 作者: K kohsuke

doc improvement

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@15742 71c3de6d-444a-0410-be80-ed276b4c234a
上级 ae32c905
......@@ -25,10 +25,22 @@
package hudson.slaves;
import hudson.model.Node;
import hudson.model.EnvironmentSpecific;
/**
* Represents any concept that can be adapted for a node.
*
* Mainly for documentation purposes.
*
* @author huybrechts
* @since 1.286
* @see EnvironmentSpecific
* @param <T>
* Concrete type that represents the thing that can be adapted.
*/
public interface NodeSpecific<T extends NodeSpecific<?>> {
public interface NodeSpecific<T extends NodeSpecific<T>> {
/**
* Returns a specialized copy of T for functioning in the given node.
*/
T forNode(Node node);
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册