public PythonNativeCategoryBinding(String identifier, PythonModule module) { this.identifier = identifier; this.module = module; }
public PythonNativeCategoryBinding(PythonNativeCategoryBinding binding) { this.identifier = binding.identifier; this.module = binding.module; }
public void setModule(PythonModule module) { this.module = module; }