Skip to content
Snippets Groups Projects
Table.java 190 B
Newer Older
  • Learn to ignore specific revisions
  • package de.tobias.playpad.server.sql;
    
    import java.lang.annotation.*;
    
    @Target(ElementType.TYPE)
    @Retention(RetentionPolicy.RUNTIME)
    @Documented
    public @interface Table
    {
    	String value();
    }