Javadoc fix

This commit is contained in:
Lukas Eder 2013-07-04 12:18:03 +02:00
parent 690a17277d
commit 5787a77808

View File

@ -38,17 +38,17 @@ package org.jooq;
import org.jooq.conf.Settings;
/**
* A SQL identifier <code>QueryPart</code>
* A SQL identifier <code>QueryPart</code>.
* <p>
* A <code>Name</code> is a {@link QueryPart} that renders a SQL identifier
* according to the {@link Settings#getRenderNameStyle()}.
* according to the settings specified in {@link Settings#getRenderNameStyle()}.
*
* @author Lukas Eder
*/
public interface Name extends QueryPart {
/**
* The qualified name of this SQL identifier
* The qualified name of this SQL identifier.
*/
String[] getName();
}