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

org.webpieces.plugins.properties.beans.BeanMeta Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.webpieces.plugins.properties.beans;

import java.util.List;

public class BeanMeta {

	private List properties;
	private String name;
	private Class interfaze;

	public BeanMeta(String name, Class interfaze, List properties) {
		this.name = name;
		this.interfaze = interfaze;
		this.properties = properties;
	}

	public List getProperties() {
		return properties;
	}

	public String getName() {
		return name;
	}

	public Class getInterface() {
		return interfaze;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy