org.jpox.sco
Class Stack

java.lang.Object
  extended byjava.util.AbstractCollection
      extended byjava.util.AbstractList
          extended byjava.util.Vector
              extended byjava.util.Stack
                  extended byorg.jpox.sco.Stack
All Implemented Interfaces:
java.lang.Cloneable, java.util.Collection, java.util.List, Queryable, java.util.RandomAccess, SCO, SCOCollection, SCOLazyLoading, SCOList, java.io.Serializable

public class Stack
extends java.util.Stack
implements SCOList, SCOLazyLoading, java.lang.Cloneable, Queryable

A mutable second-class Stack object.

Extends java.util.Stack since it needs to be castable to the users type. Backed by a ListStore object. Uses a delegate internally to store its internal state rather than the superclass. The reason for this is that the java.util collections call their own methods internally and so things like removeAll calls remove on each item in the list. We want control since we want to remove the datastore entries in one call rather than mutiple. All mutator methods are intercepted and sent to the backing store, so it is always consistent with the current object.

Version:
$Revision: 1.54 $
See Also:
Serialized Form

Field Summary
protected  boolean isCacheLoaded
          Status flag whether the collection is loaded into the cache.
protected  boolean useCache
          Whether to use "delegate" caching.
 
Fields inherited from class java.util.Vector
capacityIncrement, elementCount, elementData
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
Stack(StateManager ownerSM, java.lang.String fieldName)
          Constructor, using the StateManager of the "owner" and the field name.
 
Method Summary
 void add(int index, java.lang.Object element)
          Method to add an element to a position in the Stack
 boolean add(java.lang.Object element)
          Method to add an element to the Stack
 boolean addAll(java.util.Collection elements)
          Method to add a Collection to the Stack
 boolean addAll(int index, java.util.Collection elements)
          Method to add a Collection to a position in the Stack
 void addElement(java.lang.Object element)
          Method to add an element to the Stack
 void attachCopy(java.lang.Object value)
          Method to return an attached copy of the passed (detached) value.
 void clear()
          Method to clear the Stack
 java.lang.Object clone()
          Clone operator to return a copy of this object.
 boolean contains(java.lang.Object element)
          Method to return if the list contains this element.
 void detach(FetchPlanState state)
          Method to detach the PersistenceCapable elements of this container.
 java.lang.Object detachCopy(FetchPlanState state)
          Method to return a detached copy of the container.
 boolean empty()
          Accessor for whether the Stack is empty.
 boolean equals(java.lang.Object o)
          Equality operator.
 java.lang.Object get(int index)
          Method to retrieve an element no.
 java.lang.Class getElementType()
          Accessor for the element type.
 java.lang.String getFieldName()
          Accessor for the field name.
 java.lang.Object getOwner()
          Accessor for the owner object.
 int indexOf(java.lang.Object element)
          Method to the position of an element.
 boolean isEmpty()
          Accessor for whether the Stack is empty.
 java.util.Iterator iterator()
          Method to retrieve an iterator for the list.
 int lastIndexOf(java.lang.Object element)
          Method to retrieve the last position of the element.
 java.util.ListIterator listIterator()
          Method to retrieve a List iterator for the list.
 java.util.ListIterator listIterator(int index)
          Method to retrieve a List iterator for the list from the index.
 void load()
          Method to effect the load of the data in the SCO.
protected  void loadFromStore()
          Method to load all elements from the "backing store" where appropriate.
 void makeDirty()
          Utility to mark the object as dirty
 void makeTransient(FetchPlanState state)
          Method to make transient all elements of this container.
 QueryExpression newQueryStatement()
          Method to generate a QueryStatement for the SCO.
 QueryExpression newQueryStatement(java.lang.Class candidate_class)
          Method to return a QueryStatement, using the specified candidate class.
 Query.ResultObjectFactory newResultObjectFactory(QueryExpression stmt, boolean ignoreCache, java.lang.Class resultClass, boolean useFetchPlan)
          Method to return a ResultObjectFactory for the SCO.
 java.lang.Object peek()
          Method to retrieve the element at the top of the stack.
 java.lang.Object pop()
          Method to remove the top element in the stack and return it.
 java.lang.Object push(java.lang.Object element)
          Method to push an element onto the stack and return it.
 java.lang.Object remove(int index)
          Method to remove an element from the Stack
 boolean remove(java.lang.Object element)
          Method to remove an element from the Stack
 boolean removeAll(java.util.Collection elements)
          Method to remove a Collection of objects from the Stack
 void removeAllElements()
          Method to remove all elements from the Stack.
 boolean removeElement(java.lang.Object element)
          Method to remove an element from the Stack
 void removeElementAt(int index)
          Method to remove an element from the Stack
 boolean retainAll(java.util.Collection c)
          Method to retain a Collection of elements (and remove all others).
 void runReachability(java.util.Set reachables)
          Method to run reachability on this SCO.
 java.lang.Object set(int index, java.lang.Object element)
          Method to set the element at a position in the Stack
 java.lang.Object set(int index, java.lang.Object element, boolean allowDependentField)
          JPOX wrapper addition that allows turning off of the dependent-field checks when doing the position setting.
 void setElementAt(java.lang.Object element, int index)
          Method to set the element at a position in the Stack
 void setValueFrom(java.lang.Object o, boolean forUpdate)
          Mutator for setting using an object.
 int size()
          Accessor for the size of the Stack.
 java.util.List subList(int from, int to)
          Accessor for the subList of elements between from and to of the List
 java.lang.Object[] toArray()
          Method to return the list as an array.
 java.lang.Object[] toArray(java.lang.Object[] a)
          Method to return the list as an array.
 void unsetOwner()
          Method to unset the owner and field information.
 void updateEmbeddedElement(java.lang.Object element, int fieldNumber, java.lang.Object value)
          Method to update an embedded element in this collection.
protected  java.lang.Object writeReplace()
          The writeReplace method is called when ObjectOutputStream is preparing to write the object to the stream.
 
Methods inherited from class java.util.Stack
search
 
Methods inherited from class java.util.Vector
capacity, containsAll, copyInto, elementAt, elements, ensureCapacity, firstElement, hashCode, indexOf, insertElementAt, lastElement, lastIndexOf, removeRange, setSize, toString, trimToSize
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

useCache

protected boolean useCache
Whether to use "delegate" caching.


isCacheLoaded

protected boolean isCacheLoaded
Status flag whether the collection is loaded into the cache.

Constructor Detail

Stack

public Stack(StateManager ownerSM,
             java.lang.String fieldName)
Constructor, using the StateManager of the "owner" and the field name.

Parameters:
ownerSM - The owner StateManager
fieldName - The name of the field of the SCO.
Method Detail

getElementType

public java.lang.Class getElementType()
Accessor for the element type.

Specified by:
getElementType in interface SCOCollection
Returns:
the element type contained in the collection

load

public void load()
Method to effect the load of the data in the SCO. Used when the SCO supports lazy-loading to tell it to load all now.

Specified by:
load in interface SCOLazyLoading

updateEmbeddedElement

public void updateEmbeddedElement(java.lang.Object element,
                                  int fieldNumber,
                                  java.lang.Object value)
Method to update an embedded element in this collection.

Specified by:
updateEmbeddedElement in interface SCOCollection
Parameters:
element - The element
fieldNumber - Number of field in the element
value - New value for this field

setValueFrom

public void setValueFrom(java.lang.Object o,
                         boolean forUpdate)
Mutator for setting using an object.

Specified by:
setValueFrom in interface SCO
Parameters:
o - The object to set from
forUpdate - Whether to update the datastore with this value

getFieldName

public java.lang.String getFieldName()
Accessor for the field name.

Specified by:
getFieldName in interface SCO
Returns:
The field name

getOwner

public java.lang.Object getOwner()
Accessor for the owner object.

Specified by:
getOwner in interface SCO
Returns:
The owner object

unsetOwner

public void unsetOwner()
Method to unset the owner and field information.

Specified by:
unsetOwner in interface SCO

makeDirty

public void makeDirty()
Utility to mark the object as dirty


runReachability

public void runReachability(java.util.Set reachables)
Method to run reachability on this SCO.

Specified by:
runReachability in interface SCO
Parameters:
reachables - List of StateManagers reachable so far

makeTransient

public void makeTransient(FetchPlanState state)
Method to make transient all elements of this container. All elements that are PersistenceCapable will be made transient.

Specified by:
makeTransient in interface SCO
Parameters:
state - State for the fetchplan process

detach

public void detach(FetchPlanState state)
Method to detach the PersistenceCapable elements of this container.

Specified by:
detach in interface SCO
Parameters:
state - State for the detachment process

detachCopy

public java.lang.Object detachCopy(FetchPlanState state)
Method to return a detached copy of the container. Recurse sthrough the elements so that they are likewise detached.

Specified by:
detachCopy in interface SCO
Parameters:
state - State of detachment state
Returns:
The detached container

attachCopy

public void attachCopy(java.lang.Object value)
Method to return an attached copy of the passed (detached) value. The returned attached copy is a SCO wrapper. Goes through the existing elements in the store for this owner field and removes ones no longer present, and adds new elements. All elements in the (detached) value are attached.

Specified by:
attachCopy in interface SCO
Parameters:
value - The new (collection) value

newQueryStatement

public QueryExpression newQueryStatement()
Method to generate a QueryStatement for the SCO.

Specified by:
newQueryStatement in interface Queryable
Returns:
The QueryStatement

newQueryStatement

public QueryExpression newQueryStatement(java.lang.Class candidate_class)
Method to return a QueryStatement, using the specified candidate class.

Specified by:
newQueryStatement in interface Queryable
Parameters:
candidate_class - the candidate class
Returns:
The QueryStatement
See Also:
Queryable.newQueryStatement()

newResultObjectFactory

public Query.ResultObjectFactory newResultObjectFactory(QueryExpression stmt,
                                                        boolean ignoreCache,
                                                        java.lang.Class resultClass,
                                                        boolean useFetchPlan)
Method to return a ResultObjectFactory for the SCO.

Specified by:
newResultObjectFactory in interface Queryable
Parameters:
stmt - The QueryStatement
ignoreCache - Whether to ignore the cache
resultClass - Whether to create objects of a particular class
useFetchPlan - whether to use the fetch plan to retrieve fields in the same query
Returns:
The ResultObjectFactory

clone

public java.lang.Object clone()
Clone operator to return a copy of this object.

Mutable second-class Objects are required to provide a public clone method in order to allow for copying PersistenceCapable objects. In contrast to Object.clone(), this method must not throw a CloneNotSupportedException.

Specified by:
clone in interface SCO
Returns:
The cloned object

contains

public boolean contains(java.lang.Object element)
Method to return if the list contains this element.

Specified by:
contains in interface java.util.List
Parameters:
element - The element
Returns:
Whether it is contained

empty

public boolean empty()
Accessor for whether the Stack is empty.

Returns:
Whether it is empty.

equals

public boolean equals(java.lang.Object o)
Equality operator.

Specified by:
equals in interface java.util.List
Parameters:
o - The object to compare against.
Returns:
Whether this object is the same.

get

public java.lang.Object get(int index)
Method to retrieve an element no.

Specified by:
get in interface java.util.List
Parameters:
index - The item to retrieve
Returns:
The element at that position.

indexOf

public int indexOf(java.lang.Object element)
Method to the position of an element.

Specified by:
indexOf in interface java.util.List
Parameters:
element - The element.
Returns:
The position.

isEmpty

public boolean isEmpty()
Accessor for whether the Stack is empty.

Specified by:
isEmpty in interface Queryable
Returns:
Whether it is empty.

iterator

public java.util.Iterator iterator()
Method to retrieve an iterator for the list.

Specified by:
iterator in interface java.util.List
Returns:
The iterator

listIterator

public java.util.ListIterator listIterator()
Method to retrieve a List iterator for the list.

Specified by:
listIterator in interface java.util.List
Returns:
The iterator

listIterator

public java.util.ListIterator listIterator(int index)
Method to retrieve a List iterator for the list from the index.

Specified by:
listIterator in interface java.util.List
Parameters:
index - The start point
Returns:
The iterator

lastIndexOf

public int lastIndexOf(java.lang.Object element)
Method to retrieve the last position of the element.

Specified by:
lastIndexOf in interface java.util.List
Parameters:
element - The element
Returns:
The last position of this element in the List.

peek

public java.lang.Object peek()
Method to retrieve the element at the top of the stack.

Returns:
The element at the top of the stack

size

public int size()
Accessor for the size of the Stack.

Specified by:
size in interface java.util.List
Returns:
The size.

subList

public java.util.List subList(int from,
                              int to)
Accessor for the subList of elements between from and to of the List

Specified by:
subList in interface java.util.List
Parameters:
from - Start index (inclusive)
to - End index (exclusive)
Returns:
The subList

toArray

public java.lang.Object[] toArray()
Method to return the list as an array.

Specified by:
toArray in interface java.util.List
Returns:
The array

toArray

public java.lang.Object[] toArray(java.lang.Object[] a)
Method to return the list as an array.

Specified by:
toArray in interface java.util.List
Parameters:
a - The runtime types of the array being defined by this param
Returns:
The array

add

public void add(int index,
                java.lang.Object element)
Method to add an element to a position in the Stack

Specified by:
add in interface java.util.List
Parameters:
index - The position
element - The new element

add

public boolean add(java.lang.Object element)
Method to add an element to the Stack

Specified by:
add in interface java.util.List
Parameters:
element - The new element
Returns:
Whether it was added ok.

addElement

public void addElement(java.lang.Object element)
Method to add an element to the Stack

Parameters:
element - The new element

addAll

public boolean addAll(java.util.Collection elements)
Method to add a Collection to the Stack

Specified by:
addAll in interface java.util.List
Parameters:
elements - The collection
Returns:
Whether it was added ok.

addAll

public boolean addAll(int index,
                      java.util.Collection elements)
Method to add a Collection to a position in the Stack

Specified by:
addAll in interface java.util.List
Parameters:
index - Position to insert the collection.
elements - The collection
Returns:
Whether it was added ok.

clear

public void clear()
Method to clear the Stack

Specified by:
clear in interface java.util.List

pop

public java.lang.Object pop()
Method to remove the top element in the stack and return it.

Returns:
The top element that was in the Stack (now removed).

push

public java.lang.Object push(java.lang.Object element)
Method to push an element onto the stack and return it.

Parameters:
element - The element to push onto the stack.
Returns:
The element that was pushed onto the Stack

remove

public boolean remove(java.lang.Object element)
Method to remove an element from the Stack

Specified by:
remove in interface java.util.List
Parameters:
element - The element
Returns:
Whether the element was removed

removeAll

public boolean removeAll(java.util.Collection elements)
Method to remove a Collection of objects from the Stack

Specified by:
removeAll in interface java.util.List
Parameters:
elements - The Collection
Returns:
Whether the collection of elements were removed

removeElement

public boolean removeElement(java.lang.Object element)
Method to remove an element from the Stack

Parameters:
element - The element
Returns:
Whether the element was removed

remove

public java.lang.Object remove(int index)
Method to remove an element from the Stack

Specified by:
remove in interface java.util.List
Parameters:
index - The element position.
Returns:
The object that was removed

removeElementAt

public void removeElementAt(int index)
Method to remove an element from the Stack

Parameters:
index - The element position.

removeAllElements

public void removeAllElements()
Method to remove all elements from the Stack. Same as clear().


retainAll

public boolean retainAll(java.util.Collection c)
Method to retain a Collection of elements (and remove all others).

Specified by:
retainAll in interface java.util.List
Parameters:
c - The collection to retain
Returns:
Whether they were retained successfully.

set

public java.lang.Object set(int index,
                            java.lang.Object element,
                            boolean allowDependentField)
JPOX wrapper addition that allows turning off of the dependent-field checks when doing the position setting. This means that we can prevent the deletion of the object that was previously in that position. This particular feature is used when attaching a list field and where some elements have changed positions.

Specified by:
set in interface SCOList
Parameters:
index - The position
element - The new element
allowDependentField - Whether to allow dependent-field deletes
Returns:
The element previously at that position

set

public java.lang.Object set(int index,
                            java.lang.Object element)
Method to set the element at a position in the Stack

Specified by:
set in interface java.util.List
Parameters:
index - The position
element - The new element
Returns:
The element previously at that position

setElementAt

public void setElementAt(java.lang.Object element,
                         int index)
Method to set the element at a position in the Stack

Parameters:
element - The new element
index - The position

writeReplace

protected java.lang.Object writeReplace()
                                 throws java.io.ObjectStreamException
The writeReplace method is called when ObjectOutputStream is preparing to write the object to the stream. The ObjectOutputStream checks whether the class defines the writeReplace method. If the method is defined, the writeReplace method is called to allow the object to designate its replacement in the stream. The object returned should be either of the same type as the object passed in or an object that when read and resolved will result in an object of a type that is compatible with all references to the object.

Returns:
the replaced object
Throws:
java.io.ObjectStreamException

loadFromStore

protected void loadFromStore()
Method to load all elements from the "backing store" where appropriate.



Copyright © -2007 . All Rights Reserved.