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

com.litongjava.db.activerecord.IContainerFactory Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
package com.litongjava.db.activerecord;

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

@SuppressWarnings("rawtypes")
public interface IContainerFactory {
	Map getAttrsMap();
	Map getColumnsMap();
	Set getModifyFlagSet();
	
	static final IContainerFactory defaultContainerFactory = new IContainerFactory() {
		
		public Map getAttrsMap() {
			return new HashMap();
		}
		
		public Map getColumnsMap() {
			return new HashMap();
		}
		
		public Set getModifyFlagSet() {
			return new HashSet();
		}
	};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy