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

cn.dreampie.common.util.analysis.ParamAttribute Maven / Gradle / Ivy

There is a newer version: 1.3.0.RELEASE
Show newest version
package cn.dreampie.common.util.analysis;

import java.util.List;

/**
 * Created by ice on 15-1-22.
 */
public class ParamAttribute {
  private List names;
  private int[] lines;

  public ParamAttribute(List names, int[] lines) {
    this.names = names;
    this.lines = lines;
  }

  public List getNames() {
    return names;
  }

  public void setNames(List names) {
    this.names = names;
  }

  public int[] getLines() {
    return lines;
  }

  public void setLines(int[] lines) {
    this.lines = lines;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy