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

tools.tracesviewer.TracesSessions Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
package tools.tracesviewer;

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

public class TracesSessions extends Vector implements Serializable {

    protected String name = null;

    public TracesSessions() {
        super();
    }

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

    public String getName() {
        return name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy