Rename AWT to Swing
[fanfix.git] / src / jexer / session / SwingSessionInfo.java
similarity index 91%
rename from src/jexer/session/AWTSessionInfo.java
rename to src/jexer/session/SwingSessionInfo.java
index 1c9bf97aaf22da574d7d9bb9f34fa7815d4e07e5..e263c7361200f1084e947ab08915ab2eea780b70 100644 (file)
@@ -34,14 +34,14 @@ import java.awt.Frame;
 import java.awt.Insets;
 
 /**
- * AWTSessionInfo provides a session implementation with a callback into an
- * AWT Frame to support queryWindowSize().  The username is blank, language
+ * SwingSessionInfo provides a session implementation with a callback into an
+ * Swing Frame to support queryWindowSize().  The username is blank, language
  * is "en_US", with a 132x40 text window.
  */
-public final class AWTSessionInfo implements SessionInfo {
+public final class SwingSessionInfo implements SessionInfo {
 
     /**
-     * The AWT Frame.
+     * The Swing Frame.
      */
     private Frame frame;
 
@@ -132,11 +132,11 @@ public final class AWTSessionInfo implements SessionInfo {
     /**
      * Public constructor.
      *
-     * @param frame the AWT Frame
+     * @param frame the Swing Frame
      * @param textWidth the width of a cell in pixels
      * @param textHeight the height of a cell in pixels
      */
-    public AWTSessionInfo(final Frame frame, final int textWidth,
+    public SwingSessionInfo(final Frame frame, final int textWidth,
         final int textHeight) {
 
         this.frame      = frame;