svnno****@sourc*****
svnno****@sourc*****
2009年 4月 5日 (日) 09:13:20 JST
Revision: 3112 http://svn.sourceforge.jp/view?root=jiemamy&view=rev&rev=3112 Author: j5ik2o Date: 2009-04-05 09:13:20 +0900 (Sun, 05 Apr 2009) Log Message: ----------- JavaDocを修正 !を==falseに修正 Modified Paths: -------------- charon/jiemamy-jpa-importer/trunk/src/main/java/org/jiemamy/composer/importer/meta/impl/TableMetaFactoryImpl.java -------------- next part -------------- Modified: charon/jiemamy-jpa-importer/trunk/src/main/java/org/jiemamy/composer/importer/meta/impl/TableMetaFactoryImpl.java =================================================================== --- charon/jiemamy-jpa-importer/trunk/src/main/java/org/jiemamy/composer/importer/meta/impl/TableMetaFactoryImpl.java 2009-04-04 15:34:17 UTC (rev 3111) +++ charon/jiemamy-jpa-importer/trunk/src/main/java/org/jiemamy/composer/importer/meta/impl/TableMetaFactoryImpl.java 2009-04-05 00:13:20 UTC (rev 3112) @@ -27,9 +27,9 @@ import org.jiemamy.composer.importer.meta.TableMetaFactory; /** - * TODO for junichi + * {@link TableMetaFactory}の実装クラス。 * - * @author junichi + * @author j5ik2o */ public class TableMetaFactoryImpl implements TableMetaFactory { @@ -44,11 +44,11 @@ } tableMeta.setName(name); String catalog = table.catalog(); - if (!StringUtils.isEmpty(catalog)) { + if (StringUtils.isEmpty(catalog) == false) { tableMeta.setCatalog(catalog); } String schema = table.schema(); - if (!StringUtils.isEmpty(schema)) { + if (StringUtils.isEmpty(schema) == false) { tableMeta.setSchema(schema); } } else { @@ -57,7 +57,7 @@ return tableMeta; } - public String fromEntityNameToTableName(String entityName) { + private String fromEntityNameToTableName(String entityName) { String tableName = StringUtils.uncapitalize(entityName); return tableName; }