org.loom.binding.factories
Class ArrayImplementationFactory

java.lang.Object
  extended by org.loom.binding.factories.ArrayImplementationFactory
All Implemented Interfaces:
ImplementationFactory<java.lang.Object>

public class ArrayImplementationFactory
extends java.lang.Object
implements ImplementationFactory<java.lang.Object>

ImplementationFactory for static arrays. Array access is read-only, since an array length cannot be changed at runtime without reallocating it. Thus, this ImplementationFactory throws an exception if it ever gets called.


Constructor Summary
ArrayImplementationFactory(java.lang.Class<?> nodeClass)
           
 
Method Summary
 java.lang.Object newInstance()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ArrayImplementationFactory

public ArrayImplementationFactory(java.lang.Class<?> nodeClass)
Method Detail

newInstance

public java.lang.Object newInstance()
Specified by:
newInstance in interface ImplementationFactory<java.lang.Object>