選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Sample.java 248B

123456789101112
  1. package sample.evolve;
  2. /**
  3. * This is a sample class used by Transformer.
  4. */
  5. public class Sample {
  6. public static Class _version;
  7. public static Object make(Object[] args) {
  8. return VersionManager.make(_version, args);
  9. }
  10. }