Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
Boxed
org.gnu.pango.AttrList
public class AttrList
extends Boxed
Constructor Summary | |
| |
| |
Method Summary | |
void | |
static AttrList |
|
AttrIterator |
|
void | |
void |
|
void |
public AttrList()
Deprecated. Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
Construct a new AttrList.
public AttrList(Handle handle)
public AttrList(AttrList list)
Deprecated. Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
Create a new AttrList that is a copy of the provided list.
- Parameters:
list
-
public void change(Attribute attr)
Deprecated. Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
Insert the given attribute into the list. It will replace any attribute of the same type on that segment and be merged with any adjoining attributes that are identical.
public static AttrList getAttrListFromHandle(Handle handle)
Deprecated. Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
Static factory method that should only be used internally by Java-Gnome.
public AttrIterator getIterator()
Deprecated. Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
Create an iterator pointing at the beginning of the list.
public void insert(Attribute attr)
Deprecated. Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
Insert the given attribute into the list. It will be inserted after all other attributes with a matching start_index.
public void insertBefore(Attribute attr)
Deprecated. Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
Insert the given attribute into the list. It will be inserted before all other attributes with a matching start_index.
public void splice(AttrList other, int pos, int len)
Deprecated. Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.
Splice on list into another.
- Parameters:
other
- The other AttrList to splice in the current one.pos
- The position at which to insert.len
- The length of the spliced segment.