Sha256: 415adec80ced91ecda4c7e6228168ffd47661b6e93c232edfc7912c33e69de14
Contents?: true
Size: 646 Bytes
Versions: 119
Compression:
Stored size: 646 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.TYPE) public abstract class RubyLevelClass { public abstract String name(); public String superclass() { return "Object"; } public String[] modules() { return null; }//default {}; public UndefMethod[] undef(){ return null; }// default {}; public DummyMethod[] dummy(){ return null; }//default {}; }
Version data entries
119 entries across 119 versions & 1 rubygems