venice
Class ShowRequiredInterfacesCommand

java.lang.Object
  |
  +--venice.Command
        |
        +--venice.ShowRequiredInterfacesCommand

public class ShowRequiredInterfacesCommand
extends Command

This command show interfaces the element requires. It generates new VInterface and VRealization to the interface.

Author:
Antti Pietarinen

Field Summary
private  ModelStorage mModel
          Private variable to hold the ModelStorage instance that is needed in various places in the recursive action of this object.
private  Visualization mVisualization
          Private variable to hold the Visualization instance that is needed in various places in the recursive action of this object.
 
Fields inherited from class venice.Command
stAppModule
 
Constructor Summary
ShowRequiredInterfacesCommand()
           
 
Method Summary
 void execute()
          This abstract method is overridden in subclasses.
 
Methods inherited from class venice.Command
getAppModule, setAppModule
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

mModel

private ModelStorage mModel
Private variable to hold the ModelStorage instance that is needed in various places in the recursive action of this object.

mVisualization

private Visualization mVisualization
Private variable to hold the Visualization instance that is needed in various places in the recursive action of this object.
Constructor Detail

ShowRequiredInterfacesCommand

public ShowRequiredInterfacesCommand()
Method Detail

execute

public void execute()
Description copied from class: Command
This abstract method is overridden in subclasses. The overridden version does whatever the Command is supposed to do.

Users of these subclasses can rely on the Command interface, and just call execute() when they want the given subclass to perform an operation.

Overrides:
execute in class Command