svn commit: r1126083 - in /ofbiz/trunk/applications/content/src/org/ofbiz/content: compdoc/CompDocServices.java content/ContentWorker.java data/DataServices.java survey/SurveyWrapper.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1126083 - in /ofbiz/trunk/applications/content/src/org/ofbiz/content: compdoc/CompDocServices.java content/ContentWorker.java data/DataServices.java survey/SurveyWrapper.java

mrisaliti
Author: mrisaliti
Date: Sun May 22 16:56:39 2011
New Revision: 1126083

URL: http://svn.apache.org/viewvc?rev=1126083&view=rev
Log:
Removed some javadoc warning into content component

Modified:
    ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocServices.java
    ofbiz/trunk/applications/content/src/org/ofbiz/content/content/ContentWorker.java
    ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java
    ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyWrapper.java

Modified: ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocServices.java?rev=1126083&r1=1126082&r2=1126083&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocServices.java (original)
+++ ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocServices.java Sun May 22 16:56:39 2011
@@ -67,13 +67,12 @@ public class CompDocServices {
     
     /**
      *
-     * @param request
-     * @param response
-     * @return
-     *
      * Creates the topmost Content entity of a Composite Document tree.
      * Also creates an "empty" Composite Document Instance Content entity.
      * Creates ContentRevision/Item records for each, as well.
+     * @param dctx the dispatch context
+     * @param context the context
+     * @return Creates the topmost Content entity of a Composite Document tree
      */
 
     public static Map<String, Object> persistRootCompDoc(DispatchContext dctx, Map<String, ? extends Object> context) {

Modified: ofbiz/trunk/applications/content/src/org/ofbiz/content/content/ContentWorker.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/src/org/ofbiz/content/content/ContentWorker.java?rev=1126083&r1=1126082&r2=1126083&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/src/org/ofbiz/content/content/ContentWorker.java (original)
+++ ofbiz/trunk/applications/content/src/org/ofbiz/content/content/ContentWorker.java Sun May 22 16:56:39 2011
@@ -1337,8 +1337,8 @@ public class ContentWorker implements or
     /**
      * Checks to see if there is a purpose string (delimited by pipes) and
      * turns it into a list and concants to any existing purpose list.
-     * @param context
-     * @return
+     * @param context the context
+     * @return the list of content purpose
      */
     public static List<String> prepContentPurposeList(Map<String, Object> context) {
         List<String> contentPurposeList = UtilGenerics.checkList(context.get("contentPurposeList"));

Modified: ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java?rev=1126083&r1=1126082&r2=1126083&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java (original)
+++ ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java Sun May 22 16:56:39 2011
@@ -344,9 +344,9 @@ public class DataServices {
     /**
      * Because sometimes a DataResource will exist, but no ElectronicText has been created,
      * this method will create an ElectronicText if it does not exist.
-     * @param dctx
-     * @param context
-     * @return
+     * @param dctx the dispatch context
+     * @param context the context
+     * @return update the ElectronicText
      */
     public static Map<String, Object> updateElectronicTextMethod(DispatchContext dctx, Map<String, ? extends Object> context) {
         Map<String, Object> result = FastMap.newInstance();

Modified: ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyWrapper.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyWrapper.java?rev=1126083&r1=1126082&r2=1126083&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyWrapper.java (original)
+++ ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyWrapper.java Sun May 22 16:56:39 2011
@@ -164,7 +164,8 @@ public class SurveyWrapper {
 
     /**
      * Renders the Survey
-     * @return Writer object from the parsed Freemarker Template
+     * @param templateUrl the template URL
+     * @param writer the write
      * @throws SurveyWrapperException
      */
     public void render(URL templateUrl, Writer writer) throws SurveyWrapperException {