All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.tree.Operation Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.tree;

import org.snapscript.core.Type;

public class Operation {
   
   private final String name;
   private final Type type;
   
   public Operation(Type type, String name) {
      this.name = name;
      this.type = type;
   }
   
   public String getName() {
      return name;
   }
   
   public Type getType() {
      return type;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy