Skip to content

Commit

Permalink
Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
devnied committed Apr 24, 2014
1 parent dde33dd commit c76c747
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ public class EMVParser {
*
* @param pProvider
* provider to launch command
* @param pContactLess
* boolean to indicate if the EMV card is contact less or not
*/
public EMVParser(final IProvider pProvider, final boolean pContactLess) {
provider = pProvider;
Expand All @@ -63,8 +65,6 @@ public EMVParser(final IProvider pProvider, final boolean pContactLess) {
/**
* Method used to read a EMV card
*
* @param pProvider
* provider to send command to the card
* @return data read from card or null if any provider match the card type
*/
public EMVCard readEmvCard() throws CommunicationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public String getScheme() {
*
* @param pAid
* card AID
* @return
* @return CardType or null
*/
public static EMVCardTypeEnum getCardTypeByAid(final String pAid) {
EMVCardTypeEnum ret = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
* alpha-2</a> codes. There are instance methods to get the country name ({@link #getName()} ), the <a
* href="http://en.wikipedia.org/wiki/ISO_3166-1_alpha-3" >ISO 3166-1 alpha-3</a> code ({@link #getAlpha3()}) and the <a
* href="http://en.wikipedia.org/wiki/ISO_3166-1_numeric">ISO 3166-1 numeric</a> code ({@link #getNumeric()}). In addition, there
* are static methods to get a CountryCode instance that corresponds to a given alpha-2/alpha-3/numeric code (
* {@link #getByCode(String)}, {@link #getByCode(int)}).
* are static methods to get a CountryCode instance that corresponds to a given alpha-2/alpha-3/numeric code.
* </p>
*
* <pre style="background-color: #EEEEEE; margin-left: 2em; margin-right: 2em; border: 1px solid black;">
Expand Down

0 comments on commit c76c747

Please sign in to comment.