Source Code Cross Referenced for MStyleBuffer.java in  » Internationalization-Localization » icu4j » com » ibm » richtext » styledtext » 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 » Internationalization Localization » icu4j » com.ibm.richtext.styledtext 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * (C) Copyright IBM Corp. 1998-2004.  All Rights Reserved.
003:         *
004:         * The program is provided "as is" without any warranty express or
005:         * implied, including the warranty of non-infringement and the implied
006:         * warranties of merchantibility and fitness for a particular purpose.
007:         * IBM will not be liable for any damages suffered by you as a result
008:         * of using the Program. In no event will IBM be liable for any
009:         * special, indirect or consequential damages or lost profits even if
010:         * IBM has been advised of the possibility of their occurrence. IBM
011:         * will not be liable for any third party claims against you.
012:         */
013:        package com.ibm.richtext.styledtext;
014:
015:        import com.ibm.richtext.textlayout.attributes.AttributeMap;
016:
017:        /*
018:         8/1/96
019:         Style -> ResolvedStyle
020:         8/7/96 jf
021:         added countStyles and getStyles protocol
022:         8/13/96
023:         ResolvedStyle->Style
024:         8/22/96 jf
025:         Removed the setIterator methods.
026:         */
027:        /*
028:         * MStyleBuffer is the abstract interface for a class which maintains
029:         * style runs in an <tt>MText</tt>.  A "style run" consists of a
030:         * style and the interval on which the style applies.
031:         * <p>
032:         * MStyleBuffer includes methods to call when text is inserted into
033:         * or deleted from the <tt>MText</tt>.  These methods update the
034:         * style runs in accordance with the commonly accepted behavior for
035:         * style runs.
036:         * <p>
037:         * Additionally, MStyleBuffer provides methods for replacing the style runs on a
038:         * text range with another set of style runs.  MStyleBuffer does not do style "combining" (for
039:         * example, adding the bold attribute to text which is italicized);  clients are
040:         * responsible for computing the combined styles, and passing these styles into
041:         * MStyleBuffer.
042:         * <p>
043:         * MStyleBuffer supplies a method for replacing the style runs on a text range with the runs
044:         * represented in an <tt>MStyleRunIterator</tt>.  This is useful for implementing paste
045:         * operations, in which the style runs on a range of text are replaced by style runs
046:         * from an external source.
047:         * <p>
048:         *
049:         * @author John Raley
050:         *
051:         * @see AttributeMap
052:         * @see MText
053:         */
054:        abstract class MStyleBuffer {
055:
056:            static final String COPYRIGHT = "(C) Copyright IBM Corp. 1998-1999 - All Rights Reserved";
057:
058:            /**
059:             * Respond to an insertion in the text.  The length of the last style run which
060:             * begins before <tt>start</tt> is increased by <tt>limit-start</tt>.
061:             * @param start the offset where the insertion began
062:             * @param limit the offset where the insertion ended
063:             */
064:            abstract void insertText(int start, int limit);
065:
066:            /**
067:             * Respond to a deletion in the text.  The last style run before
068:             * <tt>start</tt> is truncated to end at <tt>start</tt>.  The
069:             * style run containing (<tt>start</tt>+<tt>length</tt>) is set to begin
070:             * at (<tt>start</tt>+<tt>length</tt>).  Runs in between are deleted.
071:             * If the deletion occurs entirely within one style run, the length of the style
072:             * run is reduced by <tt>length</tt>.
073:             * @param start the offset where the deletion began
074:             * @param length the offset where the deletion ended
075:             */
076:            abstract void deleteText(int start, int limit);
077:
078:            /*
079:             * Replace style runs between offsets <tt>start</tt> and <tt>limit</tt> with styles in
080:             * <tt>iter</tt>.  This method can be used to perform a "paste" operation.
081:             * @param start the offset where the replacement begins
082:             * @param limit the offset where the replacement ends
083:             * @param iter an <tt>MStyleRunIterator</tt> containing style runs which will replace old
084:             * style runs.
085:             */
086:            abstract void replace(int start, int limit, MConstText srcText,
087:                    int srcStart, int srcLimit);
088:
089:            abstract int styleStart(int pos);
090:
091:            abstract int styleLimit(int pos);
092:
093:            /**
094:             * Return style at location <tt>pos</tt>.
095:             * @param pos an offset into the text
096:             * @returns the style of the character at <tt>offset</tt>
097:             */
098:            abstract AttributeMap styleAt(int pos);
099:
100:            /**
101:             * Return true if styles were modified.
102:             */
103:            abstract boolean modifyStyles(int start, int limit,
104:                    StyleModifier modifier, int[] damagedRange);
105:
106:            /**
107:             * Minimize the amount of memory used by this object.
108:             */
109:            abstract void compress();
110:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.