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

org.snapscript.platform.generate.ConstructorArguments Maven / Gradle / Ivy

package org.snapscript.platform.generate;

public class ConstructorArguments {
   
   private final Object[] arguments;
   private final Class[] types;

   public ConstructorArguments(Class[] types, Object[] arguments) {
      this.arguments = arguments;
      this.types = types;
   }

   public Object[] getArguments() {
      return arguments;
   }

   public Class[] getTypes() {
      return types;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy