Sha256: 0e859d7fdb87520eebbc677ec0e72b6c434c15349b71660bd0ddfeb48e3030f1

Contents?: true

Size: 577 Bytes

Versions: 135

Compression:

Stored size: 577 Bytes

Contents

/**
 * Copyright 2007 Ye Zheng
 * Distributed under the BSD License
 */

package com.xruby.runtime.lang.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface RubyLevelMethod {
	String name();
	String[] alias() default {};
	boolean singleton() default false;
	boolean module() default false;
	boolean privateMethod() default false;
}

Version data entries

135 entries across 135 versions & 2 rubygems

Version Path
rhodes-7.6.0 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-7.5.1 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-7.4.1 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-7.1.17 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-6.2.0 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-6.0.11 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-5.5.18 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-5.5.17 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-5.5.15 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-5.5.0.22 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-5.5.2 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-5.5.0.7 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-5.5.0.3 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-5.5.0 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
tauplatform-1.0.3 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
tauplatform-1.0.2 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
tauplatform-1.0.1 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.5.1.12 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.5 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.4.2 platform/shared/xruby/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java