|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use IUnknown | |
|---|---|
| anima.component | |
| anima.component.javalocal | |
| examples.statistics.v01 | Example illustrating a simple component creation and instantiation. |
| examples.statistics.v02 | |
| examples.statistics.v03 | |
| examples.statistics.v04 | |
| examples.statistics.v05 | |
| Uses of IUnknown in anima.component |
|---|
| Subinterfaces of IUnknown in anima.component | |
|---|---|
interface |
IReceptacle
This interface define a receptacle and extends the interface IUnknown public interface IReceptacle extends IUnknown { } |
| Methods in anima.component that return IUnknown | |
|---|---|
IUnknown |
IComponentFactory.createInstance(java.lang.String classId,
java.lang.String primaryKey)
This is an parameterized Factory Method get two parameters and return an instance. |
IUnknown |
IComponentFactory.createInstance(java.lang.String classId,
java.lang.String primaryKey,
java.lang.String interfaceId)
Create an instance and return it's interface. |
IUnknown |
IUnknown.queryInterface(java.lang.String interfaceId)
Return the component Interface based on your id. |
| Uses of IUnknown in anima.component.javalocal |
|---|
| Methods in anima.component.javalocal that return IUnknown | |
|---|---|
IUnknown |
JavaLocalComponentFactory.createInstance(java.lang.String classId,
java.lang.String primaryKey)
public IUnknown createInstance(String classId, String primaryKey) { IUnknown component = null; if (classId.equalsIgnoreCase(StatisticsComponent.STATISTICSCOMPONENT_ID)) component = new StatisticsComponent(primaryKey); else if (classId.equalsIgnoreCase(StatisticsConsumerComponent.STATISTICSCONSUMERCOMPONENT_ID)) component = new StatisticsConsumerComponent(primaryKey); else if (classId.equalsIgnoreCase(StatisticsComponentSyncMessage.STATISTICSCOMPONENTMESSAGE_ID)) component = new StatisticsComponentSyncMessage(primaryKey); else if (classId.equalsIgnoreCase(StatisticsConsumerComponentSyncMessage.STATISTICSCONSUMERCOMPONENTMESSAGE_ID)) component = new StatisticsConsumerComponentSyncMessage(primaryKey); else if (classId.equalsIgnoreCase(StatisticsComponentAssyncMessage.STATISTICSCOMPONENTMESSAGE_ID)) component = new StatisticsComponentAssyncMessage(primaryKey); else if (classId.equalsIgnoreCase(StatisticsConsumerComponentAssyncMessage.STATISTICSCONSUMERCOMPONENTMESSAGE_ID)) component = new StatisticsConsumerComponentAssyncMessage(primaryKey); if (messageFactory ! |
IUnknown |
JavaLocalComponentFactory.createInstance(java.lang.String classId,
java.lang.String primaryKey,
java.lang.String interfaceId)
Create an instance and return it's interface. |
| Uses of IUnknown in examples.statistics.v01 |
|---|
| Subinterfaces of IUnknown in examples.statistics.v01 | |
|---|---|
interface |
IStatistics
This is a simple statistic interface that describe basic functionalities |
| Classes in examples.statistics.v01 that implement IUnknown | |
|---|---|
class |
StatisticsComponent
|
| Methods in examples.statistics.v01 that return IUnknown | |
|---|---|
IUnknown |
StatisticsComponent.queryInterface(java.lang.String interfaceId)
|
| Uses of IUnknown in examples.statistics.v02 |
|---|
| Subinterfaces of IUnknown in examples.statistics.v02 | |
|---|---|
interface |
IStatisticsReceptacle
|
| Classes in examples.statistics.v02 that implement IUnknown | |
|---|---|
class |
StatisticsConsumerComponent
|
| Methods in examples.statistics.v02 that return IUnknown | |
|---|---|
IUnknown |
StatisticsConsumerComponent.queryInterface(java.lang.String interfaceId)
|
| Uses of IUnknown in examples.statistics.v03 |
|---|
| Classes in examples.statistics.v03 that implement IUnknown | |
|---|---|
class |
StatisticsComponentSyncMessage
|
| Methods in examples.statistics.v03 that return IUnknown | |
|---|---|
IUnknown |
StatisticsComponentSyncMessage.queryInterface(java.lang.String interfaceId)
|
| Uses of IUnknown in examples.statistics.v04 |
|---|
| Classes in examples.statistics.v04 that implement IUnknown | |
|---|---|
class |
StatisticsConsumerComponentSyncMessage
|
| Methods in examples.statistics.v04 that return IUnknown | |
|---|---|
IUnknown |
StatisticsConsumerComponentSyncMessage.queryInterface(java.lang.String interfaceId)
|
| Uses of IUnknown in examples.statistics.v05 |
|---|
| Classes in examples.statistics.v05 that implement IUnknown | |
|---|---|
class |
StatisticsComponentAssyncMessage
|
class |
StatisticsConsumerComponentAssyncMessage
|
| Methods in examples.statistics.v05 that return IUnknown | |
|---|---|
IUnknown |
StatisticsConsumerComponentAssyncMessage.queryInterface(java.lang.String interfaceId)
|
IUnknown |
StatisticsComponentAssyncMessage.queryInterface(java.lang.String interfaceId)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||