• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision268 (tree)
Time2016-05-03 15:51:45
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/apache/commons-chain2/src/main/java/org/apache/commons/chain2/Filter.java (revision 267)
+++ trunk/apache/commons-chain2/src/main/java/org/apache/commons/chain2/Filter.java (revision 268)
@@ -14,6 +14,7 @@
1414 * See the License for the specific language governing permissions and
1515 * limitations under the License.
1616 */
17+
1718 package org.apache.commons.chain2;
1819
1920 import java.util.Map;
@@ -64,6 +65,6 @@
6465 * method (and therefore need not be rethrown), return <code>FINISHED</code>;
6566 * otherwise return <code>CONTINUE</code>
6667 */
67- boolean postprocess(C context, Exception exception);
68+ boolean postprocess(C context, Exception exception);
6869
6970 }
--- trunk/apache/commons-chain2/src/main/java/org/apache/commons/chain2/CatalogFactory.java (revision 267)
+++ trunk/apache/commons-chain2/src/main/java/org/apache/commons/chain2/CatalogFactory.java (revision 268)
@@ -14,6 +14,7 @@
1414 * See the License for the specific language governing permissions and
1515 * limitations under the License.
1616 */
17+
1718 package org.apache.commons.chain2;
1819
1920 import java.util.Iterator;
@@ -41,7 +42,7 @@
4142 * use this as the delimiter between the "catalog" name and the "command"
4243 * name.</p>
4344 */
44- public static final String DELIMITER = ":";
45+ String DELIMITER = ":";
4546
4647 /**
4748 * <p>Gets the default instance of Catalog associated with the factory
@@ -49,7 +50,7 @@
4950 *
5051 * @return the default Catalog instance
5152 */
52- public abstract Catalog<K, V, C> getCatalog();
53+ Catalog<K, V, C> getCatalog();
5354
5455 /**
5556 * <p>Sets the default instance of Catalog associated with the factory.</p>
@@ -56,7 +57,7 @@
5657 *
5758 * @param catalog the default Catalog instance
5859 */
59- public abstract void setCatalog(Catalog<K, V, C> catalog);
60+ void setCatalog(Catalog<K, V, C> catalog);
6061
6162 /**
6263 * <p>Retrieves a Catalog instance by name (if any); otherwise
@@ -65,7 +66,7 @@
6566 * @param name the name of the Catalog to retrieve
6667 * @return the specified Catalog
6768 */
68- public abstract Catalog<K, V, C> getCatalog(String name);
69+ Catalog<K, V, C> getCatalog(String name);
6970
7071 /**
7172 * <p>Adds a named instance of Catalog to the factory (for subsequent
@@ -74,7 +75,7 @@
7475 * @param name the name of the Catalog to add
7576 * @param catalog the Catalog to add
7677 */
77- public abstract void addCatalog(String name, Catalog<K, V, C> catalog);
78+ void addCatalog(String name, Catalog<K, V, C> catalog);
7879
7980 /**
8081 * <p>Return an <code>Iterator</code> over the set of named
@@ -82,7 +83,7 @@
8283 * If there are no known catalogs, an empty Iterator is returned.</p>
8384 * @return An Iterator of the names of the Catalogs known by this factory.
8485 */
85- public abstract Iterator<String> getNames();
86+ Iterator<String> getNames();
8687
8788 /**
8889 * <p>Return a <code>Command</code> based on the given commandID.</p>
@@ -100,7 +101,7 @@
100101 * more than one DELIMITER will cause an
101102 * <code>IllegalArgumentException</code> to be thrown.</p>
102103 *
103- * @param <CMD> the expected {@link Command} type to be returned
104+ * @param <T> the expected {@link Command} type to be returned
104105 * @param commandID the identifier of the command to return
105106 * @return the command located with commandID, or <code>null</code>
106107 * if either the command name or the catalog name cannot be resolved
@@ -109,7 +110,6 @@
109110 *
110111 * @since Chain 1.1
111112 */
112- public abstract <CMD extends Command<K, V, C>> CMD getCommand(
113- String commandID);
113+ <T extends Command<K, V, C>> T getCommand(String commandID);
114114
115115 }
--- trunk/apache/commons-chain2/src/main/java/org/apache/commons/chain2/Catalog.java (revision 267)
+++ trunk/apache/commons-chain2/src/main/java/org/apache/commons/chain2/Catalog.java (revision 268)
@@ -14,6 +14,7 @@
1414 * See the License for the specific language governing permissions and
1515 * limitations under the License.
1616 */
17+
1718 package org.apache.commons.chain2;
1819
1920 import java.util.Iterator;
@@ -45,23 +46,23 @@
4546 * to the set of named commands known to this {@link Catalog},
4647 * replacing any previous command for that name.
4748 *
48- * @param <CMD> the {@link Command} type to be added in the {@link Catalog}
49+ * @param <T> the {@link Command} type to be added in the {@link Catalog}
4950 * @param name Name of the new command
5051 * @param command {@link Command} or {@link Chain} to be returned
5152 * for later lookups on this name
5253 */
53- <CMD extends Command<K, V, C>> void addCommand(String name, CMD command);
54+ <T extends Command<K, V, C>> void addCommand(String name, T command);
5455
5556 /**
5657 * <p>Return the {@link Command} or {@link Chain} associated with the
5758 * specified name, if any; otherwise, return <code>null</code>.</p>
5859 *
59- * @param <CMD> the expected {@link Command} type to be returned
60+ * @param <T> the expected {@link Command} type to be returned
6061 * @param name Name for which a {@link Command} or {@link Chain}
6162 * should be retrieved
6263 * @return The Command associated with the specified name.
6364 */
64- <CMD extends Command<K, V, C>> CMD getCommand(String name);
65+ <T extends Command<K, V, C>> T getCommand(String name);
6566
6667 /**
6768 * <p>Return an <code>Iterator</code> over the set of named commands