diff src/org/tn5250j/encoding/builtin/ICodepageConverter.java @ 112:77ac18bc1b2f

cleanup java formatting
author Carl Byington <carl@five-ten-sg.com>
date Wed, 18 Jun 2014 13:03:01 -0700
parents b29b39f386a4
children
line wrap: on
line diff
--- a/src/org/tn5250j/encoding/builtin/ICodepageConverter.java	Wed Jun 18 13:00:19 2014 -0700
+++ b/src/org/tn5250j/encoding/builtin/ICodepageConverter.java	Wed Jun 18 13:03:01 2014 -0700
@@ -5,30 +5,30 @@
 /**
  * Interface for classes which do the translation from
  * EBCDIC bytes to Unicode characters and vice versa.
- * 
+ *
  */
 public interface ICodepageConverter extends ICodePage {
 
-	/**
-	 * Returns an name/ID for this converter.
-	 * Example '273' or 'CP1252'. This name should be unique,
-	 * cause it's used in user settungs and so on.
-	 * 
-	 * @return
-	 */
-	public abstract String getName();
-	
-	/**
-	 * Returns a short description for this converter.
-	 * For Example '273 - German, EBCDIC'
-	 * 
-	 * @return
-	 */
-	public abstract String getDescription();
-		
-	/**
-	 * Does special initialization stuff for this converter.
-	 */
-	public abstract ICodepageConverter init();
-	
+    /**
+     * Returns an name/ID for this converter.
+     * Example '273' or 'CP1252'. This name should be unique,
+     * cause it's used in user settungs and so on.
+     *
+     * @return
+     */
+    public abstract String getName();
+
+    /**
+     * Returns a short description for this converter.
+     * For Example '273 - German, EBCDIC'
+     *
+     * @return
+     */
+    public abstract String getDescription();
+
+    /**
+     * Does special initialization stuff for this converter.
+     */
+    public abstract ICodepageConverter init();
+
 }
\ No newline at end of file