Source Code Cross Referenced for CommandHistory.java in  » Chat » LlamaChat » client » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Chat » LlamaChat » client 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*- CommandHistory.java -------------------------------------------+
02:         |                                                                 |
03:         |  Copyright (C) 2002-2003 Joseph Monti, LlamaChat                |
04:         |                     countjoe@users.sourceforge.net              |
05:         |                     http://www.42llamas.com/LlamaChat/          |
06:         |                                                                 |
07:         | This program is free software; you can redistribute it and/or   |
08:         | modify it under the terms of the GNU General Public License     |
09:         | as published by the Free Software Foundation; either version 2  |
10:         | of the License, or (at your option) any later version           |
11:         |                                                                 |
12:         | This program is distributed in the hope that it will be useful, |
13:         | but WITHOUT ANY WARRANTY; without even the implied warranty of  |
14:         | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   |
15:         | GNU General Public License for more details.                    |
16:         |                                                                 |
17:         | A copy of the GNU General Public License may be found in the    |
18:         | installation directory named "GNUGPL.txt"                       |
19:         |                                                                 |
20:         +-----------------------------------------------------------------+
21:         */
22:
23:        package client;
24:
25:        /* -------------------- JavaDoc Information ----------------------*/
26:        /**
27:         * Class to manage the history of messages/commands from the user
28:         * Is in the form of a fixed length stack that drops items from
29:         * the end of the stack when the maximum length is reached exends
30:         * the linked list class; all items on the list are Strings
31:         * @author Joseph Monti <a href="mailto:countjoe@users.sourceforge.net">countjoe@users.sourceforge.net</a>
32:         * @version 0.8
33:         */
34:        public final class CommandHistory extends java.util.LinkedList {
35:            /**
36:             * the maximum size of the list
37:             */
38:            private static int MAX_SIZE;
39:
40:            /** 
41:             * the current retrieved position
42:             */
43:            private static int current;
44:
45:            CommandHistory(int s) {
46:                super ();
47:                MAX_SIZE = s;
48:                current = -1;
49:            }
50:
51:            /**
52:             * Adds a string to the list and checks to see
53:             * if the new item breached the maximum size of the list
54:             * also sets the current to be -1 to reset the current position
55:             * @param s	the string to be added
56:             */
57:            public void add(String s) {
58:                addFirst(s);
59:                if (size() > MAX_SIZE) {
60:                    removeLast();
61:                }
62:                current = -1;
63:            }
64:
65:            /**
66:             * retrives the next oldest item from the list
67:             * while stopping at the top and incrementing
68:             * the current item
69:             * @return	the appropriate item from the list, or null if at top
70:             */
71:            public String getUp() {
72:                if (size() == 0)
73:                    return null;
74:                if (current + 1 >= size())
75:                    return null;
76:                current++;
77:                return (String) get(current);
78:            }
79:
80:            /**
81:             * retrieves the next newest item from the list
82:             * while stopping that the bottom and decrementing
83:             * the current item
84:             * @return	the appropriate item from the list, or null if at bottom
85:             */
86:            public String getDown() {
87:                if (size() == 0)
88:                    return null;
89:                if (current > 0) {
90:                    current--;
91:                    return (String) get(current);
92:                } else if (current == 0) {
93:                    current--;
94:                    return "";
95:                }
96:                return null;
97:            }
98:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.