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

edu.jiangxin.mvn.plugin.BlockSet Maven / Gradle / Ivy

package edu.jiangxin.mvn.plugin;

import java.util.List;

import com.harukizaemon.simian.Block;

public class BlockSet {
	private List blocks;

	private int lineCount;

	private String fingerprint;

	/**
	 * @return the blocks
	 */
	public List getBlocks() {
		return blocks;
	}

	/**
	 * @param blocks the blocks to set
	 */
	public void setBlocks(List blocks) {
		this.blocks = blocks;
	}

	/**
	 * @return the lineCount
	 */
	public int getLineCount() {
		return lineCount;
	}

	/**
	 * @param lineCount the lineCount to set
	 */
	public void setLineCount(int lineCount) {
		this.lineCount = lineCount;
	}

	/**
	 * @return the fingerprint
	 */
	public String getFingerprint() {
		return fingerprint;
	}

	/**
	 * @param fingerprint the fingerprint to set
	 */
	public void setFingerprint(String fingerprint) {
		this.fingerprint = fingerprint;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy