| |
|
| java.lang.Object net.sourceforge.squirrel_sql.fw.id.IntegerIdentifierFactory
IntegerIdentifierFactory | public class IntegerIdentifierFactory implements IIdentifierFactory(Code) | | This class is a factory that generates IntegerIdentifier
objects. Each identifier generated will have a value one greater
than the previously generated one.
author: Colin Bell |
IntegerIdentifierFactory | public IntegerIdentifierFactory()(Code) | | Default ctor. First identifier generated will have a value of zero.
|
IntegerIdentifierFactory | public IntegerIdentifierFactory(int initialValue)(Code) | | ctor specifying the value of the first identifier.
Parameters: initialValue - Value for first identifier generated. |
createIdentifier | public synchronized IIdentifier createIdentifier()(Code) | | Create a new identifier.
The new identifier object. |
|
|
|