getResult() sounds like an accessor. computeResult() is more evocative (or

should I say, invocative).


git-svn-id: https://samskivert.googlecode.com/svn/trunk@2628 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2009-09-04 01:50:06 +00:00
parent b2ec1d4a8a
commit 669d77a097
+1 -1
View File
@@ -14,7 +14,7 @@ public abstract class ResultUnit<T> extends RepositoryUnit
/**
* Performs actions on the database and returns exciting data.
*/
public abstract T getResult ()
public abstract T computeResult ()
throws Exception;
/**