Guest User

Untitled

a guest
Sep 25th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public abstract class Art{
  2.  
  3.     public static String getAuthor(){
  4.         return "Travis Ralston";
  5.     }
  6.    
  7.     public static boolean isAbstract(){
  8.         return Art.class.getModifiers() == 0x0400;
  9.     }
  10.  
  11. }
Add Comment
Please, Sign In to add comment