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

com.github.paganini2008.devtools.beans.streaming.View Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.paganini2008.devtools.beans.streaming;

import com.github.paganini2008.devtools.collection.Tuple;

/**
 * 
 * View
 * 
 * @author Fred Feng
 * 
 * 
 * @version 1.0
 */
public abstract class View implements Transformer, Tuple> {

	public Tuple transfer(Group group) {
		Tuple tuple = Tuple.newTuple();
		tuple.append(group.getAttributes());
		setAttributes(tuple, group);
		return tuple;
	}

	protected void setAttributes(Tuple tuple, Group group) {
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy