Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / test / jvm / tjsetter.java
Size: Mime:
import org.freepascal.test.jsetter.*;

public class tjsetter {

public static void main(String[] args)
{
  tjsetterchild c;

  c = new tjsetterchild();
  c.SetVal(2);
  if (c.get() != 2)
    java.lang.Runtime.getRuntime().exit(1);
  c = new tjsetterchild2();
  c.SetVal(2);
  if (c.get() != 1)
    java.lang.Runtime.getRuntime().exit(2);
}

}