Fuzion Logo
fuzion-lang.dev — The Fuzion Language Portal
JavaScript seems to be disabled. Functionality is limited.

Java/java/util/concurrent/Semaphore_static.fz


# Fuzion interface to static members of Java class 'java.util.concurrent.Semaphore'
#
# !!!!!!  DO NOT EDIT, GENERATED CODE !!!!!!
#
# This code was generated automatically using the fzjava tool V0.087 called 
# as follows:
#
#   ./build/bin/fzjava java.base -to=build/modules/java.base -verbose=0
#
public Java.java.util.concurrent.Semaphore_static is

  # call Java constructor 'public java.util.concurrent.Semaphore(int)':
  #
  public new_I(arg0 i32) Java.java.util.concurrent.Semaphore =>
    fuzion.java.call_constructor (Java.java.util.concurrent.Semaphore) "java.util.concurrent.Semaphore" "(I)V" [(fuzion.java.i32_to_java_object Java.java.util.concurrent.Semaphore_static.new_I.this.arg0)]

  # call Java constructor 'public java.util.concurrent.Semaphore(int,boolean)':
  #
  public new_IZ(arg0 i32, arg1 bool) Java.java.util.concurrent.Semaphore =>
    fuzion.java.call_constructor (Java.java.util.concurrent.Semaphore) "java.util.concurrent.Semaphore" "(IZ)V" [(fuzion.java.i32_to_java_object Java.java.util.concurrent.Semaphore_static.new_IZ.this.arg0); (fuzion.java.bool_to_java_object Java.java.util.concurrent.Semaphore_static.new_IZ.this.arg1)]

  # short-hand to call Java constructor 'public java.util.concurrent.Semaphore(int)':
  #
  public new(arg0 i32) (Java.java.util.concurrent.Semaphore) =>
    new_I Java.java.util.concurrent.Semaphore_static.new.this.arg0

  # short-hand to call Java constructor 'public java.util.concurrent.Semaphore(int,boolean)':
  #
  public new(arg0 i32, arg1 bool) (Java.java.util.concurrent.Semaphore) =>
    new_IZ Java.java.util.concurrent.Semaphore_static.new.this.arg0 Java.java.util.concurrent.Semaphore_static.new.this.arg1