/* * Copyright (c) 2010 Mysema Ltd. * All rights reserved. * */ package com.mysema.query.sql; import java.lang.annotation.Annotation; /** * TableImpl is an implementation for the Table annotation * * @author tiwe * */ @SuppressWarnings("all") public class TableImpl implements Table{ private final String table; public TableImpl(String table){ this.table = table; } @Override public String value() { return table; } @Override public Class annotationType() { return Table.class; } }