Source Code Cross Referenced for CancelWriter.java in  » Database-Client » Henplus » henplus » view » util » 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 » Database Client » Henplus » henplus.view.util 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * This is free software, licensed under the Gnu Public License (GPL)
003:         * get a copy from <http://www.gnu.org/licenses/gpl.html>
004:         * $Id: CancelWriter.java,v 1.2 2005/04/27 14:37:15 hzeller Exp $ 
005:         * author: Henner Zeller <H.Zeller@acm.org>
006:         */
007:        package henplus.view.util;
008:
009:        import henplus.OutputDevice;
010:
011:        /**
012:         * Little utility that allows to write a string to the
013:         * screen and cancel it afterwards (with Backspaces). Will only
014:         * write, if the Output is indeed a terminal.
015:         */
016:        public final class CancelWriter {
017:            private final static String BACKSPACE = "\b";
018:
019:            private final OutputDevice _out;
020:            private final boolean _doWrite;
021:
022:            /** the string that has been written. 'null', if
023:             * nothing has been written or it is cancelled 
024:             */
025:            private String _writtenString;
026:
027:            public CancelWriter(OutputDevice out) {
028:                _out = out;
029:                _doWrite = _out.isTerminal();
030:                _writtenString = null;
031:            }
032:
033:            /**
034:             * returns, wether this cancel writer will print
035:             * anything. Depends on the fact, that the output
036:             * is a terminal.
037:             */
038:            public boolean isPrinting() {
039:                return _doWrite;
040:            }
041:
042:            /**
043:             * returns, if this cancel writer has any cancellable
044:             * output.
045:             */
046:            public boolean hasCancellableOutput() {
047:                return _writtenString != null;
048:            }
049:
050:            /**
051:             * Print message to screen. Cancel out any previous
052:             * message. If the output is no terminal, do not
053:             * write anything.
054:             * @param str string to print. Must not be null.
055:             */
056:            public void print(String str) {
057:                if (!_doWrite)
058:                    return;
059:                int charCount = cancel(false);
060:                _out.print(str);
061:                _writtenString = str;
062:
063:                /* wipe the difference between the previous
064:                 * message and this one */
065:                final int lenDiff = charCount - str.length();
066:                if (lenDiff > 0) {
067:                    writeChars(lenDiff, " ");
068:                    writeChars(lenDiff, BACKSPACE);
069:                }
070:                _out.flush();
071:            }
072:
073:            /**
074:             * cancel out the written string and wipe it
075:             * with spaces.
076:             */
077:            public int cancel() {
078:                return cancel(true);
079:            }
080:
081:            /**
082:             * cancel the output.
083:             * @param wipeOut 'true', if the written characters 
084:             *        should be wiped out with spaces. Otherwise,
085:             *        the cursor is placed at the beginning of
086:             *        the string without wiping.
087:             * @return number of characters cancelled.
088:             */
089:            public int cancel(boolean wipeOut) {
090:                if (_writtenString == null)
091:                    return 0;
092:                final int backspaceCount = _writtenString.length();
093:                writeChars(backspaceCount, BACKSPACE);
094:                if (wipeOut) {
095:                    writeChars(backspaceCount, " ");
096:                    writeChars(backspaceCount, BACKSPACE);
097:                    _out.flush();
098:                }
099:                _writtenString = null;
100:                return backspaceCount;
101:            }
102:
103:            private void writeChars(int count, String str) {
104:                for (int i = 0; i < count; ++i) {
105:                    _out.print(str);
106:                }
107:            }
108:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.