DATATYPE - The type of object to create.PARAM1TYPE - The type of the first parameter.PARAM2TYPE - The type of the second parameter.public interface IFactoryWithTwoParameters<DATATYPE,PARAM1TYPE,PARAM2TYPE>
| Modifier and Type | Method and Description |
|---|---|
DATATYPE |
create(PARAM1TYPE aParameter1,
PARAM2TYPE aParameter2)
Create an object of the desired type.
|
@DevelopersNote(value="No @Nullable annotation as we can make no assumptions on the state") DATATYPE create(PARAM1TYPE aParameter1, PARAM2TYPE aParameter2)
aParameter1 - The first parameter required to create the object. May be
null depending on the implementation.aParameter2 - The second parameter required to create the object. May be
null depending on the implementation.null depending on the
implementation.Copyright © 2006–2015 phloc systems. All rights reserved.