Java Doc for TextMeasurer.java in  » 6.0-JDK-Core » AWT » java » awt » font » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
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
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » AWT » java.awt.font 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.font.TextMeasurer

TextMeasurer
final public class TextMeasurer implements Cloneable(Code)
The TextMeasurer class provides the primitive operations needed for line break: measuring up to a given advance, determining the advance of a range of characters, and generating a TextLayout for a range of characters. It also provides methods for incremental editing of paragraphs.

A TextMeasurer object is constructed with an java.text.AttributedCharacterIterator AttributedCharacterIterator representing a single paragraph of text. The value returned by the AttributedCharacterIterator.getBeginIndex getBeginIndex method of AttributedCharacterIterator defines the absolute index of the first character. The value returned by the AttributedCharacterIterator.getEndIndex getEndIndex method of AttributedCharacterIterator defines the index past the last character. These values define the range of indexes to use in calls to the TextMeasurer. For example, calls to get the advance of a range of text or the line break of a range of text must use indexes between the beginning and end index values. Calls to TextMeasurer.insertChar(java.text.AttributedCharacterIterator,int) insertChar and TextMeasurer.deleteChar(java.text.AttributedCharacterIterator,int) deleteChar reset the TextMeasurer to use the beginning index and end index of the AttributedCharacterIterator passed in those calls.

Most clients will use the more convenient LineBreakMeasurer, which implements the standard line break policy (placing as many words as will fit on each line).
author:
   John Raley
version:
   1.31, 04/20/01
See Also:   LineBreakMeasurer
since:
   1.3



Field Summary
 intlayoutCharCount
    
 intlayoutCount
    

Constructor Summary
public  TextMeasurer(AttributedCharacterIterator text, FontRenderContext frc)
     Constructs a TextMeasurer from the source text.

Method Summary
protected  Objectclone()
    
public  voiddeleteChar(AttributedCharacterIterator newParagraph, int deletePos)
     Updates the TextMeasurer after a single character has been deleted from the paragraph currently represented by this TextMeasurer.
public  floatgetAdvanceBetween(int start, int limit)
     Returns the graphical width of a line beginning at start and including characters up to limit. start and limit are absolute indices, not relative to the start of the paragraph.
Parameters:
  start - the character index at which to start measuring
Parameters:
  limit - the character index at which to stop measuring the graphical width of a line beginning at startand including characters up to limit
throws:
  IndexOutOfBoundsException - if limit is lessthan start
throws:
  IllegalArgumentException - if start or limit is not between the beginning ofthe paragraph and the end of the paragraph.
 char[]getChars()
     NOTE: This method is only for LineBreakMeasurer's use.
public  TextLayoutgetLayout(int start, int limit)
     Returns a TextLayout on the given character range.
Parameters:
  start - the index of the first character
Parameters:
  limit - the index after the last character.
public  intgetLineBreakIndex(int start, float maxAdvance)
     Returns the index of the first character which will not fit on on a line beginning at start and possible measuring up to maxAdvance in graphical width.
public  voidinsertChar(AttributedCharacterIterator newParagraph, int insertPos)
     Updates the TextMeasurer after a single character has been inserted into the paragraph currently represented by this TextMeasurer.

Field Detail
layoutCharCount
int layoutCharCount(Code)



layoutCount
int layoutCount(Code)




Constructor Detail
TextMeasurer
public TextMeasurer(AttributedCharacterIterator text, FontRenderContext frc)(Code)
Constructs a TextMeasurer from the source text. The source text should be a single entire paragraph.
Parameters:
  text - the source paragraph. Cannot be null.
Parameters:
  frc - the information about a graphics device which is needed to measure the text correctly. Cannot be null.




Method Detail
clone
protected Object clone()(Code)



deleteChar
public void deleteChar(AttributedCharacterIterator newParagraph, int deletePos)(Code)
Updates the TextMeasurer after a single character has been deleted from the paragraph currently represented by this TextMeasurer. After this call, this TextMeasurer is equivalent to a new TextMeasurer created from the text; however, it will usually be more efficient to update an existing TextMeasurer than to create a new one from scratch.
Parameters:
  newParagraph - the text of the paragraph after performingthe deletion. Cannot be null.
Parameters:
  deletePos - the position in the text where the character was removed. Must not be less thanthe start of newParagraph, and must not be greater than theend of newParagraph.
throws:
  IndexOutOfBoundsException - if deletePos isless than the start of newParagraph or greaterthan the end of newParagraph
throws:
  NullPointerException - if newParagraph isnull



getAdvanceBetween
public float getAdvanceBetween(int start, int limit)(Code)
Returns the graphical width of a line beginning at start and including characters up to limit. start and limit are absolute indices, not relative to the start of the paragraph.
Parameters:
  start - the character index at which to start measuring
Parameters:
  limit - the character index at which to stop measuring the graphical width of a line beginning at startand including characters up to limit
throws:
  IndexOutOfBoundsException - if limit is lessthan start
throws:
  IllegalArgumentException - if start or limit is not between the beginning ofthe paragraph and the end of the paragraph.



getChars
char[] getChars()(Code)
NOTE: This method is only for LineBreakMeasurer's use. It is package- private because it returns internal data.



getLayout
public TextLayout getLayout(int start, int limit)(Code)
Returns a TextLayout on the given character range.
Parameters:
  start - the index of the first character
Parameters:
  limit - the index after the last character. Must be greaterthan start a TextLayout for the characters beginning atstart up to (but not including) limit
throws:
  IndexOutOfBoundsException - if limit is lessthan start
throws:
  IllegalArgumentException - if start or limit is not between the beginning ofthe paragraph and the end of the paragraph.



getLineBreakIndex
public int getLineBreakIndex(int start, float maxAdvance)(Code)
Returns the index of the first character which will not fit on on a line beginning at start and possible measuring up to maxAdvance in graphical width.
Parameters:
  start - the character index at which to start measuring.start is an absolute index, not relative to thestart of the paragraph
Parameters:
  maxAdvance - the graphical width in which the line must fit the index after the last character that will fiton a line beginning at start, which is not longerthan maxAdvance in graphical width
throws:
  IllegalArgumentException - if start isless than the beginning of the paragraph.



insertChar
public void insertChar(AttributedCharacterIterator newParagraph, int insertPos)(Code)
Updates the TextMeasurer after a single character has been inserted into the paragraph currently represented by this TextMeasurer. After this call, this TextMeasurer is equivalent to a new TextMeasurer created from the text; however, it will usually be more efficient to update an existing TextMeasurer than to create a new one from scratch.
Parameters:
  newParagraph - the text of the paragraph after performingthe insertion. Cannot be null.
Parameters:
  insertPos - the position in the text where the character was inserted. Must not be less than the start of newParagraph, and must be less than the end ofnewParagraph.
throws:
  IndexOutOfBoundsException - if insertPos is lessthan the start of newParagraph or greater thanor equal to the end of newParagraph
throws:
  NullPointerException - if newParagraph is null



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.