DhJumpPoint Class

DhJumpPoint Class

This Package | All Packages

DhStyleBase
  |
  +--DhElement
    |
    +--DhJumpPoint
public class DhJumpPoint
extends DhElement

Represents an jump point within a document (that is, a <A NAME=...> reference).

Constructors
Name Description
DhJumpPoint() Creates a DhJumpPoint object.
DhJumpPoint(String name) Creates a DhJumpPoint object.

Methods
Name Description
getName() Retrieves the current jump point name.
setName(String n) Sets the jump point name.

Constructors

DhJumpPoint.DhJumpPoint

Syntax 1
public DhJumpPoint();
Description

Creates a DhJumpPoint object.



Syntax 2
public DhJumpPoint( String name );
Parameters
name
The name of the jump point.
Description

Creates a DhJumpPoint object. This is a one-step constructor that initializes the name of the jump point.

Methods

DhJumpPoint.getName

Syntax
public String getName();
Return Value

Returns the name, or returns a null string if one does not exist.

Description

Retrieves the current jump point name.

DhJumpPoint.setName

Syntax
public void setName( String n );
Parameters
n
The new jump point name.
Description

Sets the jump point name.