All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.tool.hbmlint.detector.TableSelectorStrategy Maven / Gradle / Ivy

/**
 * 
 */
package org.hibernate.tool.hbmlint.detector;

import java.util.ArrayList;
import java.util.List;

import org.hibernate.cfg.reveng.DelegatingReverseEngineeringStrategy;
import org.hibernate.cfg.reveng.ReverseEngineeringStrategy;
import org.hibernate.cfg.reveng.SchemaSelection;

public class TableSelectorStrategy extends DelegatingReverseEngineeringStrategy {
	
	List selections = new ArrayList();
	
	public TableSelectorStrategy(ReverseEngineeringStrategy res) {
		super(res);
	}
	
	public List getSchemaSelections() {
		return selections;
	}
	

	public void clearSchemaSelections() {
		selections.clear();
	}
	
	public void addSchemaSelection(SchemaSelection selection) {
		selections.add(selection);
	}	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy