Eclipse Rich Ajax Platform
Release 1.3

org.eclipse.swt.graphics
Class LineAttributes

java.lang.Object
  extended byorg.eclipse.swt.graphics.LineAttributes

public class LineAttributes
extends Object

LineAttributes defines a set of line attributes that can be modified in a GC.

Application code does not need to explicitly release the resources managed by each instance when those instances are no longer required, and thus no dispose() method is provided.

Since:
1.3
See Also:
GC.getLineAttributes(), GC.setLineAttributes(LineAttributes), Sample code and further information

Field Summary
 int cap
          The line cap style.
 int join
          The line join style.
 float width
          The line width.
 
Constructor Summary
LineAttributes(float width)
          Create a new line attributes with the specified line width.
LineAttributes(float width, int cap, int join)
          Create a new line attributes with the specified line cap, join and width.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

width

public float width
The line width.


cap

public int cap
The line cap style.

See Also:
SWT.CAP_FLAT, SWT.CAP_ROUND, SWT.CAP_SQUARE

join

public int join
The line join style.

See Also:
SWT.JOIN_BEVEL, SWT.JOIN_MITER, SWT.JOIN_ROUND
Constructor Detail

LineAttributes

public LineAttributes(float width)
Create a new line attributes with the specified line width.

Parameters:
width - the line width

LineAttributes

public LineAttributes(float width,
                      int cap,
                      int join)
Create a new line attributes with the specified line cap, join and width.

Parameters:
width - the line width
cap - the line cap style
join - the line join style

Eclipse Rich Ajax Platform
Release 1.3

Copyright (c) Innoopract Informationssysteme GmbH and others 2002, 2009. All rights reserved.