Skip to content

Commit

Permalink
Revert "fix errors merge"
Browse files Browse the repository at this point in the history
This reverts commit ce27cbe.
  • Loading branch information
alecones committed Jun 16, 2016
1 parent 099a435 commit a9e8315
Show file tree
Hide file tree
Showing 4 changed files with 1,150 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
import it.eng.spagobi.utilities.assertion.Assert;
import it.eng.spagobi.utilities.exceptions.SpagoBIRuntimeException;
import it.eng.spagobi.utilities.objects.Couple;
<<<<<<<
=======

import java.util.ArrayList;
import java.util.Arrays;
Expand All @@ -36,6 +38,16 @@

import org.apache.log4j.Logger;

>>>>>>>

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;

import org.apache.log4j.Logger;

/**
* Defines method to manage lov of fixed list type
*/
Expand Down Expand Up @@ -268,6 +280,8 @@ public String getLovResult(IEngUserProfile profile, List<ObjParuse> dependencies
String value = lov.getValue();
String description = lov.getDescription();
lovResult += "<ROW" + " VALUE=\"" + value + "\"" + " DESCRIPTION=\"" + description + "\"" + "/>";
<<<<<<<
=======
}
lovResult += "</ROWS>";
lovResult = StringUtilities.substituteProfileAttributesInString(lovResult, profile);
Expand All @@ -280,6 +294,13 @@ public String getLovResult(IEngUserProfile profile, List<ObjParuse> dependencies
return lovResult;
}

>>>>>>>
}
lovResult += "</ROWS>";
lovResult = StringUtilities.substituteProfileAttributesInString(lovResult, profile);
return lovResult;
}

/**
* Method returns result of the defined LOV of type fixed list as data store.
* */
Expand Down Expand Up @@ -381,6 +402,8 @@ public List getProfileAttributeNames() throws Exception {
lovResult = lovResult.substring(endind);
}
return names;
<<<<<<<
=======
}

/**
Expand Down Expand Up @@ -411,6 +434,13 @@ public Set<String> getParameterNames() throws Exception {
return names;
}

/**
* Checks if the lov requires one or more profile attributes.
*
* @return true if the lov require one or more profile attributes, false otherwise
>>>>>>>
}
/**
* Checks if the lov requires one or more profile attributes.
*
Expand Down

0 comments on commit a9e8315

Please sign in to comment.