Sha256: 4dbce39df42049b5655b89b4b532ee1156b8ee3222b26200c1dccef15b5ff7d6

Contents?: true

Size: 683 Bytes

Versions: 119

Compression:

Stored size: 683 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 abstract class RubyLevelMethod {
	public abstract String name();
	public String[] alias(){ return null; }// default {};
	public boolean singleton(){ return false; }// default false;
	public boolean module() {return false;}//default false;
	public boolean privateMethod() {return false;}//default false;
}

Version data entries

119 entries across 119 versions & 1 rubygems

Version Path
rhodes-3.5.1.12 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.5 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.4.2 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.4 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.3 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.3.beta.4 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.3.beta.3 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.3.beta.2 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.3.beta.1 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.2 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.2.beta.7 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.2.beta.6 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.2.beta.5 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.2.beta.4 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.2.beta.3 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.2.beta.2 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.2.beta.1 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.1 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.0 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java
rhodes-3.3.0.beta.3 platform/bb/RubyVM/src/com/xruby/runtime/lang/annotation/RubyLevelMethod.java