本文整理汇总了Java中com.sampullara.cli.Argument类的典型用法代码示例。如果您正苦于以下问题:Java Argument类的具体用法?Java Argument怎么用?Java Argument使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Argument类属于com.sampullara.cli包,在下文中一共展示了Argument类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setCleanOnly
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(
value = "cleanOnly",
description = "DEPRECATED - use the -action argument. Indicates if the environments should be wiped prior to development and nothing else done. " +
"Only allowed for certain environments, per the metadata setup")
public void setCleanOnly(boolean cleanOnly) {
this.cleanOnly = cleanOnly;
}
示例2: setConfigFile
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "configFile", required = true, description = "config file path for the comparison. Can be on the classpath or file path")
public void setConfigFile(String configFile) {
this.configFile = configFile;
}
示例3: setOutputDir
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "outputDir", required = true, description = "outputDir where the reports will go")
public void setOutputDir(String outputDir) {
this.outputDir = outputDir;
}
示例4: setDbMergeConfigFile
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "dbMergeConfigFile", required = true, description = "Config file w/ the DB entries to merge. " +
"See the wiki for info on setting this up")
public void setDbMergeConfigFile(File dbMergeConfigFile) {
this.dbMergeConfigFile = dbMergeConfigFile;
}
示例5: setOutputDir
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "outputDir", required = true, description = "The folder where you want the merged results to go")
public void setOutputDir(File outputDir) {
this.outputDir = outputDir;
}
示例6: setInputDir
import com.sampullara.cli.Argument; //导入依赖的package包/类
/**
* @deprecated Use {@link #setInputPath(File)}
*/
@Deprecated
@Argument(value = "inputDir", required = false)
public void setInputDir(File inputDir) {
this.setInputPath(inputDir);
}
示例7: setInputPath
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "inputPath", required = false)
public void setInputPath(File inputPath) {
this.inputPath = inputPath;
}
示例8: data
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "tables", required = false, description = "tables to reverse-engineer for data (comma-separated)")
public void setTables(String[] tables) {
this.tables = tables;
}
示例9: setOutputDir
import com.sampullara.cli.Argument; //导入依赖的package包/类
/**
* @deprecated Use {@link #setOutputPath(File)}
*/
@Deprecated
@Argument(value = "outputDir", required = false)
public void setOutputDir(File outputDir) {
this.setOutputPath(outputDir);
}
示例10: setOutputPath
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "outputPath", required = false)
public void setOutputPath(File outputPath) {
this.outputPath = outputPath;
}
示例11: setTablespaceToken
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "tablespaceToken", required = false)
public void setTablespaceToken(boolean tablespaceToken) {
this.tablespaceToken = tablespaceToken;
}
示例12: setTokenizeDefaultSchema
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "tokenizeDefaultSchema", required = false)
public void setTokenizeDefaultSchema(boolean tokenizeDefaultSchema) {
this.tokenizeDefaultSchema = tokenizeDefaultSchema;
}
示例13: setGenerateBaseline
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "generateBaseline", required = false)
public void setGenerateBaseline(boolean generateBaseline) {
this.generateBaseline = generateBaseline;
}
示例14: setDbTypeStr
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "dbType", required = true, description = "DB Type is needed to facilitate reverse engineering; use values [H2, HSQL, SYBASE_IQ, DB2, SYBASE_ASE, POSTGRESQL]")
public void setDbTypeStr(String dbType) {
this.dbPlatform = DbPlatformConfiguration.getInstance().valueOf(dbType.toUpperCase());
}
示例15: setJdbcUrl
import com.sampullara.cli.Argument; //导入依赖的package包/类
@Argument(value = "jdbcUrl", required = false, description = "Only for static data reverse-engineering")
public void setJdbcUrl(String jdbcUrl) {
this.jdbcUrl = jdbcUrl;
}