Math2mat

/home/ythoma/docs/math2mat/svn/wp1/framework/m2mGUI/src/m2m/backend/structure/Delay.java

Go to the documentation of this file.
00001 /******************************************************************************
00002  *                                                                                      Delay
00003  ******************************************************************************
00004  * Auteur               : Trolliet Gregory
00005  * Date                 : 4 mars 2009
00006  * Description :
00007  ******************************************************************************/
00008 
00009 package m2m.backend.structure;
00010 
00018 public class Delay extends Operation {
00019 
00020         final static String OPNAME="delay";
00021         
00022         public Delay() {
00023                 super(OPNAME);
00024         }
00025 
00026         @Override
00027         public void copyTo(Element e,Function newFunc) {
00028                 Delay newElement=(Delay)e;
00029                 super.copyTo(newElement,newFunc);
00030         }
00031         
00032         @Override
00033         public Element copy(Function newFunc) {
00034                 Delay newElement=new Delay();
00035                 this.copyTo(newElement,newFunc);
00036                 return newElement;
00037         }
00038         
00039 }
 All Classes Namespaces Files Functions Variables Enumerations