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

com.threatconnect.app.addons.util.config.layout.Layout Maven / Gradle / Ivy

There is a newer version: 2.15.0
Show newest version
package com.threatconnect.app.addons.util.config.layout;

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

public class Layout
{
	private final List inputs;
	private final List outputs;
	
	public Layout()
	{
		this.inputs = new ArrayList();
		this.outputs = new ArrayList();
	}
	
	public List getInputs()
	{
		return inputs;
	}
	
	public List getOutputs()
	{
		return outputs;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy