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

com.nerdvision.agent.jsp.StratumSection Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
/**
 * Copyright (C) 2019 Intergral Information Solutions GmbH. All Rights Reserved
 */
package com.nerdvision.agent.jsp;

public class StratumSection
{
    private final String name;
    private FileSection fileSection;
    private LineSection lineSection;


    public StratumSection( final String name )
    {
        this.name = name;
    }


    public String getName()
    {
        return name;
    }


    public void setFileSection( final FileSection fileSection )
    {
        this.fileSection = fileSection;
    }


    public FileSection getFileSection()
    {
        return fileSection;
    }


    public void setLineSection( final LineSection lineSection )
    {
        this.lineSection = lineSection;
    }


    public LineSection getLineSection()
    {
        return lineSection;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy