Sha256: 44574ccaca426d3a800c33db85ca2f07a2d91a8d7db1448d731dc153bb939bee
Contents?: true
Size: 415 Bytes
Versions: 135
Compression:
Stored size: 415 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.FIELD) public @interface RubyLevelConstant { String name(); }
Version data entries
135 entries across 135 versions & 2 rubygems