de.cau.cs.kieler.viewmanagement.effects
Class DefaultTestEffect

java.lang.Object
  extended by de.cau.cs.kieler.viewmanagement.AEffect
      extended by de.cau.cs.kieler.viewmanagement.effects.DefaultTestEffect

public class DefaultTestEffect
extends AEffect

Rating red

Constructor Summary
DefaultTestEffect()
          default constructor
 
Method Summary
 void execute()
          Abstract method to execute a specific effect.
 void setParameters(Object parameters)
          Method to set the parameters of an effect.
 void setTarget(EditPart target)
          Method to set the target of the effect.
 
Methods inherited from class de.cau.cs.kieler.viewmanagement.AEffect
getAffectedObject
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultTestEffect

public DefaultTestEffect()
default constructor

Method Detail

execute

public void execute()
Description copied from class: AEffect
Abstract method to execute a specific effect. Must be implemented by the developer of the effect. Here, you will have to implement the exact behaviour of the effect.

Specified by:
execute in class AEffect

setParameters

public void setParameters(Object parameters)
Description copied from class: AEffect
Method to set the parameters of an effect. This may be used to transport additional information such as text to be displayed in an effect, parameters for the visual appearance of the effect, e.g. line width, colors and so on.

Overrides:
setParameters in class AEffect
Parameters:
parameters - the parameters

setTarget

public void setTarget(EditPart target)
Description copied from class: AEffect
Method to set the target of the effect. This is the EditPart that will be modified or otherwise worked with by the effect.

Overrides:
setTarget in class AEffect
Parameters:
target - the target of the effect