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

tools.tracesviewer.TracesSession Maven / Gradle / Ivy

package tools.tracesviewer;

import java.util.*;
import java.io.*;

public class TracesSession extends Vector implements Serializable {

	protected String logDescription = null;
	protected String name = null;
	protected String info = null;

	public TracesSession() {
		super();
	}

	public TracesSession(String name, String info) {
		this();
		this.name = name;
		this.info = info;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getName() {
		return name;
	}

	public void setInfo(String info) {
		this.info = info;
	}

	public String getInfo() {
		return info;
	}

	public void setLogDescription(String logDescription) {
		this.logDescription = logDescription;
	}

	public String getLogDescription() {
		return logDescription;
	}
	public TracesSession(MessageLogList messageLogList) {
		super();
		this.logDescription = messageLogList.description;
		Iterator it = messageLogList.iterator();
		while (it.hasNext()) {
			TracesMessage tracesMessage = (TracesMessage) it.next();
			super.add(tracesMessage);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy