11/*
22 * The MIT License
3- *
3+ *
44 * Copyright (c) 2013 IKEDA Yasuyuki
5- *
5+ *
66 * Permission is hereby granted, free of charge, to any person obtaining a copy
77 * of this software and associated documentation files (the "Software"), to deal
88 * in the Software without restriction, including without limitation the rights
99 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1010 * copies of the Software, and to permit persons to whom the Software is
1111 * furnished to do so, subject to the following conditions:
12- *
12+ *
1313 * The above copyright notice and this permission notice shall be included in
1414 * all copies or substantial portions of the Software.
15- *
15+ *
1616 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1717 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1818 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3232
3333/**
3434 * Extension point to provide views to show parameters in rebuild page.
35- *
35+ *
3636 * If you want your custom {@link ParameterValue} to work with rebuild plugin,
3737 * do as followings:
3838 * <ol>
4747 * Don't forget to return <code>null</code> for parameter values
4848 * other than your custom {@link ParameterValue}.
4949 * There are two recommended ways to set values to {@link RebuildParameterPage}:
50- * <table summary="Recommended ways to set values">
50+ * <table>
51+ <caption>Recommended way to set values</caption>
5152 * <tr>
5253 * <th> </th>
5354 * <th>Recommended 1</th>
@@ -72,17 +73,17 @@ public abstract class RebuildParameterProvider implements ExtensionPoint {
7273 // If defined as an interface, developers might carelessly apply this
7374 // to mandatory class in their plugin and their plugins get not to work
7475 // without rebuild plugin.
75-
76+
7677 /**
7778 * Provide a view for specified {@link ParameterValue}.
78- *
79+ *
7980 * Return null if cannot handle specified {@link ParameterValue}.
80- *
81+ *
8182 * @param value a value to be shown in a rebuild page.
8283 * @return page for the parameter value. null for parameter values cannot be handled.
8384 */
8485 public abstract RebuildParameterPage getRebuildPage (ParameterValue value );
85-
86+
8687 /**
8788 * @return all {@link RebuildParameterProvider} registered to Jenkins.
8889 */
0 commit comments