javax.swing.text
Class DefaultStyledDocument.ElementSpec
- DefaultStyledDocument
static short | ContentType - This indicates a content element.
|
static short | EndTagType - This indicates an end tag.
|
static short | JoinFractureDirection - This indicates that the data associated with this spec should be joined
to the fractured element.
|
static short | JoinNextDirection - This indicates that the data associated with this spec should be joined
with what follows it.
|
static short | JoinPreviousDirection - This indicates that the data associated with this spec should be joined
with what precedes it.
|
static short | OriginateDirection - This indicates that the data associated with this spec should be used to
create a new element.
|
static short | StartTagType - This indicates a start tag.
|
ElementSpec(AttributeSet a, short type) - Creates a new
ElementSpec with no content, length or
offset.
|
ElementSpec(AttributeSet a, short type, char[] txt, int offs, int len) - Creates a new
ElementSpec with document content.
|
ElementSpec(AttributeSet a, short type, int len) - Creates a new
ElementSpec that specifies the length but
not the offset of an element.
|
char[] | getArray() - Returns the actual content of the element.
|
AttributeSet | getAttributes() - Returns the attributes of the element.
|
short | getDirection() - Returns the direction of the element.
|
int | getLength() - Returns the length of the content.
|
int | getOffset() - Returns the offset of the content.
|
short | getType() - Returns the type of the element.
|
void | setDirection(short dir) - Sets the direction of the element.
|
void | setType(short type) - Sets the type of the element.
|
String | toString() - Returns a String representation of this
ElementSpec
describing the type, direction and length of this
ElementSpec .
|
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
ContentType
public static final short ContentType
This indicates a content element. This is a possible value for
getType()
.
EndTagType
public static final short EndTagType
This indicates an end tag. This is a possible value for
getType()
.
JoinFractureDirection
public static final short JoinFractureDirection
This indicates that the data associated with this spec should be joined
to the fractured element. This is a possible value for
getDirection()
.
JoinNextDirection
public static final short JoinNextDirection
This indicates that the data associated with this spec should be joined
with what follows it. This is a possible value for
getDirection()
.
JoinPreviousDirection
public static final short JoinPreviousDirection
This indicates that the data associated with this spec should be joined
with what precedes it. This is a possible value for
getDirection()
.
OriginateDirection
public static final short OriginateDirection
This indicates that the data associated with this spec should be used to
create a new element. This is a possible value for
getDirection()
.
StartTagType
public static final short StartTagType
This indicates a start tag. This is a possible value for
getType()
.
ElementSpec
public ElementSpec(AttributeSet a,
short type)
Creates a new ElementSpec
with no content, length or
offset. This is most useful for start and end tags.
a
- the attributes for the element to be createdtype
- the type of the tag
ElementSpec
public ElementSpec(AttributeSet a,
short type,
char[] txt,
int offs,
int len)
Creates a new ElementSpec
with document content.
a
- the attributes for the element to be createdtype
- the type of the tagtxt
- the actual contentoffs
- the offset into the txt
arraylen
- the length of the element
ElementSpec
public ElementSpec(AttributeSet a,
short type,
int len)
Creates a new ElementSpec
that specifies the length but
not the offset of an element. Such ElementSpec
s are
processed sequentially from a known starting point.
a
- the attributes for the element to be createdtype
- the type of the taglen
- the length of the element
getArray
public char[] getArray()
Returns the actual content of the element.
- the actual content of the element
getDirection
public short getDirection()
Returns the direction of the element.
- the direction of the element
getLength
public int getLength()
Returns the length of the content.
- the length of the content
getOffset
public int getOffset()
Returns the offset of the content.
- the offset of the content
getType
public short getType()
Returns the type of the element.
setDirection
public void setDirection(short dir)
Sets the direction of the element.
dir
- the direction of the element to be set
setType
public void setType(short type)
Sets the type of the element.
type
- the type of the element to be set
toString
public String toString()
Returns a String representation of this ElementSpec
describing the type, direction and length of this
ElementSpec
.
- toString in interface Object
- a String representation of this
ElementSpec
DefaultStyledDocument.java --
Copyright (C) 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version.