Coverage Report - liquibase.statement.core.ReindexStatement
 
Classes in this File Line Coverage Branch Coverage Complexity
ReindexStatement
0%
0/6
N/A
1
 
 1  
 package liquibase.statement.core;
 2  
 
 3  
 import liquibase.statement.AbstractSqlStatement;
 4  
 
 5  
 public class ReindexStatement extends AbstractSqlStatement {
 6  
 
 7  
     private String schemaName;
 8  
     private String tableName;
 9  
 
 10  0
     public ReindexStatement(String schemaName, String tableName) {
 11  0
         this.schemaName = schemaName;
 12  0
         this.tableName = tableName;
 13  0
     }
 14  
 
 15  
     public String getSchemaName() {
 16  0
         return schemaName;
 17  
     }
 18  
 
 19  
     public String getTableName() {
 20  0
         return tableName;
 21  
     }
 22  
 }