Math2mat

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

Go to the documentation of this file.
00001 
00019 package m2m.backend.structure;
00020 
00021 public class LogicOperation extends Operation
00022 {
00023 
00024 
00025         public String getXmlTagName() {
00026                 return "LogicOperation";
00027         }
00028         
00029         public LogicOperation(String opName) {
00030                 super(opName);
00031         }
00032         
00033         @Override
00034         public Element copy(Function newFunc) {
00035                 LogicOperation newElement=new LogicOperation(this.opName);
00036                 this.copyTo(newElement,newFunc);
00037                 return newElement;
00038         }
00039 }
 All Classes Namespaces Files Functions Variables Enumerations