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

com.altova.text.tablelike.ColumnSpecification Maven / Gradle / Ivy

////////////////////////////////////////////////////////////////////////
//
// ColumnSpecification.java
//
// This file was generated by MapForce 2017sp2.
//
// YOU SHOULD NOT MODIFY THIS FILE, BECAUSE IT WILL BE
// OVERWRITTEN WHEN YOU RE-RUN CODE GENERATION.
//
// Refer to the MapForce Documentation for further details.
// http://www.altova.com/mapforce
//
////////////////////////////////////////////////////////////////////////

package com.altova.text.tablelike;

public class ColumnSpecification {
    private String m_Name = "";

    private int m_Length = 0;

    public ColumnSpecification() {
    }

    public ColumnSpecification(String name) {
        m_Name = name;
    }

    public ColumnSpecification(String name, int length) {
        m_Name = name;
        m_Length = length;
    }

    public String getName() {
        return m_Name;
    }

    public void setName(String rhs) {
        m_Name = rhs;
    }

    public int getLength() {
        return m_Length;
    }

    public void setLength(int rhs) {
        m_Length = rhs;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy