Math2mat

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

Go to the documentation of this file.
00001 
00019 package m2m.backend.structure;
00020 
00025 public abstract class Comparison extends Operation {
00026 
00027         public Comparison(String opName) {
00028                 super(opName);
00029         }
00030         
00031         @Override
00032         public void copyTo(Element e,Function newFunc) {
00033                 Comparison newElement=(Comparison)e;
00034                 super.copyTo(newElement,newFunc);
00035         }
00036 /*      
00037         @Override
00038         public Element copy(Function newFunc) {
00039                 Comparison newElement=new Comparison(this.opName);
00040                 this.copyTo(newElement,newFunc);
00041                 return newElement;
00042         }
00043         */
00044 }
 All Classes Namespaces Files Functions Variables Enumerations