All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class aioli.vtp.PlusArity

java.lang.Object
   |
   +----aioli.vtp.PlusArity

public class PlusArity
extends Object
implements Arity

Constructor Index

 o PlusArity()

Method Index

 o atomp()
Checks if it is an atom list.
 o fixedp()
Checks if it is an fixed list.
 o getarity()
When the arity is fixed returns the number of sons accepted.
 o gettype()
Returns the type of arity.
 o pluslistp()
Checks if it is a plus list.
 o starlistp()
Checks if it is a star list.

Constructors

 o PlusArity
 public PlusArity()

Methods

 o starlistp
 public boolean starlistp()
Checks if it is a star list.

Returns:
Always false.
 o pluslistp
 public boolean pluslistp()
Checks if it is a plus list.

Returns:
Always true.
 o atomp
 public boolean atomp()
Checks if it is an atom list.

Returns:
Always false.
 o fixedp
 public boolean fixedp()
Checks if it is an fixed list.

Returns:
Always false.
 o getarity
 public int getarity()
When the arity is fixed returns the number of sons accepted.

Returns:
Always 0.
 o gettype
 public int gettype()
Returns the type of arity.

Returns:
atomarity.TREE.
See Also:
Arity

All Packages  Class Hierarchy  This Package  Previous  Next  Index