提交 09afdea4 编写于 作者: K kohsuke

Started playing with label expressions.

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@33616 71c3de6d-444a-0410-be80-ed276b4c234a
上级 593f5ba8
package hudson.model;
/**
* Boolean expression of labels.
*
* @author Kohsuke Kawaguchi
* @since 1.COMPOSITELABEL
*/
public abstract class LabelExpression extends Label {
public static final class And extends LabelExpression {
private final Label lhs,rhs;
}
}
package hudson.model;
/**
* Atomic single token label, like "foo" or "bar".
*
* @author Kohsuke Kawaguchi
* @since 1.COMPOSITELABEL
*/
public class LabelToken extends Label {
public LabelToken(String name) {
super(name);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册