Java Doc for InputMethodHighlight.java in  » 6.0-JDK-Core » AWT » java » awt » im » 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.im 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.im.InputMethodHighlight

InputMethodHighlight
public class InputMethodHighlight (Code)
An InputMethodHighlight is used to describe the highlight attributes of text being composed. The description can be at two levels: at the abstract level it specifies the conversion state and whether the text is selected; at the concrete level it specifies style attributes used to render the highlight. An InputMethodHighlight must provide the description at the abstract level; it may or may not provide the description at the concrete level. If no concrete style is provided, a renderer should use java.awt.Toolkit.mapInputMethodHighlight to map to a concrete style.

The abstract description consists of three fields: selected, state, and variation. selected indicates whether the text range is the one that the input method is currently working on, for example, the segment for which conversion candidates are currently shown in a menu. state represents the conversion state. State values are defined by the input method framework and should be distinguished in all mappings from abstract to concrete styles. Currently defined state values are raw (unconverted) and converted. These state values are recommended for use before and after the main conversion step of text composition, say, before and after kana->kanji or pinyin->hanzi conversion. The variation field allows input methods to express additional information about the conversion results.

InputMethodHighlight instances are typically used as attribute values returned from AttributedCharacterIterator for the INPUT_METHOD_HIGHLIGHT attribute. They may be wrapped into java.text.Annotation Annotation instances to indicate separate text segments.
version:
   1.28, 05/05/07
See Also:   java.text.AttributedCharacterIterator
since:
   1.2



Field Summary
final public static  intCONVERTED_TEXT
     Constant for the converted text state.
final public static  intRAW_TEXT
     Constant for the raw text state.
final public static  InputMethodHighlightSELECTED_CONVERTED_TEXT_HIGHLIGHT
     Constant for the default highlight for selected converted text.
final public static  InputMethodHighlightSELECTED_RAW_TEXT_HIGHLIGHT
     Constant for the default highlight for selected raw text.
final public static  InputMethodHighlightUNSELECTED_CONVERTED_TEXT_HIGHLIGHT
     Constant for the default highlight for unselected converted text.
final public static  InputMethodHighlightUNSELECTED_RAW_TEXT_HIGHLIGHT
     Constant for the default highlight for unselected raw text.

Constructor Summary
public  InputMethodHighlight(boolean selected, int state)
     Constructs an input method highlight record.
public  InputMethodHighlight(boolean selected, int state, int variation)
     Constructs an input method highlight record.
public  InputMethodHighlight(boolean selected, int state, int variation, Map<TextAttribute, ?> style)
     Constructs an input method highlight record.

Method Summary
public  intgetState()
     Returns the conversion state of the text range.
public  Map<TextAttribute, ?>getStyle()
     Returns the rendering style attributes for the text range, or null.
public  intgetVariation()
     Returns the variation of the text range.
public  booleanisSelected()
     Returns whether the text range is selected.

Field Detail
CONVERTED_TEXT
final public static int CONVERTED_TEXT(Code)
Constant for the converted text state.



RAW_TEXT
final public static int RAW_TEXT(Code)
Constant for the raw text state.



SELECTED_CONVERTED_TEXT_HIGHLIGHT
final public static InputMethodHighlight SELECTED_CONVERTED_TEXT_HIGHLIGHT(Code)
Constant for the default highlight for selected converted text.



SELECTED_RAW_TEXT_HIGHLIGHT
final public static InputMethodHighlight SELECTED_RAW_TEXT_HIGHLIGHT(Code)
Constant for the default highlight for selected raw text.



UNSELECTED_CONVERTED_TEXT_HIGHLIGHT
final public static InputMethodHighlight UNSELECTED_CONVERTED_TEXT_HIGHLIGHT(Code)
Constant for the default highlight for unselected converted text.



UNSELECTED_RAW_TEXT_HIGHLIGHT
final public static InputMethodHighlight UNSELECTED_RAW_TEXT_HIGHLIGHT(Code)
Constant for the default highlight for unselected raw text.




Constructor Detail
InputMethodHighlight
public InputMethodHighlight(boolean selected, int state)(Code)
Constructs an input method highlight record. The variation is set to 0, the style to null.
Parameters:
  selected - Whether the text range is selected
Parameters:
  state - The conversion state for the text range - RAW_TEXT or CONVERTED_TEXT
See Also:   InputMethodHighlight.RAW_TEXT
See Also:   InputMethodHighlight.CONVERTED_TEXT
exception:
  IllegalArgumentException - if a state other than RAW_TEXT or CONVERTED_TEXT is given



InputMethodHighlight
public InputMethodHighlight(boolean selected, int state, int variation)(Code)
Constructs an input method highlight record. The style is set to null.
Parameters:
  selected - Whether the text range is selected
Parameters:
  state - The conversion state for the text range - RAW_TEXT or CONVERTED_TEXT
Parameters:
  variation - The style variation for the text range
See Also:   InputMethodHighlight.RAW_TEXT
See Also:   InputMethodHighlight.CONVERTED_TEXT
exception:
  IllegalArgumentException - if a state other than RAW_TEXT or CONVERTED_TEXT is given



InputMethodHighlight
public InputMethodHighlight(boolean selected, int state, int variation, Map<TextAttribute, ?> style)(Code)
Constructs an input method highlight record. The style attributes map provided must be unmodifiable.
Parameters:
  selected - whether the text range is selected
Parameters:
  state - the conversion state for the text range - RAW_TEXT or CONVERTED_TEXT
Parameters:
  variation - the variation for the text range
Parameters:
  style - the rendering style attributes for the text range, or null
See Also:   InputMethodHighlight.RAW_TEXT
See Also:   InputMethodHighlight.CONVERTED_TEXT
exception:
  IllegalArgumentException - if a state other than RAW_TEXT or CONVERTED_TEXT is given
since:
   1.3




Method Detail
getState
public int getState()(Code)
Returns the conversion state of the text range. The conversion state for the text range - RAW_TEXT or CONVERTED_TEXT.
See Also:   InputMethodHighlight.RAW_TEXT
See Also:   InputMethodHighlight.CONVERTED_TEXT



getStyle
public Map<TextAttribute, ?> getStyle()(Code)
Returns the rendering style attributes for the text range, or null.
since:
   1.3



getVariation
public int getVariation()(Code)
Returns the variation of the text range.



isSelected
public boolean isSelected()(Code)
Returns whether the text range is selected.



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.