jenkins插件不可见异类无线电

时间:2019-01-25 07:51:52

标签: java jenkins plugins jenkins-plugins jelly

我正在玩jenkins hello world plugin,并尝试使用异类无线电而不是文本来自定义它,但是我的用户界面不可见。我是果冻和詹金斯的新手。有人可以帮我吗我正在尝试创建以红色Hetero-radio

突出显示的内容

我的程序 Demo1.java


    private final HeteroRadioEntry projectVersion;
    public HeteroRadioEntry getProjectVersion() { return projectVersion; }

    @Override
    public void perform(@Nonnull Run<?, ?> run, @Nonnull FilePath filePath, @Nonnull Launcher launcher, @Nonnull TaskListener taskListener) throws InterruptedException, IOException { }

    public static abstract class Entry extends AbstractDescribableImpl<Entry> {}

    public static final class SimpleEntry extends Entry {
        private final String text;
        @DataBoundConstructor public SimpleEntry(String text) { this.text = text; }
        public String getText() { return text; }
        @Extension public static class DescriptorImpl extends Descriptor<Entry> {
            @Override public String getDisplayName() { return "Simple Entry"; }
        }
    }

    public static final class AutoEntry extends Entry {
        private final String text;
        @DataBoundConstructor public AutoEntry() { this.text = "Some fixed string"; }
        public String getText() { return text; }
        @Extension public static class DescriptorImpl extends Descriptor<Entry> {
            @Override public String getDisplayName() { return "Auto Entry"; }
        }
    }

    public static final class HeteroRadioEntry extends Entry {
        private final Entry entry;
        @DataBoundConstructor public HeteroRadioEntry(Entry entry) { this.entry = entry; }
        public Entry getEntry() { return entry; }
        @Extension public static class DescriptorImpl extends Descriptor<Entry> {
            @Override public String getDisplayName() { return "Hetero-Radio"; }
            public List<Descriptor> getEntryDescriptors() {
                Jenkins jenkins = Jenkins.getInstance();
                return ImmutableList.of(jenkins.getDescriptor(AutoEntry.class), jenkins.getDescriptor(SimpleEntry.class));
            }
        }
    }

    @DataBoundConstructor public Demo1(HeteroRadioEntry projectVersion) { this.projectVersion=projectVersion; }

    @Symbol("greet")
    @Extension
    public static final class DescriptorImpl extends BuildStepDescriptor<Builder> {
        @Override public boolean isApplicable(Class<? extends AbstractProject> aClass) { return true; }
        @Override public String getDisplayName() { return "Demo1"; }
    }

}

果冻程序Demo1 / config.jelly

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
    <f:entry field="projectVersion"></f:entry>
</j:jelly> 

Demo1 / HeteroListEntry / config.jelly

<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
    <f:entry title="Hetero-Choice">
        <f:hetero-radio field="entry" descriptors="${descriptor.entryDescriptors}" />
    </f:entry>
</j:jelly>

Demo1 / AutoEntry / config.jelly

<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
    <f:label field="text" />
</j:jelly>

Demo1 / SimpleEntry / config.jelly

<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
    <f:entry field="text">
        <f:textbox/>
    </f:entry>
</j:jelly>

1 个答案:

答案 0 :(得分:0)

通过参考此link,尽管不尽人意,我仍然付出了很多努力,但仍能达到预期的效果。它解释了异类无线电/异类列表的功能。我将嵌套的静态类移出了外部