org.jruby.Ruby.defineReadonlyVariable()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(7.2k)|赞(0)|评价(0)|浏览(152)

本文整理了Java中org.jruby.Ruby.defineReadonlyVariable方法的一些代码示例,展示了Ruby.defineReadonlyVariable的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Ruby.defineReadonlyVariable方法的具体详情如下:
包路径:org.jruby.Ruby
类名称:Ruby
方法名:defineReadonlyVariable

Ruby.defineReadonlyVariable介绍

[英]defines a readonly global variable
[中]定义一个只读全局变量

代码示例

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

  1. public static void createClassPathVariable(Ruby runtime) {
  2. RubyClassPathVariable self = new RubyClassPathVariable(runtime);
  3. runtime.getEnumerable().extend_object(self);
  4. runtime.defineReadonlyVariable("$CLASSPATH", self, GlobalVariable.Scope.GLOBAL);
  5. self.getMetaClass().defineAnnotatedMethods(RubyClassPathVariable.class);
  6. }

代码示例来源:origin: org.jruby/jruby-core

  1. public static void createClassPathVariable(Ruby runtime) {
  2. RubyClassPathVariable self = new RubyClassPathVariable(runtime);
  3. runtime.getEnumerable().extend_object(self);
  4. runtime.defineReadonlyVariable("$CLASSPATH", self, GlobalVariable.Scope.GLOBAL);
  5. self.getMetaClass().defineAnnotatedMethods(RubyClassPathVariable.class);
  6. }

代码示例来源:origin: org.jruby/jruby-complete

  1. public static void createClassPathVariable(Ruby runtime) {
  2. RubyClassPathVariable self = new RubyClassPathVariable(runtime);
  3. runtime.getEnumerable().extend_object(self);
  4. runtime.defineReadonlyVariable("$CLASSPATH", self, GlobalVariable.Scope.GLOBAL);
  5. self.getMetaClass().defineAnnotatedMethods(RubyClassPathVariable.class);
  6. }

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

  1. public static void createClassPathVariable(Ruby runtime) {
  2. RubyClassPathVariable self = new RubyClassPathVariable(runtime);
  3. runtime.getEnumerable().extend_object(self);
  4. runtime.defineReadonlyVariable("$CLASSPATH", self, GlobalVariable.Scope.GLOBAL);
  5. self.getMetaClass().defineAnnotatedMethods(RubyClassPathVariable.class);
  6. }

代码示例来源:origin: org.jruby/jruby-complete

  1. public static void initArgsFile(final Ruby runtime) {
  2. RubyClass argfClass = runtime.defineClass("ARGFClass", runtime.getObject(), ARGF_ALLOCATOR);
  3. argfClass.includeModule(runtime.getEnumerable());
  4. argfClass.defineAnnotatedMethods(RubyArgsFile.class);
  5. IRubyObject argsFile = argfClass.newInstance(runtime.getCurrentContext(), new IRubyObject[] { null }, (Block) null);
  6. runtime.setArgsFile(argsFile);
  7. runtime.getGlobalVariables().defineReadonly("$<", new ArgsFileAccessor(runtime), GlobalVariable.Scope.GLOBAL);
  8. runtime.defineGlobalConstant("ARGF", argsFile);
  9. runtime.defineReadonlyVariable("$FILENAME", runtime.newString("-"), GlobalVariable.Scope.GLOBAL);
  10. }

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

  1. public static void initArgsFile(final Ruby runtime) {
  2. RubyObject argsFile = new RubyObject(runtime, runtime.getObject());
  3. runtime.getEnumerable().extend_object(argsFile);
  4. runtime.setArgsFile(argsFile);
  5. runtime.getGlobalVariables().defineReadonly("$<", new IAccessor() {
  6. @Override
  7. public IRubyObject getValue() {
  8. return runtime.getArgsFile();
  9. }
  10. @Override
  11. public IRubyObject setValue(IRubyObject newValue) {
  12. throw new UnsupportedOperationException("Not supported yet.");
  13. }
  14. }, GlobalVariable.Scope.GLOBAL);
  15. runtime.defineGlobalConstant("ARGF", argsFile);
  16. RubyClass argfClass = argsFile.getMetaClass();
  17. argfClass.defineAnnotatedMethods(RubyArgsFile.class);
  18. runtime.defineReadonlyVariable("$FILENAME", runtime.newString("-"), GlobalVariable.Scope.GLOBAL);
  19. }

代码示例来源:origin: org.jruby/jruby-core

  1. public static void initArgsFile(final Ruby runtime) {
  2. RubyClass argfClass = runtime.defineClass("ARGFClass", runtime.getObject(), ARGF_ALLOCATOR);
  3. argfClass.includeModule(runtime.getEnumerable());
  4. argfClass.defineAnnotatedMethods(RubyArgsFile.class);
  5. IRubyObject argsFile = argfClass.newInstance(runtime.getCurrentContext(), new IRubyObject[] { null }, (Block) null);
  6. runtime.setArgsFile(argsFile);
  7. runtime.getGlobalVariables().defineReadonly("$<", new ArgsFileAccessor(runtime), GlobalVariable.Scope.GLOBAL);
  8. runtime.defineGlobalConstant("ARGF", argsFile);
  9. runtime.defineReadonlyVariable("$FILENAME", runtime.newString("-"), GlobalVariable.Scope.GLOBAL);
  10. }

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

  1. public static void initArgsFile(final Ruby runtime) {
  2. RubyObject argsFile = new RubyObject(runtime, runtime.getObject());
  3. runtime.getEnumerable().extend_object(argsFile);
  4. runtime.setArgsFile(argsFile);
  5. runtime.getGlobalVariables().defineReadonly("$<", new IAccessor() {
  6. @Override
  7. public IRubyObject getValue() {
  8. return runtime.getArgsFile();
  9. }
  10. @Override
  11. public IRubyObject setValue(IRubyObject newValue) {
  12. throw new UnsupportedOperationException("Not supported yet.");
  13. }
  14. }, GlobalVariable.Scope.GLOBAL);
  15. runtime.defineGlobalConstant("ARGF", argsFile);
  16. RubyClass argfClass = argsFile.getMetaClass();
  17. argfClass.defineAnnotatedMethods(RubyArgsFile.class);
  18. runtime.defineReadonlyVariable("$FILENAME", runtime.newString("-"), GlobalVariable.Scope.GLOBAL);
  19. }

代码示例来源:origin: picocontainer/picocontainer

  1. ruby.defineReadonlyVariable("$parent", JavaEmbedUtils.javaToRuby(ruby, parentContainer), Scope.GLOBAL);
  2. ruby.defineReadonlyVariable("$assembly_scope", JavaEmbedUtils.javaToRuby(ruby, assemblyScope), Scope.GLOBAL);

代码示例来源:origin: org.jruby/jruby-complete

  1. final RubyString filename = argv.shift(context).convertToString();
  2. if ( ! filename.op_equal(context, $FILENAME).isTrue() ) {
  3. runtime.defineReadonlyVariable("$FILENAME", filename, GlobalVariable.Scope.GLOBAL);
  4. currentFile = runtime.getGlobalVariables().get("$stdin");
  5. if (!filenameEqlDash((RubyString) $FILENAME)) {
  6. runtime.defineReadonlyVariable("$FILENAME", runtime.newString("-"), GlobalVariable.Scope.GLOBAL);

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

  1. ByteList filenameBytes = filename.getByteList();
  2. if (!filename.op_equal(context, (RubyString) runtime.getGlobalVariables().get("$FILENAME")).isTrue()) {
  3. runtime.defineReadonlyVariable("$FILENAME", filename, GlobalVariable.Scope.GLOBAL);
  4. currentFile = runtime.getGlobalVariables().get("$stdin");
  5. if(!runtime.getGlobalVariables().get("$FILENAME").asJavaString().equals("-")) {
  6. runtime.defineReadonlyVariable("$FILENAME", runtime.newString("-"), GlobalVariable.Scope.GLOBAL);

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

  1. ByteList filenameBytes = filename.getByteList();
  2. if (!filename.op_equal(context, (RubyString) runtime.getGlobalVariables().get("$FILENAME")).isTrue()) {
  3. runtime.defineReadonlyVariable("$FILENAME", filename, GlobalVariable.Scope.GLOBAL);
  4. currentFile = runtime.getGlobalVariables().get("$stdin");
  5. if(!runtime.getGlobalVariables().get("$FILENAME").asJavaString().equals("-")) {
  6. runtime.defineReadonlyVariable("$FILENAME", runtime.newString("-"), GlobalVariable.Scope.GLOBAL);

代码示例来源:origin: org.jruby/jruby-core

  1. final RubyString filename = argv.shift(context).convertToString();
  2. if ( ! filename.op_equal(context, $FILENAME).isTrue() ) {
  3. runtime.defineReadonlyVariable("$FILENAME", filename, GlobalVariable.Scope.GLOBAL);
  4. currentFile = runtime.getGlobalVariables().get("$stdin");
  5. if (!filenameEqlDash((RubyString) $FILENAME)) {
  6. runtime.defineReadonlyVariable("$FILENAME", runtime.newString("-"), GlobalVariable.Scope.GLOBAL);

相关文章

Ruby类方法