Java Doc for BlockView.java in  » 6.0-JDK-Core » swing » javax » swing » text » html » 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 » swing » javax.swing.text.html 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.swing.text.View
      javax.swing.text.CompositeView
         javax.swing.text.BoxView
            javax.swing.text.html.BlockView

All known Subclasses:   javax.swing.text.html.NoFramesView,  javax.swing.text.html.ListView,
BlockView
public class BlockView extends BoxView (Code)
A view implementation to display a block (as a box) with CSS specifications.
author:
   Timothy Prinzing
version:
   1.44 05/05/07



Constructor Summary
public  BlockView(Element elem, int axis)
     Creates a new view that represents an html box.

Method Summary
protected  SizeRequirementscalculateMajorAxisRequirements(int axis, SizeRequirements r)
     Calculate the requirements of the block along the major axis (i.e.
protected  SizeRequirementscalculateMinorAxisRequirements(int axis, SizeRequirements r)
     Calculate the requirements of the block along the minor axis (i.e.
public  voidchangedUpdate(DocumentEvent changes, Shape a, ViewFactory f)
    
public  floatgetAlignment(int axis)
     Gets the alignment.
public  AttributeSetgetAttributes()
     Fetches the attributes to use when rendering.
public  floatgetMaximumSpan(int axis)
     Determines the maximum span for this view along an axis.
public  floatgetMinimumSpan(int axis)
     Determines the minimum span for this view along an axis.
public  floatgetPreferredSpan(int axis)
     Determines the preferred span for this view along an axis.
public  intgetResizeWeight(int axis)
     Gets the resize weight.
protected  StyleSheetgetStyleSheet()
    
 booleanisPercentage(int axis, AttributeSet a)
    
protected  voidlayoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans)
     Performs layout for the minor axis of the box (i.e.
public  voidpaint(Graphics g, Shape allocation)
     Renders using the given rendering surface and area on that surface.
public  voidsetParent(View parent)
     Establishes the parent view for this view.
protected  voidsetPropertiesFromAttributes()
     Update any cached values that come from attributes.
static  booleanspanSetFromAttributes(int axis, SizeRequirements r, CSS.LengthValue cssWidth, CSS.LengthValue cssHeight)
     Adjust the given requirements to the CSS width or height if it is specified along the applicable axis.


Constructor Detail
BlockView
public BlockView(Element elem, int axis)(Code)
Creates a new view that represents an html box. This can be used for a number of elements.
Parameters:
  elem - the element to create a view for
Parameters:
  axis - either View.X_AXIS or View.Y_AXIS




Method Detail
calculateMajorAxisRequirements
protected SizeRequirements calculateMajorAxisRequirements(int axis, SizeRequirements r)(Code)
Calculate the requirements of the block along the major axis (i.e. the axis along with it tiles). This is implemented to provide the superclass behavior and then adjust it if the CSS width or height attribute is specified and applicable to the axis.



calculateMinorAxisRequirements
protected SizeRequirements calculateMinorAxisRequirements(int axis, SizeRequirements r)(Code)
Calculate the requirements of the block along the minor axis (i.e. the axis orthoginal to the axis along with it tiles). This is implemented to provide the superclass behavior and then adjust it if the CSS width or height attribute is specified and applicable to the axis.



changedUpdate
public void changedUpdate(DocumentEvent changes, Shape a, ViewFactory f)(Code)



getAlignment
public float getAlignment(int axis)(Code)
Gets the alignment.
Parameters:
  axis - may be either X_AXIS or Y_AXIS the alignment



getAttributes
public AttributeSet getAttributes()(Code)
Fetches the attributes to use when rendering. This is implemented to multiplex the attributes specified in the model with a StyleSheet.



getMaximumSpan
public float getMaximumSpan(int axis)(Code)
Determines the maximum span for this view along an axis.
Parameters:
  axis - may be either View.X_AXISor View.Y_AXIS the span the view would like to be rendered into >= 0;typically the view is told to render into the spanthat is returned, although there is no guarantee; the parent may choose to resize or break the view
exception:
  IllegalArgumentException - for an invalid axis type



getMinimumSpan
public float getMinimumSpan(int axis)(Code)
Determines the minimum span for this view along an axis.
Parameters:
  axis - may be either View.X_AXISor View.Y_AXIS the span the view would like to be rendered into >= 0;typically the view is told to render into the spanthat is returned, although there is no guarantee; the parent may choose to resize or break the view
exception:
  IllegalArgumentException - for an invalid axis type



getPreferredSpan
public float getPreferredSpan(int axis)(Code)
Determines the preferred span for this view along an axis.
Parameters:
  axis - may be either View.X_AXISor View.Y_AXIS the span the view would like to be rendered into >= 0;typically the view is told to render into the spanthat is returned, although there is no guarantee; the parent may choose to resize or break the view
exception:
  IllegalArgumentException - for an invalid axis type



getResizeWeight
public int getResizeWeight(int axis)(Code)
Gets the resize weight.
Parameters:
  axis - may be either X_AXIS or Y_AXIS the weight
exception:
  IllegalArgumentException - for an invalid axis



getStyleSheet
protected StyleSheet getStyleSheet()(Code)



isPercentage
boolean isPercentage(int axis, AttributeSet a)(Code)



layoutMinorAxis
protected void layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans)(Code)
Performs layout for the minor axis of the box (i.e. the axis orthoginal to the axis that it represents). The results of the layout (the offset and span for each children) are placed in the given arrays which represent the allocations to the children along the minor axis.
Parameters:
  targetSpan - the total span given to the view, whichwhould be used to layout the childre.
Parameters:
  axis - the axis being layed out
Parameters:
  offsets - the offsets from the origin of the view foreach of the child views; this is a return value and isfilled in by the implementation of this method
Parameters:
  spans - the span of each child view; this is a returnvalue and is filled in by the implementation of this method



paint
public void paint(Graphics g, Shape allocation)(Code)
Renders using the given rendering surface and area on that surface. This is implemented to delegate to the css box painter to paint the border and background prior to the interior.
Parameters:
  g - the rendering surface to use
Parameters:
  allocation - the allocated region to render into
See Also:   View.paint



setParent
public void setParent(View parent)(Code)
Establishes the parent view for this view. This is guaranteed to be called before any other methods if the parent view is functioning properly.

This is implemented to forward to the superclass as well as call the BlockView.setPropertiesFromAttributes() method to set the paragraph properties from the css attributes. The call is made at this time to ensure the ability to resolve upward through the parents view attributes.
Parameters:
  parent - the new parent, or null if the view isbeing removed from a parent it was previously addedto




setPropertiesFromAttributes
protected void setPropertiesFromAttributes()(Code)
Update any cached values that come from attributes.



spanSetFromAttributes
static boolean spanSetFromAttributes(int axis, SizeRequirements r, CSS.LengthValue cssWidth, CSS.LengthValue cssHeight)(Code)
Adjust the given requirements to the CSS width or height if it is specified along the applicable axis. Return true if the size is exactly specified, false if the span is not specified in an attribute or the size specified is a percentage.



Methods inherited from javax.swing.text.BoxView
protected void baselineLayout(int targetSpan, int axis, int[] offsets, int[] spans)(Code)(Java Doc)
protected SizeRequirements baselineRequirements(int axis, SizeRequirements r)(Code)(Java Doc)
protected SizeRequirements calculateMajorAxisRequirements(int axis, SizeRequirements r)(Code)(Java Doc)
protected SizeRequirements calculateMinorAxisRequirements(int axis, SizeRequirements r)(Code)(Java Doc)
protected void childAllocation(int index, Rectangle alloc)(Code)(Java Doc)
protected boolean flipEastAndWestAtEnds(int position, Position.Bias bias)(Code)(Java Doc)
protected void forwardUpdate(DocumentEvent.ElementChange ec, DocumentEvent e, Shape a, ViewFactory f)(Code)(Java Doc)
public float getAlignment(int axis)(Code)(Java Doc)
public int getAxis()(Code)(Java Doc)
public Shape getChildAllocation(int index, Shape a)(Code)(Java Doc)
public int getHeight()(Code)(Java Doc)
public float getMaximumSpan(int axis)(Code)(Java Doc)
public float getMinimumSpan(int axis)(Code)(Java Doc)
protected int getOffset(int axis, int childIndex)(Code)(Java Doc)
public float getPreferredSpan(int axis)(Code)(Java Doc)
public int getResizeWeight(int axis)(Code)(Java Doc)
protected int getSpan(int axis, int childIndex)(Code)(Java Doc)
protected View getViewAtPoint(int x, int y, Rectangle alloc)(Code)(Java Doc)
public int getWidth()(Code)(Java Doc)
protected boolean isAfter(int x, int y, Rectangle innerAlloc)(Code)(Java Doc)
protected boolean isAllocationValid()(Code)(Java Doc)
protected boolean isBefore(int x, int y, Rectangle innerAlloc)(Code)(Java Doc)
protected boolean isLayoutValid(int axis)(Code)(Java Doc)
protected void layout(int width, int height)(Code)(Java Doc)
public void layoutChanged(int axis)(Code)(Java Doc)
protected void layoutMajorAxis(int targetSpan, int axis, int[] offsets, int[] spans)(Code)(Java Doc)
protected void layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans)(Code)(Java Doc)
public Shape modelToView(int pos, Shape a, Position.Bias b) throws BadLocationException(Code)(Java Doc)
public void paint(Graphics g, Shape allocation)(Code)(Java Doc)
protected void paintChild(Graphics g, Rectangle alloc, int index)(Code)(Java Doc)
public void preferenceChanged(View child, boolean width, boolean height)(Code)(Java Doc)
public void replace(int index, int length, View[] elems)(Code)(Java Doc)
public void setAxis(int axis)(Code)(Java Doc)
public void setSize(float width, float height)(Code)(Java Doc)
public int viewToModel(float x, float y, Shape a, Position.Bias[] bias)(Code)(Java Doc)

Methods inherited from javax.swing.text.CompositeView
abstract protected void childAllocation(int index, Rectangle a)(Code)(Java Doc)
protected boolean flipEastAndWestAtEnds(int position, Position.Bias bias)(Code)(Java Doc)
protected short getBottomInset()(Code)(Java Doc)
public Shape getChildAllocation(int index, Shape a)(Code)(Java Doc)
protected Rectangle getInsideAllocation(Shape a)(Code)(Java Doc)
protected short getLeftInset()(Code)(Java Doc)
protected int getNextEastWestVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) throws BadLocationException(Code)(Java Doc)
protected int getNextNorthSouthVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) throws BadLocationException(Code)(Java Doc)
public int getNextVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) throws BadLocationException(Code)(Java Doc)
protected short getRightInset()(Code)(Java Doc)
protected short getTopInset()(Code)(Java Doc)
public View getView(int n)(Code)(Java Doc)
abstract protected View getViewAtPoint(int x, int y, Rectangle alloc)(Code)(Java Doc)
protected View getViewAtPosition(int pos, Rectangle a)(Code)(Java Doc)
public int getViewCount()(Code)(Java Doc)
public int getViewIndex(int pos, Position.Bias b)(Code)(Java Doc)
protected int getViewIndexAtPosition(int pos)(Code)(Java Doc)
abstract protected boolean isAfter(int x, int y, Rectangle alloc)(Code)(Java Doc)
abstract protected boolean isBefore(int x, int y, Rectangle alloc)(Code)(Java Doc)
protected void loadChildren(ViewFactory f)(Code)(Java Doc)
public Shape modelToView(int pos, Shape a, Position.Bias b) throws BadLocationException(Code)(Java Doc)
public Shape modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) throws BadLocationException(Code)(Java Doc)
public void replace(int offset, int length, View[] views)(Code)(Java Doc)
protected void setInsets(short top, short left, short bottom, short right)(Code)(Java Doc)
protected void setParagraphInsets(AttributeSet attr)(Code)(Java Doc)
public void setParent(View parent)(Code)(Java Doc)
public int viewToModel(float x, float y, Shape a, Position.Bias[] bias)(Code)(Java Doc)

Fields inherited from javax.swing.text.View
final public static int BadBreakWeight(Code)(Java Doc)
final public static int ExcellentBreakWeight(Code)(Java Doc)
final public static int ForcedBreakWeight(Code)(Java Doc)
final public static int GoodBreakWeight(Code)(Java Doc)
final public static int X_AXIS(Code)(Java Doc)
final public static int Y_AXIS(Code)(Java Doc)

Methods inherited from javax.swing.text.View
public void append(View v)(Code)(Java Doc)
public View breakView(int axis, int offset, float pos, float len)(Code)(Java Doc)
public void changedUpdate(DocumentEvent e, Shape a, ViewFactory f)(Code)(Java Doc)
public View createFragment(int p0, int p1)(Code)(Java Doc)
protected void forwardUpdate(DocumentEvent.ElementChange ec, DocumentEvent e, Shape a, ViewFactory f)(Code)(Java Doc)
protected void forwardUpdateToView(View v, DocumentEvent e, Shape a, ViewFactory f)(Code)(Java Doc)
public float getAlignment(int axis)(Code)(Java Doc)
public AttributeSet getAttributes()(Code)(Java Doc)
public int getBreakWeight(int axis, float pos, float len)(Code)(Java Doc)
public Shape getChildAllocation(int index, Shape a)(Code)(Java Doc)
public Container getContainer()(Code)(Java Doc)
public Document getDocument()(Code)(Java Doc)
public Element getElement()(Code)(Java Doc)
public int getEndOffset()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
public float getMaximumSpan(int axis)(Code)(Java Doc)
public float getMinimumSpan(int axis)(Code)(Java Doc)
public int getNextVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) throws BadLocationException(Code)(Java Doc)
public View getParent()(Code)(Java Doc)
abstract public float getPreferredSpan(int axis)(Code)(Java Doc)
public int getResizeWeight(int axis)(Code)(Java Doc)
public int getStartOffset()(Code)(Java Doc)
public String getToolTipText(float x, float y, Shape allocation)(Code)(Java Doc)
public View getView(int n)(Code)(Java Doc)
public int getViewCount()(Code)(Java Doc)
public ViewFactory getViewFactory()(Code)(Java Doc)
public int getViewIndex(int pos, Position.Bias b)(Code)(Java Doc)
public int getViewIndex(float x, float y, Shape allocation)(Code)(Java Doc)
public void insert(int offs, View v)(Code)(Java Doc)
public void insertUpdate(DocumentEvent e, Shape a, ViewFactory f)(Code)(Java Doc)
public boolean isVisible()(Code)(Java Doc)
abstract public Shape modelToView(int pos, Shape a, Position.Bias b) throws BadLocationException(Code)(Java Doc)
public Shape modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) throws BadLocationException(Code)(Java Doc)
public Shape modelToView(int pos, Shape a) throws BadLocationException(Code)(Java Doc)
abstract public void paint(Graphics g, Shape allocation)(Code)(Java Doc)
public void preferenceChanged(View child, boolean width, boolean height)(Code)(Java Doc)
public void remove(int i)(Code)(Java Doc)
public void removeAll()(Code)(Java Doc)
public void removeUpdate(DocumentEvent e, Shape a, ViewFactory f)(Code)(Java Doc)
public void replace(int offset, int length, View[] views)(Code)(Java Doc)
public void setParent(View parent)(Code)(Java Doc)
public void setSize(float width, float height)(Code)(Java Doc)
protected boolean updateChildren(DocumentEvent.ElementChange ec, DocumentEvent e, ViewFactory f)(Code)(Java Doc)
protected void updateLayout(DocumentEvent.ElementChange ec, DocumentEvent e, Shape a)(Code)(Java Doc)
abstract public int viewToModel(float x, float y, Shape a, Position.Bias[] biasReturn)(Code)(Java Doc)
public int viewToModel(float x, float y, Shape a)(Code)(Java Doc)

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.