Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A B C D E F G H I K L M N O Q R S T V W

A

Accessor - interface org.jdaemon.util.Accessor.
An adapter interface which allows attributes of an object to be accessed via standard methods.
ArrayAccessor - class org.jdaemon.util.ArrayAccessor.
Accessor which allows items stored in an array to be given names and accessed via those names.
ArrayAccessor(String[]) - Constructor for class org.jdaemon.util.ArrayAccessor
Creates a new instance of ArrayAccessor given an array of names.
AttributeList - class org.jdaemon.util.AttributeList.
Simple class for dynamically created list of Name/Value pairs.
AttributeList(QuickList) - Constructor for class org.jdaemon.util.AttributeList
Protected constructor that allows an AttributeList to be created from a QuickList of Entry objects.
AttributeList() - Constructor for class org.jdaemon.util.AttributeList
 
AttributeList.Entry - class org.jdaemon.util.AttributeList.Entry.
Class for an entry in an AttributeList; Basically just a name/value pair
AttributeList.Entry(String, Object) - Constructor for class org.jdaemon.util.AttributeList.Entry
Create a new name/value pair
add(Object[], Object) - Method in interface org.jdaemon.util.NTree
Add an element to an NTree with a given multidimensional key.
add(Object) - Method in class org.jdaemon.util.QuickList
Adds an item to a list.
add(Iterator) - Method in class org.jdaemon.util.QuickList
Adds serveral items to a list.
addAttribute(String, Object) - Method in class org.jdaemon.util.AttributeList
Add an attribute (name,value) pair to an existing attribute list.
addReverse(QuickList) - Method in class org.jdaemon.util.QuickList
 
attributes - Variable in class org.jdaemon.util.AttributeList
Underlying store of Entry objects

B

BeanAccessor - class org.jdaemon.util.BeanAccessor.
Accessor which allows items stored in a bean-like object to be given symbolic names.
BeanAccessor(Class) - Constructor for class org.jdaemon.util.BeanAccessor
Creates a new instance of BeanAccessor.
BeanAccessor(Class, String[]) - Constructor for class org.jdaemon.util.BeanAccessor
Creates a new instance of BeanAccessor.

C

compareList(QuickList) - Method in class org.jdaemon.util.QuickList
Compare two lists for equality

D

dimensions() - Method in interface org.jdaemon.util.NTree
get the number of dimensions in the key for this NTree.

E

EMPTY - Static variable in class org.jdaemon.util.AttributeList
 
EMPTY - Static variable in class org.jdaemon.util.QuickList
Empty Quicklist.
equal(int, Object) - Method in interface org.jdaemon.util.NTree
Return an Ntree containing all elements with the given key dimension equal to the given value.
equals(Object) - Method in class org.jdaemon.util.QuickList
Compare two lists for equality implemented using the compareList method but will additionally return false if the object given is not a QuickList.

F

find(Comparator, Object) - Method in class org.jdaemon.util.QuickList
Find an object within the list that matches the one given.
firstName - Variable in class org.jdaemon.util.TestBeanAccessor
 

G

get(String) - Method in class org.jdaemon.util.AttributeList
Find a value for a given name in this attribute list.
get(Object[], Object) - Method in interface org.jdaemon.util.NTree
Retrieve an element from an NTree with a given multidimensional key.
getAttribute(String, Object) - Method in interface org.jdaemon.util.Accessor
Retrieves a named attribute from an object.
getAttribute(String, Object[]) - Method in class org.jdaemon.util.ArrayAccessor
Retrieves a named attribute from an array.
getAttribute(String, Object) - Method in class org.jdaemon.util.ArrayAccessor
Retrieves a named attribute from an object.
getAttribute(String, Object) - Method in class org.jdaemon.util.BeanAccessor
Retrieve the attribute value corresponding to an attribute name from specific data object.
getAttributeNames() - Method in interface org.jdaemon.util.Accessor
Get an iterator over all the attribute names understood by this Accessor.
getAttributeNames() - Method in class org.jdaemon.util.ArrayAccessor
Get an iterator over all the attribute names understood by this Accessor.
getAttributeNames() - Method in class org.jdaemon.util.BeanAccessor
Return an iterator over all the attributes understood by this Accessor.
getFirstName() - Method in class org.jdaemon.util.TestBeanAccessor
 
getLastName() - Method in class org.jdaemon.util.TestBeanAccessor
 
getName() - Method in class org.jdaemon.util.AttributeList.Entry
Get the name of this attribute
getValue() - Method in class org.jdaemon.util.AttributeList.Entry
Get the value of this attribute
get_methods - Variable in class org.jdaemon.util.BeanAccessor
 
greater(int, Object) - Method in interface org.jdaemon.util.NTree
Return an Ntree containing all elements with the given key dimension greater than the given value.
greaterOrEqual(int, Object) - Method in interface org.jdaemon.util.NTree
Return an Ntree containing all elements with the given key dimension greater than or equal to the given value.

H

head() - Method in class org.jdaemon.util.AttributeList
get topmost (last added) entry in attribute list.
head - Variable in class org.jdaemon.util.QuickList
The first element in this QuickList
head() - Method in class org.jdaemon.util.QuickList
Get the first item in this list.

I

isEmpty() - Method in class org.jdaemon.util.AttributeList
 
iterator(int[]) - Method in interface org.jdaemon.util.NTree
Iterate over values in the given order.

K

keySet(int) - Method in interface org.jdaemon.util.NTree
Return the set of unique values of the given key dimension.

L

lastName - Variable in class org.jdaemon.util.TestBeanAccessor
 
less(int, Object) - Method in interface org.jdaemon.util.NTree
Return an Ntree containing all elements with the given key dimension less than the given value.
lessOrEqual(int, Object) - Method in interface org.jdaemon.util.NTree
Return an Ntree containing all elements with the given key dimension less than or equal to the given value.

M

main(String[]) - Static method in class org.jdaemon.util.TestBeanAccessor
 
map - Variable in class org.jdaemon.util.ArrayAccessor
Stores the mapping of names to array indices
my_class - Variable in class org.jdaemon.util.BeanAccessor
 

N

NAME_COMPARATOR - Static variable in class org.jdaemon.util.AttributeList
Comparator for Entry objects that works on the name part only
NTree - interface org.jdaemon.util.NTree.
Interface for N-dimensional trees 1 dimensional tree is a binary tree 2 dimensional tree is a quadtree 3 dimensional tree is an octree 4+ dimensions is a hyper-quadtree
name - Variable in class org.jdaemon.util.AttributeList.Entry
The name of an attribute

O

orderedAdd(Comparator, Object) - Method in class org.jdaemon.util.QuickList
Add an element to the Quicklist, maintaining a pre-existing ordering of elements.
org.jdaemon.util - package org.jdaemon.util
 

Q

QuickList - class org.jdaemon.util.QuickList.
A quick-and-dirty LISP-style list class.
QuickList(QuickList, Object) - Constructor for class org.jdaemon.util.QuickList
Creates a new instance of QuickList.

R

reverse() - Method in class org.jdaemon.util.QuickList
Reverse all elements in this list.

S

setAttribute(String, Object, Object) - Method in interface org.jdaemon.util.Accessor
Set the value of a named attribute within an object.
setAttribute(String, Object[], Object) - Method in class org.jdaemon.util.ArrayAccessor
Set the value of a named attribute within an array.
setAttribute(String, Object, Object) - Method in class org.jdaemon.util.ArrayAccessor
Set the value of a named attribute within an object.
setAttribute(String, Object, Object) - Method in class org.jdaemon.util.BeanAccessor
Not currently supported.
size() - Method in class org.jdaemon.util.QuickList
Calculate the size of a QuickList
sort(Comparator) - Method in class org.jdaemon.util.QuickList
Create a new QuickList from this one, sorted by the supplied comparator

T

TestBeanAccessor - class org.jdaemon.util.TestBeanAccessor.
Test class for BeanAccessor
TestBeanAccessor(String, String) - Constructor for class org.jdaemon.util.TestBeanAccessor
 
tail() - Method in class org.jdaemon.util.AttributeList
Get this attribute list less the topmost entry.
tail - Variable in class org.jdaemon.util.QuickList
All elements in this QuickList apart from the first
tail() - Method in class org.jdaemon.util.QuickList
Get the rump of this list (everything except the first item).
toList() - Method in class org.jdaemon.util.QuickList
Converts a QuickList to a Collection-style List object.
toString() - Method in class org.jdaemon.util.AttributeList.Entry
Write this attribute as a string: name = "value"
toString() - Method in class org.jdaemon.util.AttributeList
Convert this list to a string.
toString(String) - Method in class org.jdaemon.util.QuickList
Write out all elements of this quicklist to a String with the given separator.
toString() - Method in class org.jdaemon.util.QuickList
Write out a comma-separated list of all elements to a String.

V

ValidateName(String) - Static method in class org.jdaemon.util.AttributeList
Utility function - checks that name is a valid name
value - Variable in class org.jdaemon.util.AttributeList.Entry
The value of an attribute

W

writeWithSeparator(StringBuffer, String) - Method in class org.jdaemon.util.QuickList
Write out all elements of this quicklist to a StringBuffer with the given separator.

A B C D E F G H I K L M N O Q R S T V W